PluginProbe
Gutenberg / 23.5.0
Gutenberg v23.5.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 / tab-panel / block.json

block.json in Gutenberg 23.5.0, at build/scripts/block-library/tab-panel/block.json

53 lines 1.0 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/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 "color": {
26 "background": true,
27 "text": true,
28 "__experimentalDefaultControls": {
29 "background": true,
30 "text": true
31 }
32 },
33 "layout": true,
34 "spacing": {
35 "blockGap": true,
36 "padding": true
37 },
38 "typography": {
39 "fontSize": true,
40 "__experimentalFontFamily": true,
41 "__experimentalDefaultControls": {
42 "fontSize": true,
43 "__experimentalFontFamily": true
44 }
45 },
46 "visibility": false
47 },
48 "providesContext": {
49 "core/tab-label": "label"
50 },
51 "style": "wp-block-tab-panel"
52 }
53