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