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 / term-name / block.json

block.json in Gutenberg 22.3.0, at build/scripts/block-library/term-name/block.json

72 lines 1.4 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/term-name",
5 "title": "Term Name",
6 "category": "theme",
7 "description": "Displays the name of a taxonomy term.",
8 "keywords": [ "term title" ],
9 "textdomain": "default",
10 "usesContext": [ "termId", "taxonomy" ],
11 "attributes": {
12 "textAlign": {
13 "type": "string"
14 },
15 "level": {
16 "type": "number",
17 "default": 0
18 },
19 "isLink": {
20 "type": "boolean",
21 "default": false
22 },
23 "levelOptions": {
24 "type": "array"
25 }
26 },
27 "supports": {
28 "align": [ "wide", "full" ],
29 "html": false,
30 "color": {
31 "gradients": true,
32 "link": true,
33 "__experimentalDefaultControls": {
34 "background": true,
35 "text": true,
36 "link": true
37 }
38 },
39 "spacing": {
40 "padding": true
41 },
42 "typography": {
43 "fontSize": true,
44 "lineHeight": true,
45 "__experimentalFontFamily": true,
46 "__experimentalFontWeight": true,
47 "__experimentalFontStyle": true,
48 "__experimentalTextTransform": true,
49 "__experimentalTextDecoration": true,
50 "__experimentalLetterSpacing": true,
51 "__experimentalDefaultControls": {
52 "fontSize": true
53 }
54 },
55 "interactivity": {
56 "clientNavigation": true
57 },
58 "__experimentalBorder": {
59 "radius": true,
60 "color": true,
61 "width": true,
62 "style": true,
63 "__experimentalDefaultControls": {
64 "color": true,
65 "width": true,
66 "style": true
67 }
68 }
69 },
70 "style": "wp-block-term-name"
71 }
72