PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
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 / term-name / block.json
build/scripts/block-library/term-name
block.json 1.4 KB 7 months ago

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

73 lines 1.4 KB 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 "anchor": true,
29 "align": [ "wide", "full" ],
30 "html": false,
31 "color": {
32 "gradients": true,
33 "link": true,
34 "__experimentalDefaultControls": {
35 "background": true,
36 "text": true,
37 "link": true
38 }
39 },
40 "spacing": {
41 "padding": true
42 },
43 "typography": {
44 "fontSize": true,
45 "lineHeight": true,
46 "__experimentalFontFamily": true,
47 "__experimentalFontWeight": true,
48 "__experimentalFontStyle": true,
49 "__experimentalTextTransform": true,
50 "__experimentalTextDecoration": true,
51 "__experimentalLetterSpacing": true,
52 "__experimentalDefaultControls": {
53 "fontSize": true
54 }
55 },
56 "interactivity": {
57 "clientNavigation": true
58 },
59 "__experimentalBorder": {
60 "radius": true,
61 "color": true,
62 "width": true,
63 "style": true,
64 "__experimentalDefaultControls": {
65 "color": true,
66 "width": true,
67 "style": true
68 }
69 }
70 },
71 "style": "wp-block-term-name"
72 }
73