PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 / paragraph / block.json

block.json in Gutenberg 22.9.0, at build/scripts/block-library/paragraph/block.json

89 lines 1.8 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/paragraph",
5 "title": "Paragraph",
6 "category": "text",
7 "description": "Start with the basic building block of all narrative.",
8 "keywords": [ "text" ],
9 "textdomain": "default",
10 "attributes": {
11 "content": {
12 "type": "rich-text",
13 "source": "rich-text",
14 "selector": "p",
15 "role": "content"
16 },
17 "dropCap": {
18 "type": "boolean",
19 "default": false
20 },
21 "placeholder": {
22 "type": "string"
23 },
24 "direction": {
25 "type": "string",
26 "enum": [ "ltr", "rtl" ]
27 }
28 },
29 "supports": {
30 "align": [ "wide", "full" ],
31 "splitting": true,
32 "anchor": true,
33 "className": false,
34 "__experimentalBorder": {
35 "color": true,
36 "radius": true,
37 "style": true,
38 "width": true
39 },
40 "color": {
41 "gradients": true,
42 "link": true,
43 "__experimentalDefaultControls": {
44 "background": true,
45 "text": true
46 }
47 },
48 "spacing": {
49 "margin": true,
50 "padding": true,
51 "__experimentalDefaultControls": {
52 "margin": false,
53 "padding": false
54 }
55 },
56 "typography": {
57 "fontSize": true,
58 "lineHeight": true,
59 "textAlign": true,
60 "textColumns": true,
61 "textIndent": true,
62 "__experimentalFontFamily": true,
63 "__experimentalTextDecoration": true,
64 "__experimentalFontStyle": true,
65 "__experimentalFontWeight": true,
66 "__experimentalLetterSpacing": true,
67 "__experimentalTextTransform": true,
68 "__experimentalWritingMode": true,
69 "fitText": true,
70 "__experimentalDefaultControls": {
71 "fontSize": true
72 }
73 },
74 "__experimentalSelector": "p",
75 "__unstablePasteTextInline": true,
76 "interactivity": {
77 "clientNavigation": true
78 }
79 },
80 "selectors": {
81 "root": "p",
82 "typography": {
83 "textIndent": ".wp-block-paragraph + .wp-block-paragraph"
84 }
85 },
86 "editorStyle": "wp-block-paragraph-editor",
87 "style": "wp-block-paragraph"
88 }
89