PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
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 / comparison-swipe-wall / block.json

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

279 lines 6.9 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/comparison-swipe-wall",
5 "title": "Comparison Wall",
6 "category": "bkbg-marketing",
7 "icon": "editor-table",
8 "description": "Side-by-side feature comparison with two columns — ideal for before/after, free vs pro, etc.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-comparison-swipe-wall-editor",
11 "style": "bkbg-comparison-swipe-wall-style",
12 "attributes": {
13 "leftTitle": {
14 "type": "string",
15 "default": "Without us"
16 },
17 "rightTitle": {
18 "type": "string",
19 "default": "With us"
20 },
21 "leftEmoji": {
22 "type": "string",
23 "default": "😔"
24 },
25 "leftEmojiType": {
26 "type": "string",
27 "default": "custom-char"
28 },
29 "leftEmojiDashicon": {
30 "type": "string",
31 "default": "dismiss"
32 },
33 "leftEmojiImageUrl": {
34 "type": "string",
35 "default": ""
36 },
37 "rightEmoji": {
38 "type": "string",
39 "default": "🚀"
40 },
41 "rightEmojiType": {
42 "type": "string",
43 "default": "custom-char"
44 },
45 "rightEmojiDashicon": {
46 "type": "string",
47 "default": "yes-alt"
48 },
49 "rightEmojiImageUrl": {
50 "type": "string",
51 "default": ""
52 },
53 "leftItems": {
54 "type": "array",
55 "default": [
56 {
57 "id": "l1",
58 "text": "Manual, time-consuming setup"
59 },
60 {
61 "id": "l2",
62 "text": "Error-prone deployments"
63 },
64 {
65 "id": "l3",
66 "text": "No visibility into performance"
67 },
68 {
69 "id": "l4",
70 "text": "Scattered team collaboration"
71 }
72 ]
73 },
74 "rightItems": {
75 "type": "array",
76 "default": [
77 {
78 "id": "r1",
79 "text": "One-click automated setup"
80 },
81 {
82 "id": "r2",
83 "text": "Zero-downtime deployments"
84 },
85 {
86 "id": "r3",
87 "text": "Real-time analytics dashboard"
88 },
89 {
90 "id": "r4",
91 "text": "Unified team workspace"
92 }
93 ]
94 },
95 "cardStyle": {
96 "type": "string",
97 "default": "split-card"
98 },
99 "showIcons": {
100 "type": "boolean",
101 "default": true
102 },
103 "leftIcon": {
104 "type": "string",
105 "default": ""
106 },
107 "leftIconType": {
108 "type": "string",
109 "default": "custom-char"
110 },
111 "leftIconDashicon": {
112 "type": "string",
113 "default": "no"
114 },
115 "leftIconImageUrl": {
116 "type": "string",
117 "default": ""
118 },
119 "rightIcon": {
120 "type": "string",
121 "default": ""
122 },
123 "rightIconType": {
124 "type": "string",
125 "default": "custom-char"
126 },
127 "rightIconDashicon": {
128 "type": "string",
129 "default": "yes"
130 },
131 "rightIconImageUrl": {
132 "type": "string",
133 "default": ""
134 },
135 "sectionTitle": {
136 "type": "string",
137 "default": "See the difference"
138 },
139 "sectionSubtitle": {
140 "type": "string",
141 "default": "Stop struggling with outdated workflows."
142 },
143 "showHeader": {
144 "type": "boolean",
145 "default": true
146 },
147 "headerAlign": {
148 "type": "string",
149 "default": "center"
150 },
151 "eyebrow": {
152 "type": "string",
153 "default": "Comparison"
154 },
155 "showEyebrow": {
156 "type": "boolean",
157 "default": true
158 },
159 "showCta": {
160 "type": "boolean",
161 "default": true
162 },
163 "ctaLabel": {
164 "type": "string",
165 "default": "Get started free"
166 },
167 "ctaUrl": {
168 "type": "string",
169 "default": "#"
170 },
171 "gap": {
172 "type": "number",
173 "default": 24
174 },
175 "itemSize": {
176 "type": "number",
177 "default": 15
178 },
179 "cardRadius": {
180 "type": "number",
181 "default": 16
182 },
183 "paddingTop": {
184 "type": "number",
185 "default": 72
186 },
187 "paddingBottom": {
188 "type": "number",
189 "default": 72
190 },
191 "sectionBg": {
192 "type": "string",
193 "default": ""
194 },
195 "leftCardBg": {
196 "type": "string",
197 "default": "#fff7f7"
198 },
199 "rightCardBg": {
200 "type": "string",
201 "default": "#f5f3ff"
202 },
203 "leftTitleColor": {
204 "type": "string",
205 "default": "#dc2626"
206 },
207 "rightTitleColor": {
208 "type": "string",
209 "default": "#6c3fb5"
210 },
211 "leftIconColor": {
212 "type": "string",
213 "default": "#dc2626"
214 },
215 "rightIconColor": {
216 "type": "string",
217 "default": "#10b981"
218 },
219 "leftItemColor": {
220 "type": "string",
221 "default": "#475569"
222 },
223 "rightItemColor": {
224 "type": "string",
225 "default": "#1e293b"
226 },
227 "eyebrowBg": {
228 "type": "string",
229 "default": "#f0ebff"
230 },
231 "eyebrowColor": {
232 "type": "string",
233 "default": "#6c3fb5"
234 },
235 "sectionTitleColor": {
236 "type": "string",
237 "default": ""
238 },
239 "sectionSubColor": {
240 "type": "string",
241 "default": ""
242 },
243 "sectionTitleSize": {
244 "type": "number",
245 "default": 36
246 },
247 "sectionSubSize": {
248 "type": "number",
249 "default": 18
250 },
251 "typoTitle": {
252 "type": "object",
253 "default": {}
254 },
255 "typoSubtitle": {
256 "type": "object",
257 "default": {}
258 },
259 "typoItem": {
260 "type": "object",
261 "default": {}
262 }
263 },
264 "supports": {
265 "html": false,
266 "align": [
267 "wide",
268 "full"
269 ]
270 },
271 "keywords": [
272 "comparison",
273 "table",
274 "vs",
275 "before after",
276 "features"
277 ]
278 }
279