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

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

203 lines 5.0 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/product-roundup",
5 "title": "Product Roundup",
6 "description": "Ranked multi-product review section with ratings, pros/cons and CTAs.",
7 "category": "bkbg-blog",
8 "icon": "products",
9 "keywords": [
10 "product",
11 "review",
12 "roundup",
13 "best",
14 "compare",
15 "rating"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-product-roundup-editor",
19 "style": "bkbg-product-roundup-style",
20 "viewScript": "bkbg-product-roundup-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "sectionTitle": {
30 "type": "string",
31 "default": "Our Top Picks"
32 },
33 "sectionSubtitle": {
34 "type": "string",
35 "default": ""
36 },
37 "showSubtitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "products": {
42 "type": "array",
43 "default": [
44 {
45 "rank": 1,
46 "name": "Product Name",
47 "image": "",
48 "imageId": 0,
49 "badge": "Editor's Pick",
50 "showBadge": true,
51 "rating": 4.5,
52 "summary": "A short description of this product and why it stands out.",
53 "pros": [
54 "Great quality",
55 "Easy to use"
56 ],
57 "cons": [
58 "Pricey"
59 ],
60 "price": "$99",
61 "ctaLabel": "Check Price",
62 "ctaUrl": ""
63 }
64 ]
65 },
66 "layout": {
67 "type": "string",
68 "default": "list"
69 },
70 "showRank": {
71 "type": "boolean",
72 "default": true
73 },
74 "showRating": {
75 "type": "boolean",
76 "default": true
77 },
78 "showPros": {
79 "type": "boolean",
80 "default": true
81 },
82 "showCons": {
83 "type": "boolean",
84 "default": true
85 },
86 "showPrice": {
87 "type": "boolean",
88 "default": true
89 },
90 "showImage": {
91 "type": "boolean",
92 "default": true
93 },
94 "openInNewTab": {
95 "type": "boolean",
96 "default": true
97 },
98 "bgColor": {
99 "type": "string",
100 "default": "#ffffff"
101 },
102 "borderColor": {
103 "type": "string",
104 "default": "#e2e8f0"
105 },
106 "headingColor": {
107 "type": "string",
108 "default": "#0f172a"
109 },
110 "subtitleColor": {
111 "type": "string",
112 "default": "#64748b"
113 },
114 "cardBg": {
115 "type": "string",
116 "default": "#ffffff"
117 },
118 "cardBorder": {
119 "type": "string",
120 "default": "#e2e8f0"
121 },
122 "rankBg": {
123 "type": "string",
124 "default": "#0f172a"
125 },
126 "rankColor": {
127 "type": "string",
128 "default": "#ffffff"
129 },
130 "badgeBg": {
131 "type": "string",
132 "default": "#f59e0b"
133 },
134 "badgeColor": {
135 "type": "string",
136 "default": "#ffffff"
137 },
138 "nameColor": {
139 "type": "string",
140 "default": "#0f172a"
141 },
142 "ratingColor": {
143 "type": "string",
144 "default": "#f59e0b"
145 },
146 "summaryColor": {
147 "type": "string",
148 "default": "#475569"
149 },
150 "prosColor": {
151 "type": "string",
152 "default": "#16a34a"
153 },
154 "consColor": {
155 "type": "string",
156 "default": "#dc2626"
157 },
158 "priceColor": {
159 "type": "string",
160 "default": "#0f172a"
161 },
162 "ctaBg": {
163 "type": "string",
164 "default": "#0f172a"
165 },
166 "ctaColor": {
167 "type": "string",
168 "default": "#ffffff"
169 },
170 "borderRadius": {
171 "type": "number",
172 "default": 10
173 },
174 "cardRadius": {
175 "type": "number",
176 "default": 8
177 },
178 "paddingTop": {
179 "type": "number",
180 "default": 0
181 },
182 "paddingBottom": {
183 "type": "number",
184 "default": 0
185 },
186 "titleTypo": {
187 "type": "object",
188 "default": {}
189 },
190 "subtitleTypo": {
191 "type": "object",
192 "default": {}
193 },
194 "nameTypo": {
195 "type": "object",
196 "default": {}
197 },
198 "summaryTypo": {
199 "type": "object",
200 "default": {}
201 }
202 }
203 }