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

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

194 lines 4.6 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/review-box",
4 "title": "Review Box",
5 "category": "bkbg-blog",
6 "description": "Professional review card with score, pros/cons, and Schema.org markup.",
7 "keywords": [
8 "review",
9 "rating",
10 "pros",
11 "cons",
12 "verdict",
13 "schema"
14 ],
15 "textdomain": "blockenberg",
16 "editorScript": "bkbg-review-box-editor",
17 "editorStyle": "bkbg-review-box-style",
18 "style": "bkbg-review-box-style",
19 "viewScript": "bkbg-review-box-frontend",
20 "supports": {
21 "html": false,
22 "anchor": true,
23 "className": true,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "productName": {
31 "type": "string",
32 "default": "Product Name"
33 },
34 "reviewTitle": {
35 "type": "string",
36 "default": "Our Verdict"
37 },
38 "summary": {
39 "type": "string",
40 "default": ""
41 },
42 "score": {
43 "type": "number",
44 "default": 4.5
45 },
46 "maxScore": {
47 "type": "number",
48 "default": 5
49 },
50 "scoreLabel": {
51 "type": "string",
52 "default": "Overall Score"
53 },
54 "pros": {
55 "type": "array",
56 "default": [
57 {
58 "id": "pro-1",
59 "text": "Excellent build quality"
60 },
61 {
62 "id": "pro-2",
63 "text": "Great value for money"
64 },
65 {
66 "id": "pro-3",
67 "text": "Easy to use"
68 }
69 ]
70 },
71 "cons": {
72 "type": "array",
73 "default": [
74 {
75 "id": "con-1",
76 "text": "Limited color options"
77 },
78 {
79 "id": "con-2",
80 "text": "Battery life could be better"
81 }
82 ]
83 },
84 "imageUrl": {
85 "type": "string",
86 "default": ""
87 },
88 "imageId": {
89 "type": "number",
90 "default": 0
91 },
92 "price": {
93 "type": "string",
94 "default": ""
95 },
96 "priceLabel": {
97 "type": "string",
98 "default": "Price"
99 },
100 "buttonLabel": {
101 "type": "string",
102 "default": "Buy Now"
103 },
104 "buttonUrl": {
105 "type": "string",
106 "default": ""
107 },
108 "buttonStyle": {
109 "type": "string",
110 "default": "primary"
111 },
112 "schemaType": {
113 "type": "string",
114 "default": "Product"
115 },
116 "schemaEnabled": {
117 "type": "boolean",
118 "default": true
119 },
120 "skin": {
121 "type": "string",
122 "default": "bordered"
123 },
124 "starColor": {
125 "type": "string",
126 "default": "#f59e0b"
127 },
128 "proColor": {
129 "type": "string",
130 "default": "#10b981"
131 },
132 "conColor": {
133 "type": "string",
134 "default": "#ef4444"
135 },
136 "headerBg": {
137 "type": "string",
138 "default": "#f9fafb"
139 },
140 "bgColor": {
141 "type": "string",
142 "default": "#ffffff"
143 },
144 "borderColor": {
145 "type": "string",
146 "default": "#e5e7eb"
147 },
148 "borderRadius": {
149 "type": "number",
150 "default": 12
151 },
152 "scoreBg": {
153 "type": "string",
154 "default": "#2563eb"
155 },
156 "scoreColor": {
157 "type": "string",
158 "default": "#ffffff"
159 },
160 "scoreSize": {
161 "type": "number",
162 "default": 48
163 },
164 "summarySize": {
165 "type": "number",
166 "default": 14
167 },
168 "priceSize": {
169 "type": "number",
170 "default": 14
171 },
172 "priceLabelSize": {
173 "type": "number",
174 "default": 14
175 },
176 "scoreLabelSize": {
177 "type": "number",
178 "default": 10
179 },
180 "productNameSize": {
181 "type": "number",
182 "default": 22
183 },
184 "titleTypo": {
185 "type": "object",
186 "default": {}
187 },
188 "bodyTypo": {
189 "type": "object",
190 "default": {}
191 }
192 }
193 }
194