build/scripts/block-library/tab
block.json
1.1 KB
4 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/tab/block.json
| 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": "A single tab button in the tab list.", |
| 8 | "category": "design", |
| 9 | "textdomain": "default", |
| 10 | "parent": [ "core/tab-list" ], |
| 11 | "usesContext": [ |
| 12 | "core/tabs-list", |
| 13 | "core/tabs-activeTabIndex", |
| 14 | "core/tabs-editorActiveTabIndex", |
| 15 | "core/tab-index", |
| 16 | "core/tab-id", |
| 17 | "core/tab-label" |
| 18 | ], |
| 19 | "supports": { |
| 20 | "html": false, |
| 21 | "reusable": false, |
| 22 | "visibility": false, |
| 23 | "lock": false, |
| 24 | "color": { |
| 25 | "background": true, |
| 26 | "text": true, |
| 27 | "__experimentalDefaultControls": { |
| 28 | "background": true, |
| 29 | "text": true |
| 30 | } |
| 31 | }, |
| 32 | "typography": { |
| 33 | "fontSize": true, |
| 34 | "__experimentalFontFamily": true, |
| 35 | "textAlign": true, |
| 36 | "__experimentalDefaultControls": { |
| 37 | "fontSize": true |
| 38 | } |
| 39 | }, |
| 40 | "spacing": { |
| 41 | "padding": true, |
| 42 | "__experimentalDefaultControls": { |
| 43 | "padding": true |
| 44 | } |
| 45 | }, |
| 46 | "__experimentalBorder": { |
| 47 | "radius": true, |
| 48 | "color": true, |
| 49 | "width": true, |
| 50 | "style": true |
| 51 | } |
| 52 | }, |
| 53 | "editorScript": "file:./index.js", |
| 54 | "editorStyle": "file:./editor.css", |
| 55 | "style": "file:./style-index.css" |
| 56 | } |
| 57 |