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

block.json in Gutenberg 22.3.0, at build/scripts/block-library/query-title/block.json

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