PluginProbe
Gutenberg / 19.6.0
Gutenberg v19.6.0
24.0.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 All 403 releases
gutenberg / build / block-library / blocks / page-list / block.json

block.json in Gutenberg 19.6.0, at build/block-library/blocks/page-list/block.json

59 lines 1.3 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 ],
36 "supports": {
37 "reusable": false,
38 "html": false,
39 "typography": {
40 "fontSize": true,
41 "lineHeight": true,
42 "__experimentalFontFamily": true,
43 "__experimentalFontWeight": true,
44 "__experimentalFontStyle": true,
45 "__experimentalTextTransform": true,
46 "__experimentalTextDecoration": true,
47 "__experimentalLetterSpacing": true,
48 "__experimentalDefaultControls": {
49 "fontSize": true
50 }
51 },
52 "interactivity": {
53 "clientNavigation": true
54 }
55 },
56 "editorStyle": "wp-block-page-list-editor",
57 "style": "wp-block-page-list"
58 }
59