PluginProbe
Gutenberg / 23.2.1
Gutenberg v23.2.1
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 / site-title / block.json

block.json in Gutenberg 23.2.1, at build/scripts/block-library/site-title/block.json

81 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/site-title",
5 "title": "Site Title",
6 "category": "theme",
7 "description": "Displays the name of this site. Update the block, and the changes apply everywhere it’s used. This will also appear in the browser title bar and in search results.",
8 "textdomain": "default",
9 "attributes": {
10 "level": {
11 "type": "number",
12 "default": 1
13 },
14 "levelOptions": {
15 "type": "array",
16 "default": [ 0, 1, 2, 3, 4, 5, 6 ]
17 },
18 "isLink": {
19 "type": "boolean",
20 "default": true,
21 "role": "content"
22 },
23 "linkTarget": {
24 "type": "string",
25 "default": "_self",
26 "role": "content"
27 }
28 },
29 "example": {
30 "viewportWidth": 500
31 },
32 "supports": {
33 "anchor": true,
34 "align": [ "wide", "full" ],
35 "html": false,
36 "color": {
37 "gradients": true,
38 "link": true,
39 "__experimentalDefaultControls": {
40 "background": true,
41 "text": true,
42 "link": true
43 }
44 },
45 "spacing": {
46 "padding": true,
47 "margin": true,
48 "__experimentalDefaultControls": {
49 "margin": false,
50 "padding": false
51 }
52 },
53 "typography": {
54 "fontSize": true,
55 "lineHeight": true,
56 "textAlign": true,
57 "__experimentalFontFamily": true,
58 "__experimentalTextTransform": true,
59 "__experimentalTextDecoration": true,
60 "__experimentalFontStyle": true,
61 "__experimentalFontWeight": true,
62 "__experimentalLetterSpacing": true,
63 "__experimentalWritingMode": true,
64 "__experimentalDefaultControls": {
65 "fontSize": true
66 }
67 },
68 "interactivity": {
69 "clientNavigation": true
70 },
71 "__experimentalBorder": {
72 "radius": true,
73 "color": true,
74 "width": true,
75 "style": true
76 }
77 },
78 "editorStyle": "wp-block-site-title-editor",
79 "style": "wp-block-site-title"
80 }
81