build/scripts/block-library/tab-panel
block.json
1.1 KB
4 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/tab-panel/block.json
| 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": "Content for a tab in a tabbed interface.", |
| 8 | "category": "design", |
| 9 | "textdomain": "default", |
| 10 | "attributes": { |
| 11 | "label": { |
| 12 | "type": "string", |
| 13 | "default": "" |
| 14 | } |
| 15 | }, |
| 16 | "parent": [ "core/tab-panels" ], |
| 17 | "usesContext": [ |
| 18 | "core/tabs-activeTabIndex", |
| 19 | "core/tabs-editorActiveTabIndex", |
| 20 | "core/tabs-id" |
| 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 | "visibility": false |
| 50 | }, |
| 51 | "providesContext": { |
| 52 | "core/tab-label": "label" |
| 53 | }, |
| 54 | "editorScript": "file:./index.js", |
| 55 | "style": "file:./style-index.css" |
| 56 | } |
| 57 |