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 / heading / block.json

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

80 lines 1.7 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/heading",
5 "title": "Heading",
6 "category": "text",
7 "description": "Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.",
8 "keywords": [ "title", "subtitle" ],
9 "textdomain": "default",
10 "attributes": {
11 "content": {
12 "type": "rich-text",
13 "source": "rich-text",
14 "selector": "h1,h2,h3,h4,h5,h6",
15 "role": "content"
16 },
17 "level": {
18 "type": "number",
19 "default": 2
20 },
21 "levelOptions": {
22 "type": "array"
23 },
24 "placeholder": {
25 "type": "string"
26 }
27 },
28 "supports": {
29 "align": [ "wide", "full" ],
30 "anchor": true,
31 "className": true,
32 "splitting": true,
33 "__experimentalBorder": {
34 "color": true,
35 "radius": true,
36 "style": true,
37 "width": true
38 },
39 "color": {
40 "gradients": true,
41 "link": true,
42 "__experimentalDefaultControls": {
43 "background": true,
44 "text": true
45 }
46 },
47 "spacing": {
48 "margin": true,
49 "padding": true,
50 "__experimentalDefaultControls": {
51 "margin": false,
52 "padding": false
53 }
54 },
55 "typography": {
56 "fontSize": true,
57 "lineHeight": true,
58 "textAlign": true,
59 "__experimentalFontFamily": true,
60 "__experimentalFontStyle": true,
61 "__experimentalFontWeight": true,
62 "__experimentalLetterSpacing": true,
63 "__experimentalTextTransform": true,
64 "__experimentalTextDecoration": true,
65 "__experimentalWritingMode": true,
66 "fitText": true,
67 "__experimentalDefaultControls": {
68 "fontSize": true
69 }
70 },
71 "__unstablePasteTextInline": true,
72 "__experimentalSlashInserter": true,
73 "interactivity": {
74 "clientNavigation": true
75 }
76 },
77 "editorStyle": "wp-block-heading-editor",
78 "style": "wp-block-heading"
79 }
80