PluginProbe
Gutenberg / 23.0.1
Gutenberg v23.0.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 / tabs-menu-item / block.json

block.json in Gutenberg 23.0.1, at build/scripts/block-library/tabs-menu-item/block.json

60 lines 1.2 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/tabs-menu-item",
6 "title": "Tab Menu Item",
7 "description": "A single tab button in the tabs menu.",
8 "version": "1.0.0",
9 "category": "design",
10 "textdomain": "default",
11 "parent": [ "core/tabs-menu" ],
12 "usesContext": [
13 "core/tabs-list",
14 "core/tabs-activeTabIndex",
15 "core/tabs-editorActiveTabIndex",
16 "core/tabs-menu-item-index",
17 "core/tabs-menu-item-id",
18 "core/tabs-menu-item-label"
19 ],
20 "supports": {
21 "html": false,
22 "reusable": 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 "layout": {
53 "allowEditing": false
54 }
55 },
56 "editorScript": "file:./index.js",
57 "editorStyle": "file:./editor.css",
58 "style": "file:./style-index.css"
59 }
60