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

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

97 lines 1.9 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/categories",
5 "title": "Terms List",
6 "category": "widgets",
7 "description": "Display a list of all terms of a given taxonomy.",
8 "keywords": [ "categories" ],
9 "textdomain": "default",
10 "attributes": {
11 "taxonomy": {
12 "type": "string",
13 "default": "category"
14 },
15 "displayAsDropdown": {
16 "type": "boolean",
17 "default": false
18 },
19 "showHierarchy": {
20 "type": "boolean",
21 "default": false
22 },
23 "showPostCounts": {
24 "type": "boolean",
25 "default": false
26 },
27 "showOnlyTopLevel": {
28 "type": "boolean",
29 "default": false
30 },
31 "showEmpty": {
32 "type": "boolean",
33 "default": false
34 },
35 "label": {
36 "type": "string",
37 "role": "content"
38 },
39 "showLabel": {
40 "type": "boolean",
41 "default": true
42 }
43 },
44 "usesContext": [ "enhancedPagination" ],
45 "supports": {
46 "align": true,
47 "html": false,
48 "spacing": {
49 "margin": true,
50 "padding": true,
51 "__experimentalDefaultControls": {
52 "margin": false,
53 "padding": false
54 }
55 },
56 "typography": {
57 "fontSize": true,
58 "lineHeight": true,
59 "__experimentalFontFamily": true,
60 "__experimentalFontWeight": true,
61 "__experimentalFontStyle": true,
62 "__experimentalTextTransform": true,
63 "__experimentalTextDecoration": true,
64 "__experimentalLetterSpacing": true,
65 "__experimentalDefaultControls": {
66 "fontSize": true
67 }
68 },
69 "color": {
70 "gradients": true,
71 "link": true,
72 "__experimentalDefaultControls": {
73 "background": true,
74 "text": true,
75 "link": true
76 }
77 },
78 "interactivity": {
79 "clientNavigation": true
80 },
81 "__experimentalBorder": {
82 "radius": true,
83 "color": true,
84 "width": true,
85 "style": true,
86 "__experimentalDefaultControls": {
87 "radius": true,
88 "color": true,
89 "width": true,
90 "style": true
91 }
92 }
93 },
94 "editorStyle": "wp-block-categories-editor",
95 "style": "wp-block-categories"
96 }
97