PluginProbe
Gutenberg / 19.6.0
Gutenberg v19.6.0
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 / post-title / block.json

block.json in Gutenberg 19.6.0, at build/block-library/blocks/post-title/block.json

85 lines 1.6 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/post-title",
5 "title": "Title",
6 "category": "theme",
7 "description": "Displays the title of a post, page, or any other content-type.",
8 "textdomain": "default",
9 "usesContext": [ "postId", "postType", "queryId" ],
10 "attributes": {
11 "textAlign": {
12 "type": "string"
13 },
14 "level": {
15 "type": "number",
16 "default": 2
17 },
18 "levelOptions": {
19 "type": "array"
20 },
21 "isLink": {
22 "type": "boolean",
23 "default": false
24 },
25 "rel": {
26 "type": "string",
27 "attribute": "rel",
28 "default": ""
29 },
30 "linkTarget": {
31 "type": "string",
32 "default": "_self"
33 }
34 },
35 "example": {
36 "viewportWidth": 350
37 },
38 "supports": {
39 "align": [ "wide", "full" ],
40 "html": false,
41 "color": {
42 "gradients": true,
43 "link": true,
44 "__experimentalDefaultControls": {
45 "background": true,
46 "text": true,
47 "link": true
48 }
49 },
50 "spacing": {
51 "margin": true,
52 "padding": true
53 },
54 "typography": {
55 "fontSize": true,
56 "lineHeight": true,
57 "__experimentalFontFamily": true,
58 "__experimentalFontWeight": true,
59 "__experimentalFontStyle": true,
60 "__experimentalTextTransform": true,
61 "__experimentalTextDecoration": true,
62 "__experimentalLetterSpacing": true,
63 "__experimentalDefaultControls": {
64 "fontSize": true
65 }
66 },
67 "interactivity": {
68 "clientNavigation": true
69 },
70 "__experimentalBorder": {
71 "radius": true,
72 "color": true,
73 "width": true,
74 "style": true,
75 "__experimentalDefaultControls": {
76 "radius": true,
77 "color": true,
78 "width": true,
79 "style": true
80 }
81 }
82 },
83 "style": "wp-block-post-title"
84 }
85