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

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

199 lines 4.8 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/pros-cons",
5 "title": "Pros & Cons",
6 "category": "bkbg-blog",
7 "icon": "editor-table",
8 "description": "A two-column pros and cons comparison block for reviews and articles. Supports editable items, custom icons, heading, and full color control for each column.",
9 "keywords": [
10 "pros",
11 "cons",
12 "advantages",
13 "disadvantages",
14 "comparison",
15 "review",
16 "checklist",
17 "good",
18 "bad"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-pros-cons-editor",
22 "style": "bkbg-pros-cons-style",
23 "viewScript": "bkbg-pros-cons-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "heading": {
35 "type": "string",
36 "default": "Pros & Cons"
37 },
38 "showHeading": {
39 "type": "boolean",
40 "default": true
41 },
42 "prosHeading": {
43 "type": "string",
44 "default": "Pros"
45 },
46 "consHeading": {
47 "type": "string",
48 "default": "Cons"
49 },
50 "prosIcon": {
51 "type": "string",
52 "default": ""
53 },
54 "prosIconType": {
55 "type": "string",
56 "default": "custom-char"
57 },
58 "prosIconDashicon": {
59 "type": "string",
60 "default": ""
61 },
62 "prosIconImageUrl": {
63 "type": "string",
64 "default": ""
65 },
66 "consIcon": {
67 "type": "string",
68 "default": ""
69 },
70 "consIconType": {
71 "type": "string",
72 "default": "custom-char"
73 },
74 "consIconDashicon": {
75 "type": "string",
76 "default": ""
77 },
78 "consIconImageUrl": {
79 "type": "string",
80 "default": ""
81 },
82 "pros": {
83 "type": "array",
84 "default": [
85 "Easy to set up and get started quickly",
86 "Excellent performance and reliability",
87 "Great value for the price"
88 ]
89 },
90 "cons": {
91 "type": "array",
92 "default": [
93 "Limited customization options",
94 "Steeper learning curve for advanced features"
95 ]
96 },
97 "layout": {
98 "type": "string",
99 "default": "two-col"
100 },
101 "prosBg": {
102 "type": "string",
103 "default": "#f0fdf4"
104 },
105 "consBg": {
106 "type": "string",
107 "default": "#fef2f2"
108 },
109 "prosHeadBg": {
110 "type": "string",
111 "default": "#dcfce7"
112 },
113 "consHeadBg": {
114 "type": "string",
115 "default": "#fee2e2"
116 },
117 "prosHeadColor": {
118 "type": "string",
119 "default": "#15803d"
120 },
121 "consHeadColor": {
122 "type": "string",
123 "default": "#b91c1c"
124 },
125 "prosBulletColor": {
126 "type": "string",
127 "default": "#16a34a"
128 },
129 "consBulletColor": {
130 "type": "string",
131 "default": "#dc2626"
132 },
133 "prosItemColor": {
134 "type": "string",
135 "default": "#166534"
136 },
137 "consItemColor": {
138 "type": "string",
139 "default": "#991b1b"
140 },
141 "prosBorder": {
142 "type": "string",
143 "default": "#bbf7d0"
144 },
145 "consBorder": {
146 "type": "string",
147 "default": "#fecaca"
148 },
149 "headingColor": {
150 "type": "string",
151 "default": "#1e1b4b"
152 },
153 "cardBg": {
154 "type": "string",
155 "default": ""
156 },
157 "headingTypo": {
158 "type": "object",
159 "default": {}
160 },
161 "colHeadTypo": {
162 "type": "object",
163 "default": {}
164 },
165 "itemTypo": {
166 "type": "object",
167 "default": {}
168 },
169 "itemGap": {
170 "type": "number",
171 "default": 12
172 },
173 "colRadius": {
174 "type": "number",
175 "default": 12
176 },
177 "paddingV": {
178 "type": "number",
179 "default": 0
180 },
181 "paddingH": {
182 "type": "number",
183 "default": 0
184 },
185 "columnGap": {
186 "type": "number",
187 "default": 16
188 },
189 "maxWidth": {
190 "type": "number",
191 "default": 860
192 },
193 "showIcons": {
194 "type": "boolean",
195 "default": true
196 }
197 }
198 }
199