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

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

181 lines 5.1 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 "apiVersion": 3,
4 "name": "blockenberg/feature-tabs",
5 "title": "Feature Tabs",
6 "description": "SaaS-style screenshot tabs: clickable feature list on one side, large image preview on the other.",
7 "category": "bkbg-marketing",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-feature-tabs-editor",
10 "style": "bkbg-feature-tabs-style",
11 "viewScript": "bkbg-feature-tabs-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "tabs": {
23 "type": "array",
24 "default": [
25 {
26 "id": "t1",
27 "icon": "",
28 "iconType": "custom-char",
29 "iconDashicon": "",
30 "iconImageUrl": "",
31 "label": "Lightning Fast",
32 "headline": "Built for Speed",
33 "description": "Our platform is optimized from the ground up—load in milliseconds, not seconds, and keep every visitor engaged from the first byte.",
34 "imageUrl": "",
35 "imageId": 0
36 },
37 {
38 "id": "t2",
39 "icon": "🎨",
40 "iconType": "custom-char",
41 "iconDashicon": "",
42 "iconImageUrl": "",
43 "label": "Beautiful Design",
44 "headline": "Pixel-Perfect Every Time",
45 "description": "Craft stunning pages with our intuitive drag-and-drop interface. Every element snaps perfectly into place with beautiful defaults.",
46 "imageUrl": "",
47 "imageId": 0
48 },
49 {
50 "id": "t3",
51 "icon": "🔒",
52 "iconType": "custom-char",
53 "iconDashicon": "",
54 "iconImageUrl": "",
55 "label": "Enterprise Security",
56 "headline": "Security You Can Trust",
57 "description": "Bank-grade encryption, automatic backups, and 24/7 monitoring keep your data safe and your business running without interruption.",
58 "imageUrl": "",
59 "imageId": 0
60 }
61 ]
62 },
63 "defaultActive": {
64 "type": "number",
65 "default": 0
66 },
67 "tabsPosition": {
68 "type": "string",
69 "default": "left"
70 },
71 "imageAspect": {
72 "type": "string",
73 "default": "16/9"
74 },
75 "imageRadius": {
76 "type": "number",
77 "default": 16
78 },
79 "imageShadow": {
80 "type": "boolean",
81 "default": true
82 },
83 "imageObjectFit": {
84 "type": "string",
85 "default": "cover"
86 },
87 "tabStyle": {
88 "type": "string",
89 "default": "card"
90 },
91 "tabsWidth": {
92 "type": "number",
93 "default": 300
94 },
95 "gap": {
96 "type": "number",
97 "default": 48
98 },
99 "animate": {
100 "type": "boolean",
101 "default": true
102 },
103 "headlineSize": {
104 "type": "number",
105 "default": 28
106 },
107 "descSize": {
108 "type": "number",
109 "default": 15
110 },
111 "labelSize": {
112 "type": "number",
113 "default": 15
114 },
115 "iconSize": {
116 "type": "number",
117 "default": 28
118 },
119 "typoLabel": {
120 "type": "object",
121 "default": {}
122 },
123 "typoHeadline": {
124 "type": "object",
125 "default": {}
126 },
127 "typoDesc": {
128 "type": "object",
129 "default": {}
130 },
131 "accentColor": {
132 "type": "string",
133 "default": "#6c3fb5"
134 },
135 "activeTabBg": {
136 "type": "string",
137 "default": "#ede9f7"
138 },
139 "activeTabColor": {
140 "type": "string",
141 "default": "#4c1d95"
142 },
143 "inactiveTabBg": {
144 "type": "string",
145 "default": "#f9fafb"
146 },
147 "inactiveTabColor": {
148 "type": "string",
149 "default": "#374151"
150 },
151 "tabBorderColor": {
152 "type": "string",
153 "default": "#e5e7eb"
154 },
155 "headlineColor": {
156 "type": "string",
157 "default": "#111827"
158 },
159 "descColor": {
160 "type": "string",
161 "default": "#4b5563"
162 },
163 "imagePlaceholderBg": {
164 "type": "string",
165 "default": "#f3f4f6"
166 },
167 "bgColor": {
168 "type": "string",
169 "default": ""
170 },
171 "paddingTop": {
172 "type": "number",
173 "default": 64
174 },
175 "paddingBottom": {
176 "type": "number",
177 "default": 64
178 }
179 }
180 }
181