PluginProbe
Gutenberg / 23.5.3
Gutenberg v23.5.3
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.5.3, at build/scripts/block-library/tab-list/block.json

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