PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 / block.json

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

56 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",
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