| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"__experimental": true, |
| 4 |
"apiVersion": 3, |
| 5 |
"name": "core/tab", |
| 6 |
"title": "Tab", |
| 7 |
"description": "Content for a tab in a tabbed interface.", |
| 8 |
"version": "1.0.0", |
| 9 |
"category": "design", |
| 10 |
"textdomain": "default", |
| 11 |
"attributes": { |
| 12 |
"label": { |
| 13 |
"type": "string", |
| 14 |
"default": "" |
| 15 |
} |
| 16 |
}, |
| 17 |
"parent": [ "core/tab-panel" ], |
| 18 |
"usesContext": [ |
| 19 |
"core/tabs-activeTabIndex", |
| 20 |
"core/tabs-editorActiveTabIndex" |
| 21 |
], |
| 22 |
"supports": { |
| 23 |
"anchor": true, |
| 24 |
"html": false, |
| 25 |
"reusable": false, |
| 26 |
"color": { |
| 27 |
"background": true, |
| 28 |
"text": true, |
| 29 |
"__experimentalDefaultControls": { |
| 30 |
"background": true, |
| 31 |
"text": true |
| 32 |
} |
| 33 |
}, |
| 34 |
"layout": true, |
| 35 |
"spacing": { |
| 36 |
"blockGap": true, |
| 37 |
"padding": true, |
| 38 |
"margin": false |
| 39 |
}, |
| 40 |
"typography": { |
| 41 |
"fontSize": true, |
| 42 |
"__experimentalFontFamily": true, |
| 43 |
"__experimentalDefaultControls": { |
| 44 |
"fontSize": true, |
| 45 |
"__experimentalFontFamily": true |
| 46 |
} |
| 47 |
}, |
| 48 |
"renaming": true |
| 49 |
}, |
| 50 |
"providesContext": { |
| 51 |
"core/tab-label": "label" |
| 52 |
}, |
| 53 |
"editorScript": "file:./index.js", |
| 54 |
"style": "file:./style-index.css" |
| 55 |
} |
| 56 |
|