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

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

70 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/tabs",
6 "title": "Tabs",
7 "description": "Display content in a tabbed interface to help users navigate detailed content with ease.",
8 "version": "1.0.0",
9 "category": "design",
10 "textdomain": "default",
11 "allowedBlocks": [ "core/tabs-menu", "core/tab-panel" ],
12 "attributes": {
13 "activeTabIndex": {
14 "type": "number",
15 "default": 0
16 },
17 "editorActiveTabIndex": {
18 "type": "number",
19 "role": "local"
20 }
21 },
22 "supports": {
23 "align": true,
24 "anchor": true,
25 "color": {
26 "text": true,
27 "background": true,
28 "__experimentalDefaultControls": {
29 "text": true,
30 "background": true
31 }
32 },
33 "layout": {
34 "default": {
35 "type": "flex",
36 "flexWrap": "nowrap",
37 "justifyContent": "stretch",
38 "verticalAlignment": "stretch",
39 "orientation": "vertical"
40 },
41 "allowSwitching": false,
42 "allowVerticalAlignment": true,
43 "allowJustification": true,
44 "allowOrientation": true,
45 "allowSizingOnChildren": true
46 },
47 "html": false,
48 "interactivity": true,
49 "spacing": {
50 "blockGap": true,
51 "margin": true,
52 "padding": true
53 },
54 "typography": {
55 "fontSize": true,
56 "__experimentalFontFamily": true
57 },
58 "renaming": true
59 },
60 "providesContext": {
61 "core/tabs-activeTabIndex": "activeTabIndex",
62 "core/tabs-editorActiveTabIndex": "editorActiveTabIndex"
63 },
64 "usesContext": [ "core/tabs-list", "core/tabs-id" ],
65 "editorScript": "file:./index.js",
66 "editorStyle": "file:./index.css",
67 "style": "file:./style-index.css",
68 "viewScriptModule": "@wordpress/block-library/tabs/view"
69 }
70