PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.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 All 403 releases
gutenberg / build / scripts / block-library / tab / block.json
build/scripts/block-library/tab
block.json 1.1 KB 4 months ago

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

57 lines 1.1 KB 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": "A single tab button in the tab list.",
8 "category": "design",
9 "textdomain": "default",
10 "parent": [ "core/tab-list" ],
11 "usesContext": [
12 "core/tabs-list",
13 "core/tabs-activeTabIndex",
14 "core/tabs-editorActiveTabIndex",
15 "core/tab-index",
16 "core/tab-id",
17 "core/tab-label"
18 ],
19 "supports": {
20 "html": false,
21 "reusable": false,
22 "visibility": 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 },
53 "editorScript": "file:./index.js",
54 "editorStyle": "file:./editor.css",
55 "style": "file:./style-index.css"
56 }
57