PluginProbe
Gutenberg / 23.3.1
Gutenberg v23.3.1
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.3.1, at build/scripts/block-library/tab-panel/block.json

57 lines 1.1 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 "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