PluginProbe
Gutenberg / 22.4.4
Gutenberg v22.4.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 / scripts / block-library / query-title / block.json

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

84 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 "anchor": true,
40 "align": [ "wide", "full" ],
41 "html": false,
42 "color": {
43 "gradients": true,
44 "__experimentalDefaultControls": {
45 "background": true,
46 "text": true
47 }
48 },
49 "spacing": {
50 "margin": true,
51 "padding": true
52 },
53 "typography": {
54 "fontSize": true,
55 "lineHeight": true,
56 "__experimentalFontFamily": true,
57 "__experimentalFontStyle": true,
58 "__experimentalFontWeight": true,
59 "__experimentalLetterSpacing": true,
60 "__experimentalTextTransform": true,
61 "__experimentalTextDecoration": true,
62 "__experimentalDefaultControls": {
63 "fontSize": true
64 }
65 },
66 "interactivity": {
67 "clientNavigation": true
68 },
69 "__experimentalBorder": {
70 "radius": true,
71 "color": true,
72 "width": true,
73 "style": true,
74 "__experimentalDefaultControls": {
75 "radius": true,
76 "color": true,
77 "width": true,
78 "style": true
79 }
80 }
81 },
82 "style": "wp-block-query-title"
83 }
84