PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / tabs / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/tabs/block.json

217 lines 5.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/tabs",
5 "title": "Tabs",
6 "category": "bkbg-content",
7 "icon": "screenoptions",
8 "description": "Tabbed content panels with full WYSIWYG editing per tab.",
9 "keywords": [
10 "tabs",
11 "tabbed",
12 "panel",
13 "content",
14 "switch",
15 "navigation"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-tabs-editor",
19 "editorStyle": "bkbg-tabs-style",
20 "style": "bkbg-tabs-style",
21 "viewScript": "bkbg-tabs-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "items": {
33 "type": "array",
34 "default": [
35 {
36 "title": "Tab One",
37 "content": "<p>Add your content here. Click to edit this tab panel.</p>",
38 "icon": "dashicons-star-filled",
39 "showIcon": true
40 },
41 {
42 "title": "Tab Two",
43 "content": "<p>This is the second tab panel. Each tab has its own rich text content area.</p>",
44 "icon": "dashicons-heart",
45 "showIcon": true
46 },
47 {
48 "title": "Tab Three",
49 "content": "<p>Add unlimited tabs, each with full WYSIWYG support for images, lists, headings, and more.</p>",
50 "icon": "dashicons-admin-site",
51 "showIcon": true
52 }
53 ]
54 },
55 "activeTab": {
56 "type": "number",
57 "default": 0
58 },
59 "tabStyle": {
60 "type": "string",
61 "default": "underline"
62 },
63 "tabPosition": {
64 "type": "string",
65 "default": "top"
66 },
67 "tabAlign": {
68 "type": "string",
69 "default": "left"
70 },
71 "tabGap": {
72 "type": "number",
73 "default": 4
74 },
75 "showIcons": {
76 "type": "boolean",
77 "default": true
78 },
79 "showLabels": {
80 "type": "boolean",
81 "default": true
82 },
83 "iconPosition": {
84 "type": "string",
85 "default": "left"
86 },
87 "animationType": {
88 "type": "string",
89 "default": "fade"
90 },
91 "tabBarBg": {
92 "type": "string",
93 "default": "transparent"
94 },
95 "tabBg": {
96 "type": "string",
97 "default": "transparent"
98 },
99 "tabColor": {
100 "type": "string",
101 "default": "#555555"
102 },
103 "tabHoverBg": {
104 "type": "string",
105 "default": "rgba(0,0,0,0.04)"
106 },
107 "tabHoverColor": {
108 "type": "string",
109 "default": "#222222"
110 },
111 "tabActiveBg": {
112 "type": "string",
113 "default": "#ffffff"
114 },
115 "tabActiveColor": {
116 "type": "string",
117 "default": "#2563eb"
118 },
119 "indicatorColor": {
120 "type": "string",
121 "default": "#2563eb"
122 },
123 "indicatorHeight": {
124 "type": "number",
125 "default": 3
126 },
127 "tabTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "tabPaddingV": {
132 "type": "number",
133 "default": 12
134 },
135 "tabPaddingH": {
136 "type": "number",
137 "default": 20
138 },
139 "tabBorderRadius": {
140 "type": "number",
141 "default": 6
142 },
143 "contentBg": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "contentColor": {
148 "type": "string",
149 "default": "#333333"
150 },
151 "contentPaddingTop": {
152 "type": "number",
153 "default": 28
154 },
155 "contentPaddingRight": {
156 "type": "number",
157 "default": 28
158 },
159 "contentPaddingBottom": {
160 "type": "number",
161 "default": 28
162 },
163 "contentPaddingLeft": {
164 "type": "number",
165 "default": 28
166 },
167 "contentBorderRadius": {
168 "type": "number",
169 "default": 8
170 },
171 "contentMinHeight": {
172 "type": "number",
173 "default": 0
174 },
175 "contentTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "borderColor": {
180 "type": "string",
181 "default": "#e2e8f0"
182 },
183 "borderWidth": {
184 "type": "number",
185 "default": 1
186 },
187 "wrapperBg": {
188 "type": "string",
189 "default": "transparent"
190 },
191 "wrapperPaddingTop": {
192 "type": "number",
193 "default": 0
194 },
195 "wrapperPaddingRight": {
196 "type": "number",
197 "default": 0
198 },
199 "wrapperPaddingBottom": {
200 "type": "number",
201 "default": 0
202 },
203 "wrapperPaddingLeft": {
204 "type": "number",
205 "default": 0
206 },
207 "wrapperBorderRadius": {
208 "type": "number",
209 "default": 0
210 },
211 "boxShadow": {
212 "type": "string",
213 "default": "none"
214 }
215 }
216 }
217