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

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

202 lines 5.3 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/debate-block",
5 "title": "Debate Block",
6 "category": "bkbg-content",
7 "icon": "editor-justify",
8 "description": "Two-column argument block for presenting Pro vs Con, Side A vs Side B, or any two-position debate.",
9 "keywords": [
10 "debate",
11 "pro",
12 "con",
13 "argument",
14 "versus",
15 "compare",
16 "sides",
17 "opinion"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-debate-block-editor",
21 "editorStyle": "bkbg-debate-block-style",
22 "style": "bkbg-debate-block-style",
23 "viewScript": "bkbg-debate-block-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "blockTitle": {
35 "type": "string",
36 "default": "The Great Debate"
37 },
38 "showTitle": {
39 "type": "boolean",
40 "default": true
41 },
42 "blockSubtitle": {
43 "type": "string",
44 "default": "Explore both sides of the argument"
45 },
46 "showSubtitle": {
47 "type": "boolean",
48 "default": true
49 },
50 "leftLabel": {
51 "type": "string",
52 "default": "For"
53 },
54 "rightLabel": {
55 "type": "string",
56 "default": "Against"
57 },
58 "leftIcon": {
59 "type": "string",
60 "default": "👍"
61 },
62 "rightIcon": {
63 "type": "string",
64 "default": "👎"
65 },
66 "leftPoints": {
67 "type": "array",
68 "default": [
69 "Increases productivity by automating repetitive tasks",
70 "Reduces operational costs over the long term",
71 "Enables 24/7 service without additional staffing",
72 "Scales effortlessly to meet demand spikes"
73 ]
74 },
75 "rightPoints": {
76 "type": "array",
77 "default": [
78 "Significant upfront investment and implementation costs",
79 "Risk of job displacement for entry-level workers",
80 "Requires ongoing maintenance and technical expertise",
81 "Potential for bias in automated decision-making"
82 ]
83 },
84 "verdict": {
85 "type": "string",
86 "default": "The answer depends on your specific context. For most growing businesses, the long-term productivity gains outweigh the initial investment — but careful change management is essential."
87 },
88 "showVerdict": {
89 "type": "boolean",
90 "default": true
91 },
92 "verdictLabel": {
93 "type": "string",
94 "default": "💡 Verdict"
95 },
96 "layout": {
97 "type": "string",
98 "default": "columns"
99 },
100 "style": {
101 "type": "string",
102 "default": "card"
103 },
104 "showIcons": {
105 "type": "boolean",
106 "default": true
107 },
108 "showBullets": {
109 "type": "boolean",
110 "default": true
111 },
112 "borderRadius": {
113 "type": "number",
114 "default": 12
115 },
116 "gap": {
117 "type": "number",
118 "default": 20
119 },
120 "fontSize": {
121 "type": "number",
122 "default": 14
123 },
124 "headerFontSize": {
125 "type": "number",
126 "default": 18
127 },
128 "blockTitleFontSize": {
129 "type": "number",
130 "default": 22
131 },
132 "blockSubtitleFontSize": {
133 "type": "number",
134 "default": 14
135 },
136 "typoTitle": {
137 "type": "object",
138 "default": {}
139 },
140 "typoSubtitle": {
141 "type": "object",
142 "default": {}
143 },
144 "typoHeader": {
145 "type": "object",
146 "default": {}
147 },
148 "typoPoint": {
149 "type": "object",
150 "default": {}
151 },
152 "leftColor": {
153 "type": "string",
154 "default": "#22c55e"
155 },
156 "rightColor": {
157 "type": "string",
158 "default": "#ef4444"
159 },
160 "bgColor": {
161 "type": "string",
162 "default": "#f8fafc"
163 },
164 "leftBg": {
165 "type": "string",
166 "default": "#f0fdf4"
167 },
168 "rightBg": {
169 "type": "string",
170 "default": "#fef2f2"
171 },
172 "textColor": {
173 "type": "string",
174 "default": "#374151"
175 },
176 "headerTextColor": {
177 "type": "string",
178 "default": "#ffffff"
179 },
180 "titleColor": {
181 "type": "string",
182 "default": "#0f172a"
183 },
184 "subtitleColor": {
185 "type": "string",
186 "default": "#64748b"
187 },
188 "verdictBg": {
189 "type": "string",
190 "default": "#fffbeb"
191 },
192 "verdictColor": {
193 "type": "string",
194 "default": "#92400e"
195 },
196 "verdictBorderColor": {
197 "type": "string",
198 "default": "#fcd34d"
199 }
200 }
201 }
202