PluginProbe
Gutenberg / 23.6.2
Gutenberg v23.6.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 / tab-list / block.json

block.json in Gutenberg 23.6.2, at build/scripts/block-library/tab-list/block.json

83 lines 1.7 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/tab-list",
5 "title": "Tab List",
6 "description": "Display the tab buttons for a tabbed interface.",
7 "category": "design",
8 "textdomain": "default",
9 "parent": [ "core/tabs" ],
10 "usesContext": [ "core/tabs-list" ],
11 "attributes": {
12 "tabs": {
13 "type": "array",
14 "source": "query",
15 "selector": "button",
16 "query": {
17 "label": {
18 "type": "rich-text",
19 "source": "rich-text",
20 "role": "content"
21 }
22 },
23 "default": []
24 }
25 },
26 "supports": {
27 "html": false,
28 "ariaLabel": true,
29 "visibility": false,
30 "lock": false,
31 "color": {
32 "background": true,
33 "text": true,
34 "__experimentalSkipSerialization": true,
35 "__experimentalDefaultControls": {
36 "background": true,
37 "text": true
38 }
39 },
40 "typography": {
41 "fontSize": true,
42 "__experimentalFontFamily": true
43 },
44 "__experimentalBorder": {
45 "color": true,
46 "radius": true,
47 "style": true,
48 "width": true,
49 "__experimentalSkipSerialization": true
50 },
51 "layout": {
52 "default": {
53 "type": "flex",
54 "flexWrap": "wrap"
55 },
56 "allowVerticalAlignment": false,
57 "allowOrientation": false,
58 "allowWrap": false
59 },
60 "spacing": {
61 "padding": true,
62 "blockGap": true,
63 "__experimentalSkipSerialization": [ "padding" ],
64 "__experimentalDefaultControls": {
65 "padding": true,
66 "blockGap": true
67 }
68 }
69 },
70 "selectors": {
71 "border": ".wp-block-tab-list button",
72 "color": {
73 "background": ".wp-block-tab-list button",
74 "text": ".wp-block-tab-list button"
75 },
76 "spacing": {
77 "padding": ".wp-block-tab-list button"
78 }
79 },
80 "style": "wp-block-tab-list",
81 "editorStyle": "wp-block-tab-list-editor"
82 }
83