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 / text-comparison / block.json

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

280 lines 7.2 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/text-comparison",
5 "title": "Text Comparison",
6 "category": "bkbg-dev",
7 "description": "Two-column narrative comparison block for Before/After, Problem/Solution, Old Way/New Way contrasts using styled bullet lists.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-text-comparison-editor",
10 "style": "bkbg-text-comparison-style",
11 "viewScript": "bkbg-text-comparison-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "leftLabel": {
23 "type": "string",
24 "default": "The Old Way"
25 },
26 "leftDescription": {
27 "type": "string",
28 "default": "How things used to work — slow, painful, and expensive."
29 },
30 "leftIcon": {
31 "type": "string",
32 "default": "😩"
33 },
34 "leftIconType": {
35 "type": "string",
36 "default": "custom-char"
37 },
38 "leftIconDashicon": {
39 "type": "string",
40 "default": ""
41 },
42 "leftIconImageUrl": {
43 "type": "string",
44 "default": ""
45 },
46 "leftItems": {
47 "type": "array",
48 "default": [
49 {
50 "id": "li1",
51 "text": "Hours wasted on manual spreadsheets"
52 },
53 {
54 "id": "li2",
55 "text": "Costly mistakes from outdated data"
56 },
57 {
58 "id": "li3",
59 "text": "Siloed teams with no visibility"
60 },
61 {
62 "id": "li4",
63 "text": "Impossible to scale without more headcount"
64 }
65 ],
66 "items": {
67 "type": "object"
68 }
69 },
70 "leftItemIcon": {
71 "type": "string",
72 "default": ""
73 },
74 "leftItemIconType": {
75 "type": "string",
76 "default": "custom-char"
77 },
78 "leftItemIconDashicon": {
79 "type": "string",
80 "default": ""
81 },
82 "leftItemIconImageUrl": {
83 "type": "string",
84 "default": ""
85 },
86 "rightLabel": {
87 "type": "string",
88 "default": "With Our Solution"
89 },
90 "rightDescription": {
91 "type": "string",
92 "default": "A smarter way to work — fast, accurate, and built to grow with you."
93 },
94 "rightIcon": {
95 "type": "string",
96 "default": "🚀"
97 },
98 "rightIconType": {
99 "type": "string",
100 "default": "custom-char"
101 },
102 "rightIconDashicon": {
103 "type": "string",
104 "default": ""
105 },
106 "rightIconImageUrl": {
107 "type": "string",
108 "default": ""
109 },
110 "rightItems": {
111 "type": "array",
112 "default": [
113 {
114 "id": "ri1",
115 "text": "Automated workflows that save hours every week"
116 },
117 {
118 "id": "ri2",
119 "text": "Real-time data you can trust"
120 },
121 {
122 "id": "ri3",
123 "text": "Full team alignment at a glance"
124 },
125 {
126 "id": "ri4",
127 "text": "Scales seamlessly as your business grows"
128 }
129 ],
130 "items": {
131 "type": "object"
132 }
133 },
134 "rightItemIcon": {
135 "type": "string",
136 "default": ""
137 },
138 "rightItemIconType": {
139 "type": "string",
140 "default": "custom-char"
141 },
142 "rightItemIconDashicon": {
143 "type": "string",
144 "default": ""
145 },
146 "rightItemIconImageUrl": {
147 "type": "string",
148 "default": ""
149 },
150 "showIcons": {
151 "type": "boolean",
152 "default": true
153 },
154 "showDescriptions": {
155 "type": "boolean",
156 "default": true
157 },
158 "style": {
159 "type": "string",
160 "default": "cards"
161 },
162 "showDivider": {
163 "type": "boolean",
164 "default": true
165 },
166 "dividerStyle": {
167 "type": "string",
168 "default": "line"
169 },
170 "headerAlign": {
171 "type": "string",
172 "default": "center"
173 },
174 "maxWidth": {
175 "type": "integer",
176 "default": 960
177 },
178 "gap": {
179 "type": "integer",
180 "default": 0
181 },
182 "cardRadius": {
183 "type": "integer",
184 "default": 16
185 },
186 "cardPadding": {
187 "type": "integer",
188 "default": 32
189 },
190 "labelTypo": {
191 "type": "object",
192 "default": {}
193 },
194 "descTypo": {
195 "type": "object",
196 "default": {}
197 },
198 "itemTypo": {
199 "type": "object",
200 "default": {}
201 },
202 "iconSize": {
203 "type": "integer",
204 "default": 32
205 },
206 "iconSize": {
207 "type": "integer",
208 "default": 32
209 },
210 "itemIconSize": {
211 "type": "integer",
212 "default": 16
213 },
214 "leftBg": {
215 "type": "string",
216 "default": "#fff5f5"
217 },
218 "rightBg": {
219 "type": "string",
220 "default": "#f0fdf4"
221 },
222 "leftBorderColor": {
223 "type": "string",
224 "default": "#fecaca"
225 },
226 "rightBorderColor": {
227 "type": "string",
228 "default": "#bbf7d0"
229 },
230 "leftLabelColor": {
231 "type": "string",
232 "default": "#dc2626"
233 },
234 "rightLabelColor": {
235 "type": "string",
236 "default": "#16a34a"
237 },
238 "leftItemIconColor": {
239 "type": "string",
240 "default": "#dc2626"
241 },
242 "rightItemIconColor": {
243 "type": "string",
244 "default": "#16a34a"
245 },
246 "leftTextColor": {
247 "type": "string",
248 "default": "#374151"
249 },
250 "rightTextColor": {
251 "type": "string",
252 "default": "#374151"
253 },
254 "leftDescColor": {
255 "type": "string",
256 "default": "#6b7280"
257 },
258 "rightDescColor": {
259 "type": "string",
260 "default": "#6b7280"
261 },
262 "dividerColor": {
263 "type": "string",
264 "default": "#e5e7eb"
265 },
266 "bgColor": {
267 "type": "string",
268 "default": ""
269 },
270 "paddingTop": {
271 "type": "integer",
272 "default": 64
273 },
274 "paddingBottom": {
275 "type": "integer",
276 "default": 64
277 }
278 }
279 }
280