| 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 |
|