PluginProbe
Gutenberg / 12.5.4
Gutenberg v12.5.4
24.0.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 All 403 releases
gutenberg / build / block-library / blocks / site-title / block.json

block.json in Gutenberg 12.5.4, at build/block-library/blocks/site-title/block.json

59 lines 1.3 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": 2,
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 "textAlign": {
15 "type": "string"
16 },
17 "isLink": {
18 "type": "boolean",
19 "default": true
20 },
21 "linkTarget": {
22 "type": "string",
23 "default": "_self"
24 }
25 },
26 "example": {
27 "viewportWidth": 500
28 },
29 "supports": {
30 "align": [ "wide", "full" ],
31 "html": false,
32 "color": {
33 "gradients": true,
34 "link": true
35 },
36 "spacing": {
37 "padding": true,
38 "margin": true
39 },
40 "typography": {
41 "fontSize": true,
42 "lineHeight": true,
43 "__experimentalFontFamily": true,
44 "__experimentalTextTransform": true,
45 "__experimentalFontStyle": true,
46 "__experimentalFontWeight": true,
47 "__experimentalLetterSpacing": true,
48 "__experimentalDefaultControls": {
49 "fontSize": true,
50 "lineHeight": true,
51 "fontAppearance": true,
52 "letterSpacing": true,
53 "textTransform": true
54 }
55 }
56 },
57 "editorStyle": "wp-block-site-title-editor"
58 }
59