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

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

202 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/comparison-checklist",
4 "title": "Comparison Checklist",
5 "category": "bkbg-marketing",
6 "icon": "yes-alt",
7 "description": "Two-column 'With / Without' checklist comparison to highlight the value of your product or service.",
8 "keywords": [
9 "comparison",
10 "checklist",
11 "with without",
12 "vs",
13 "benefits",
14 "features",
15 "table"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-comparison-checklist-editor",
19 "editorStyle": "bkbg-comparison-checklist-style",
20 "style": "bkbg-comparison-checklist-style",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "colATitle": {
30 "type": "string",
31 "default": "With Our Product"
32 },
33 "colBTitle": {
34 "type": "string",
35 "default": "Without Our Product"
36 },
37 "colAColor": {
38 "type": "string",
39 "default": "#6c3fb5"
40 },
41 "colBColor": {
42 "type": "string",
43 "default": "#ef4444"
44 },
45 "items": {
46 "type": "array",
47 "default": [
48 {
49 "text": "Save hours every week on manual work",
50 "colA": true,
51 "colB": false
52 },
53 {
54 "text": "Centralised dashboard for all your data",
55 "colA": true,
56 "colB": false
57 },
58 {
59 "text": "Real-time collaboration with your team",
60 "colA": true,
61 "colB": false
62 },
63 {
64 "text": "Automated reports sent to your inbox",
65 "colA": true,
66 "colB": false
67 },
68 {
69 "text": "24/7 priority support included",
70 "colA": true,
71 "colB": false
72 },
73 {
74 "text": "Steep learning curve and complex setup",
75 "colA": false,
76 "colB": true
77 }
78 ]
79 },
80 "style": {
81 "type": "string",
82 "default": "split"
83 },
84 "showHeader": {
85 "type": "boolean",
86 "default": true
87 },
88 "showIcons": {
89 "type": "boolean",
90 "default": true
91 },
92 "iconSize": {
93 "type": "number",
94 "default": 18
95 },
96 "fontSize": {
97 "type": "number",
98 "default": 15
99 },
100 "fontWeight": {
101 "type": "number",
102 "default": 500
103 },
104 "headerSize": {
105 "type": "number",
106 "default": 16
107 },
108 "headerWeight": {
109 "type": "number",
110 "default": 700
111 },
112 "rowAlternate": {
113 "type": "boolean",
114 "default": true
115 },
116 "borderRadius": {
117 "type": "number",
118 "default": 14
119 },
120 "cardPadding": {
121 "type": "number",
122 "default": 32
123 },
124 "rowPadding": {
125 "type": "number",
126 "default": 12
127 },
128 "gap": {
129 "type": "number",
130 "default": 20
131 },
132 "headingText": {
133 "type": "string",
134 "default": ""
135 },
136 "showHeading": {
137 "type": "boolean",
138 "default": false
139 },
140 "headingSize": {
141 "type": "number",
142 "default": 28
143 },
144 "headingAlign": {
145 "type": "string",
146 "default": "center"
147 },
148 "paddingTop": {
149 "type": "number",
150 "default": 0
151 },
152 "paddingBottom": {
153 "type": "number",
154 "default": 0
155 },
156 "bgColor": {
157 "type": "string",
158 "default": "#ffffff"
159 },
160 "textColor": {
161 "type": "string",
162 "default": "#1e293b"
163 },
164 "borderColor": {
165 "type": "string",
166 "default": "#e2e8f0"
167 },
168 "checkColor": {
169 "type": "string",
170 "default": "#22c55e"
171 },
172 "crossColor": {
173 "type": "string",
174 "default": "#ef4444"
175 },
176 "rowBgAlt": {
177 "type": "string",
178 "default": "#f8fafc"
179 },
180 "headingColor": {
181 "type": "string",
182 "default": "#0f172a"
183 },
184 "lineHeight": {
185 "type": "number",
186 "default": 1.6
187 },
188 "typoHeading": {
189 "type": "object",
190 "default": {}
191 },
192 "typoRow": {
193 "type": "object",
194 "default": {}
195 },
196 "typoHeader": {
197 "type": "object",
198 "default": {}
199 }
200 }
201 }
202