PluginProbe
Gutenberg / 23.2.1
Gutenberg v23.2.1
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / page-list / block.json

block.json in Gutenberg 23.2.1, at build/scripts/block-library/page-list/block.json

87 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/page-list",
5 "title": "Page List",
6 "category": "widgets",
7 "allowedBlocks": [ "core/page-list-item" ],
8 "description": "Display a list of all pages.",
9 "keywords": [ "menu", "navigation" ],
10 "textdomain": "default",
11 "attributes": {
12 "parentPageID": {
13 "type": "integer",
14 "default": 0
15 },
16 "isNested": {
17 "type": "boolean",
18 "default": false
19 }
20 },
21 "usesContext": [
22 "textColor",
23 "customTextColor",
24 "backgroundColor",
25 "customBackgroundColor",
26 "overlayTextColor",
27 "customOverlayTextColor",
28 "overlayBackgroundColor",
29 "customOverlayBackgroundColor",
30 "fontSize",
31 "customFontSize",
32 "showSubmenuIcon",
33 "style",
34 "openSubmenusOnClick",
35 "submenuVisibility"
36 ],
37 "supports": {
38 "anchor": true,
39 "reusable": false,
40 "html": false,
41 "typography": {
42 "fontSize": true,
43 "lineHeight": true,
44 "__experimentalFontFamily": true,
45 "__experimentalFontWeight": true,
46 "__experimentalFontStyle": true,
47 "__experimentalTextTransform": true,
48 "__experimentalTextDecoration": true,
49 "__experimentalLetterSpacing": true,
50 "__experimentalDefaultControls": {
51 "fontSize": true
52 }
53 },
54 "interactivity": {
55 "clientNavigation": true
56 },
57 "color": {
58 "text": true,
59 "background": true,
60 "link": true,
61 "gradients": true,
62 "__experimentalDefaultControls": {
63 "background": true,
64 "text": true,
65 "link": true
66 }
67 },
68 "__experimentalBorder": {
69 "radius": true,
70 "color": true,
71 "width": true,
72 "style": true
73 },
74 "spacing": {
75 "padding": true,
76 "margin": true,
77 "__experimentalDefaultControls": {
78 "padding": false,
79 "margin": false
80 }
81 },
82 "contentRole": true
83 },
84 "editorStyle": "wp-block-page-list-editor",
85 "style": "wp-block-page-list"
86 }
87