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 / tab-list / block.json
build/scripts/block-library/tab-list
block.json 1.4 KB 4 months ago

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

68 lines 1.4 KB 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 "allowedBlocks": [ "core/tab" ],
12 "usesContext": [ "core/tabs-list" ],
13 "attributes": {},
14 "supports": {
15 "html": false,
16 "reusable": false,
17 "visibility": false,
18 "lock": false,
19 "dimensions": {
20 "aspectRatio": false,
21 "height": false,
22 "minHeight": false,
23 "width": false
24 },
25 "color": {
26 "background": true,
27 "text": true,
28 "__experimentalDefaultControls": {
29 "background": true,
30 "text": true
31 }
32 },
33 "typography": {
34 "fontSize": true,
35 "__experimentalFontFamily": true
36 },
37 "__experimentalBorder": {
38 "color": true,
39 "radius": true,
40 "style": true,
41 "width": true
42 },
43 "layout": {
44 "default": {
45 "type": "flex",
46 "flexWrap": "nowrap",
47 "orientation": "horizontal"
48 },
49 "allowSwitching": false,
50 "allowVerticalAlignment": true,
51 "allowJustification": true,
52 "allowOrientation": true
53 },
54 "spacing": {
55 "padding": true,
56 "margin": true,
57 "blockGap": true,
58 "__experimentalDefaultControls": {
59 "padding": true,
60 "margin": true,
61 "blockGap": true
62 }
63 }
64 },
65 "editorScript": "file:./index.js",
66 "editorStyle": "file:./editor.css"
67 }
68