PluginProbe
Gutenberg / 22.5.1
Gutenberg v22.5.1
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 / tabs / block.json

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

121 lines 2.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",
6 "title": "Tabs",
7 "description": "Display content in a tabbed interface to help users navigate detailed content with ease.",
8 "version": "1.0.0",
9 "category": "design",
10 "textdomain": "default",
11 "allowedBlocks": [
12 "core/tabs-menu",
13 "core/tab-panels"
14 ],
15 "attributes": {
16 "activeTabIndex": {
17 "type": "number",
18 "default": 0
19 },
20 "editorActiveTabIndex": {
21 "type": "number",
22 "role": "local"
23 }
24 },
25 "supports": {
26 "align": true,
27 "anchor": true,
28 "color": {
29 "text": false,
30 "background": false
31 },
32 "layout": {
33 "default": {
34 "type": "flex",
35 "flexWrap": "nowrap",
36 "justifyContent": "stretch",
37 "verticalAlignment": "stretch",
38 "orientation": "vertical"
39 },
40 "allowSwitching": false,
41 "allowVerticalAlignment": true,
42 "allowJustification": true,
43 "allowOrientation": true,
44 "allowSizingOnChildren": true
45 },
46 "html": false,
47 "interactivity": true,
48 "spacing": {
49 "blockGap": true,
50 "margin": true,
51 "padding": true
52 },
53 "typography": {
54 "fontSize": true,
55 "__experimentalFontFamily": true
56 },
57 "renaming": true
58 },
59 "example": {
60 "attributes": {
61 "className": "is-example"
62 },
63 "innerBlocks": [
64 {
65 "name": "core/tabs-menu",
66 "attributes": {},
67 "innerBlocks": [
68 {
69 "name": "core/tabs-menu-item",
70 "attributes": {}
71 }
72 ]
73 },
74 {
75 "name": "core/tab-panels",
76 "attributes": {},
77 "innerBlocks": [
78 {
79 "name": "core/tab",
80 "attributes": {
81 "label": "Tab 1"
82 },
83 "innerBlocks": [
84 {
85 "name": "core/paragraph",
86 "attributes": {
87 "content": "Pariatur commodo sint mollit. Veniam Lorem labore voluptate fugiat. Ad nulla est labore cillum cillum qui nostrud do incididunt eiusmod."
88 }
89 }
90 ]
91 },
92 {
93 "name": "core/tab",
94 "attributes": {
95 "label": "Tab 2"
96 }
97 },
98 {
99 "name": "core/tab",
100 "attributes": {
101 "label": "Tab 3"
102 }
103 }
104 ]
105 }
106 ]
107 },
108 "providesContext": {
109 "core/tabs-activeTabIndex": "activeTabIndex",
110 "core/tabs-editorActiveTabIndex": "editorActiveTabIndex"
111 },
112 "usesContext": [
113 "core/tabs-list",
114 "core/tabs-id"
115 ],
116 "editorScript": "file:./index.js",
117 "editorStyle": "file:./index.css",
118 "style": "file:./style-index.css",
119 "viewScriptModule": "@wordpress/block-library/tabs/view"
120 }
121