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 / tabs-menu / block.json

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

69 lines 1.4 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",
6 "title": "Tabs Menu",
7 "description": "Display the tab buttons for a tabbed interface.",
8 "version": "1.0.0",
9 "category": "design",
10 "textdomain": "default",
11 "parent": [ "core/tabs" ],
12 "allowedBlocks": [ "core/tabs-menu-item" ],
13 "usesContext": [ "core/tabs-list" ],
14 "attributes": {},
15 "supports": {
16 "html": false,
17 "reusable": false,
18 "lock": false,
19 "dimensions": {
20 "aspectRatio": false,
21 "height": false,
22 "minHeight": false,
23 "width": false
24 },
25 "color": {
26 "background": true,
27 "text": true,
28 "__experimentalDefaultControls": {
29 "background": true,
30 "text": true
31 }
32 },
33 "typography": {
34 "fontSize": true,
35 "__experimentalFontFamily": true
36 },
37 "__experimentalBorder": {
38 "color": true,
39 "radius": true,
40 "style": true,
41 "width": true
42 },
43 "layout": {
44 "default": {
45 "type": "flex",
46 "flexWrap": "nowrap",
47 "orientation": "horizontal"
48 },
49 "allowSwitching": false,
50 "allowVerticalAlignment": true,
51 "allowJustification": true,
52 "allowOrientation": true
53 },
54 "spacing": {
55 "padding": true,
56 "margin": true,
57 "blockGap": true,
58 "__experimentalDefaultControls": {
59 "padding": true,
60 "margin": true,
61 "blockGap": true
62 }
63 }
64 },
65 "editorScript": "file:./index.js",
66 "editorStyle": "file:./editor.css",
67 "style": "file:./style-index.css"
68 }
69