PluginProbe
Gutenberg / 23.1.1
Gutenberg v23.1.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 / list / block.json

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

90 lines 1.9 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/list",
5 "title": "List",
6 "category": "text",
7 "allowedBlocks": [ "core/list-item" ],
8 "description": "An organized collection of items displayed in a specific order.",
9 "keywords": [ "bullet list", "ordered list", "numbered list" ],
10 "textdomain": "default",
11 "attributes": {
12 "ordered": {
13 "type": "boolean",
14 "default": false,
15 "role": "content"
16 },
17 "values": {
18 "type": "string",
19 "source": "html",
20 "selector": "ol,ul",
21 "multiline": "li",
22 "default": "",
23 "role": "content"
24 },
25 "type": {
26 "type": "string"
27 },
28 "start": {
29 "type": "number"
30 },
31 "reversed": {
32 "type": "boolean"
33 },
34 "placeholder": {
35 "type": "string"
36 }
37 },
38 "supports": {
39 "anchor": true,
40 "html": false,
41 "__experimentalBorder": {
42 "color": true,
43 "radius": true,
44 "style": true,
45 "width": true
46 },
47 "typography": {
48 "fontSize": true,
49 "lineHeight": true,
50 "__experimentalFontFamily": true,
51 "__experimentalFontWeight": true,
52 "__experimentalFontStyle": true,
53 "__experimentalTextTransform": true,
54 "__experimentalTextDecoration": true,
55 "__experimentalLetterSpacing": true,
56 "__experimentalDefaultControls": {
57 "fontSize": true
58 }
59 },
60 "color": {
61 "gradients": true,
62 "link": true,
63 "__experimentalDefaultControls": {
64 "background": true,
65 "text": true
66 }
67 },
68 "spacing": {
69 "margin": true,
70 "padding": true,
71 "__experimentalDefaultControls": {
72 "margin": false,
73 "padding": false
74 }
75 },
76 "__unstablePasteTextInline": true,
77 "__experimentalOnMerge": true,
78 "__experimentalSlashInserter": true,
79 "interactivity": {
80 "clientNavigation": true
81 },
82 "listView": true
83 },
84 "selectors": {
85 "border": ".wp-block-list:not(.wp-block-list .wp-block-list)"
86 },
87 "editorStyle": "wp-block-list-editor",
88 "style": "wp-block-list"
89 }
90