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

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

59 lines 1.2 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/post-title",
5 "title": "Post 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 "isLink": {
19 "type": "boolean",
20 "default": false
21 },
22 "rel": {
23 "type": "string",
24 "attribute": "rel",
25 "default": ""
26 },
27 "linkTarget": {
28 "type": "string",
29 "default": "_self"
30 }
31 },
32 "supports": {
33 "align": [ "wide", "full" ],
34 "html": false,
35 "color": {
36 "gradients": true,
37 "link": true
38 },
39 "spacing": {
40 "margin": true
41 },
42 "typography": {
43 "fontSize": true,
44 "lineHeight": true,
45 "__experimentalFontFamily": true,
46 "__experimentalFontWeight": true,
47 "__experimentalFontStyle": true,
48 "__experimentalTextTransform": true,
49 "__experimentalLetterSpacing": true,
50 "__experimentalDefaultControls": {
51 "fontSize": true,
52 "fontAppearance": true,
53 "textTransform": true
54 }
55 }
56 },
57 "style": "wp-block-post-title"
58 }
59