PluginProbe
Gutenberg / 20.0.1
Gutenberg v20.0.1
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 / list-item / block.json

block.json in Gutenberg 20.0.1, at build/block-library/blocks/list-item/block.json

70 lines 1.4 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-item",
5 "title": "List item",
6 "category": "text",
7 "parent": [ "core/list" ],
8 "allowedBlocks": [ "core/list" ],
9 "description": "An individual item within a list.",
10 "textdomain": "default",
11 "attributes": {
12 "placeholder": {
13 "type": "string"
14 },
15 "content": {
16 "type": "rich-text",
17 "source": "rich-text",
18 "selector": "li",
19 "role": "content"
20 }
21 },
22 "supports": {
23 "anchor": true,
24 "className": false,
25 "splitting": true,
26 "__experimentalBorder": {
27 "color": true,
28 "radius": true,
29 "style": true,
30 "width": true
31 },
32 "color": {
33 "gradients": true,
34 "link": true,
35 "background": true,
36 "__experimentalDefaultControls": {
37 "text": true
38 }
39 },
40 "spacing": {
41 "margin": true,
42 "padding": true,
43 "__experimentalDefaultControls": {
44 "margin": false,
45 "padding": false
46 }
47 },
48 "typography": {
49 "fontSize": true,
50 "lineHeight": true,
51 "__experimentalFontFamily": true,
52 "__experimentalFontWeight": true,
53 "__experimentalFontStyle": true,
54 "__experimentalTextTransform": true,
55 "__experimentalTextDecoration": true,
56 "__experimentalLetterSpacing": true,
57 "__experimentalDefaultControls": {
58 "fontSize": true
59 }
60 },
61 "interactivity": {
62 "clientNavigation": true
63 }
64 },
65 "selectors": {
66 "root": ".wp-block-list > li",
67 "border": ".wp-block-list:not(.wp-block-list .wp-block-list) > li"
68 }
69 }
70