PluginProbe
Gutenberg / 23.5.0
Gutenberg v23.5.0
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.5.0, at build/scripts/block-library/page-list/block.json

84 lines 1.7 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 },
17 "usesContext": [
18 "textColor",
19 "customTextColor",
20 "backgroundColor",
21 "customBackgroundColor",
22 "overlayTextColor",
23 "customOverlayTextColor",
24 "overlayBackgroundColor",
25 "customOverlayBackgroundColor",
26 "fontSize",
27 "customFontSize",
28 "showSubmenuIcon",
29 "style",
30 "openSubmenusOnClick",
31 "submenuVisibility",
32 "core/isInsideSubmenu"
33 ],
34 "supports": {
35 "anchor": true,
36 "reusable": false,
37 "html": false,
38 "typography": {
39 "fontSize": true,
40 "lineHeight": true,
41 "__experimentalFontFamily": true,
42 "__experimentalFontWeight": true,
43 "__experimentalFontStyle": true,
44 "__experimentalTextTransform": true,
45 "__experimentalTextDecoration": true,
46 "__experimentalLetterSpacing": true,
47 "__experimentalDefaultControls": {
48 "fontSize": true
49 }
50 },
51 "interactivity": {
52 "clientNavigation": true
53 },
54 "color": {
55 "text": true,
56 "background": true,
57 "link": true,
58 "gradients": true,
59 "__experimentalDefaultControls": {
60 "background": true,
61 "text": true,
62 "link": true
63 }
64 },
65 "__experimentalBorder": {
66 "radius": true,
67 "color": true,
68 "width": true,
69 "style": true
70 },
71 "spacing": {
72 "padding": true,
73 "margin": true,
74 "__experimentalDefaultControls": {
75 "padding": false,
76 "margin": false
77 }
78 },
79 "contentRole": true
80 },
81 "editorStyle": "wp-block-page-list-editor",
82 "style": "wp-block-page-list"
83 }
84