PluginProbe
Gutenberg / 23.7.2
Gutenberg v23.7.2
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 23.7.2, at build/scripts/block-library/term-name/block.json

71 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 "level": {
13 "type": "number",
14 "default": 0
15 },
16 "isLink": {
17 "type": "boolean",
18 "default": false
19 },
20 "levelOptions": {
21 "type": "array"
22 }
23 },
24 "supports": {
25 "anchor": true,
26 "align": [ "wide", "full" ],
27 "html": false,
28 "color": {
29 "gradients": true,
30 "link": true,
31 "__experimentalDefaultControls": {
32 "background": true,
33 "text": true,
34 "link": true
35 }
36 },
37 "spacing": {
38 "padding": true
39 },
40 "typography": {
41 "fontSize": true,
42 "lineHeight": true,
43 "textAlign": true,
44 "__experimentalFontFamily": true,
45 "__experimentalFontWeight": true,
46 "__experimentalFontStyle": true,
47 "__experimentalTextTransform": true,
48 "__experimentalTextDecoration": true,
49 "__experimentalLetterSpacing": true,
50 "__experimentalDefaultControls": {
51 "fontSize": true
52 }
53 },
54 "interactivity": {
55 "clientNavigation": true
56 },
57 "__experimentalBorder": {
58 "radius": true,
59 "color": true,
60 "width": true,
61 "style": true,
62 "__experimentalDefaultControls": {
63 "color": true,
64 "width": true,
65 "style": true
66 }
67 }
68 },
69 "style": "wp-block-term-name"
70 }
71