PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 / tab-panel / block.json

block.json in Gutenberg 22.9.0, at build/scripts/block-library/tab-panel/block.json

67 lines 1.4 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-panel",
6 "title": "Tab Panel",
7 "description": "Container for tab panel content in a tabbed interface.",
8 "version": "1.0.0",
9 "category": "design",
10 "textdomain": "default",
11 "parent": [ "core/tabs" ],
12 "allowedBlocks": [ "core/tab" ],
13 "attributes": {},
14 "supports": {
15 "anchor": false,
16 "html": false,
17 "reusable": 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 "heading": true,
29 "link": true,
30 "__experimentalDefaultControls": {
31 "background": true,
32 "text": true
33 }
34 },
35 "spacing": {
36 "blockGap": false,
37 "padding": true,
38 "margin": true
39 },
40 "typography": {
41 "fontSize": true,
42 "__experimentalFontFamily": true
43 },
44 "layout": {
45 "default": {
46 "type": "flex",
47 "flexWrap": "nowrap",
48 "justifyContent": "stretch",
49 "orientation": "vertical"
50 },
51 "allowSwitching": false,
52 "allowVerticalAlignment": false,
53 "allowOrientation": false,
54 "allowJustification": true,
55 "allowSizingOnChildren": false
56 },
57 "__experimentalBorder": {
58 "radius": true,
59 "color": true,
60 "width": true,
61 "style": true
62 }
63 },
64 "editorScript": "file:./index.js",
65 "style": "file:./style-index.css"
66 }
67