PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.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.3.0, at build/scripts/block-library/heading/block.json

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