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

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

216 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/book-review",
5 "title": "Book Review",
6 "category": "bkbg-blog",
7 "icon": "book",
8 "description": "Rich book review block with cover image, star rating, details grid, pros & cons, and Schema.org Book + Review structured data for SEO.",
9 "keywords": [
10 "book",
11 "review",
12 "rating",
13 "schema",
14 "literature",
15 "read"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-book-review-editor",
19 "style": "bkbg-book-review-style",
20 "viewScript": "bkbg-book-review-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "bookTitle": {
32 "type": "string",
33 "default": "The Great Gatsby"
34 },
35 "bookAuthor": {
36 "type": "string",
37 "default": "F. Scott Fitzgerald"
38 },
39 "genre": {
40 "type": "string",
41 "default": "Classic Fiction"
42 },
43 "publisher": {
44 "type": "string",
45 "default": "Scribner"
46 },
47 "publishYear": {
48 "type": "string",
49 "default": "1925"
50 },
51 "pages": {
52 "type": "string",
53 "default": "180"
54 },
55 "isbn": {
56 "type": "string",
57 "default": ""
58 },
59 "coverUrl": {
60 "type": "string",
61 "default": ""
62 },
63 "coverAlt": {
64 "type": "string",
65 "default": ""
66 },
67 "rating": {
68 "type": "number",
69 "default": 4
70 },
71 "maxRating": {
72 "type": "number",
73 "default": 5
74 },
75 "ratingLabel": {
76 "type": "string",
77 "default": "Our Rating"
78 },
79 "summary": {
80 "type": "string",
81 "default": "A tale of wealth, love, and the American Dream set in the roaring twenties. Fitzgerald's prose is lyrical and deeply evocative, painting a picture of a society obsessed with status and illusion."
82 },
83 "pros": {
84 "type": "array",
85 "default": [
86 "Beautiful, poetic prose",
87 "Complex, memorable characters",
88 "Rich thematic depth"
89 ]
90 },
91 "cons": {
92 "type": "array",
93 "default": [
94 "Short and may feel rushed",
95 "Some readers find Gatsby unsympathetic"
96 ]
97 },
98 "showDetails": {
99 "type": "boolean",
100 "default": true
101 },
102 "showPros": {
103 "type": "boolean",
104 "default": true
105 },
106 "showCons": {
107 "type": "boolean",
108 "default": true
109 },
110 "showBtn": {
111 "type": "boolean",
112 "default": true
113 },
114 "showSchema": {
115 "type": "boolean",
116 "default": true
117 },
118 "btnText": {
119 "type": "string",
120 "default": "Buy on Amazon"
121 },
122 "btnUrl": {
123 "type": "string",
124 "default": "#"
125 },
126 "btnTarget": {
127 "type": "boolean",
128 "default": true
129 },
130 "accentColor": {
131 "type": "string",
132 "default": "#6c3fb5"
133 },
134 "cardBg": {
135 "type": "string",
136 "default": "#ffffff"
137 },
138 "headerBg": {
139 "type": "string",
140 "default": "#f5f3ff"
141 },
142 "borderColor": {
143 "type": "string",
144 "default": "#e5e7eb"
145 },
146 "titleColor": {
147 "type": "string",
148 "default": "#1e1b4b"
149 },
150 "authorColor": {
151 "type": "string",
152 "default": "#6c3fb5"
153 },
154 "bodyColor": {
155 "type": "string",
156 "default": "#374151"
157 },
158 "starColor": {
159 "type": "string",
160 "default": "#f59e0b"
161 },
162 "prosColor": {
163 "type": "string",
164 "default": "#15803d"
165 },
166 "consColor": {
167 "type": "string",
168 "default": "#b91c1c"
169 },
170 "detailLabelClr": {
171 "type": "string",
172 "default": "#9ca3af"
173 },
174 "btnBg": {
175 "type": "string",
176 "default": "#6c3fb5"
177 },
178 "btnColor": {
179 "type": "string",
180 "default": "#ffffff"
181 },
182 "titleSize": {
183 "type": "number",
184 "default": 24
185 },
186 "bodySize": {
187 "type": "number",
188 "default": 15
189 },
190 "cardRadius": {
191 "type": "number",
192 "default": 16
193 },
194 "btnRadius": {
195 "type": "number",
196 "default": 8
197 },
198 "coverWidth": {
199 "type": "number",
200 "default": 160
201 },
202 "maxWidth": {
203 "type": "number",
204 "default": 860
205 },
206 "typoTitle": {
207 "type": "object",
208 "default": {}
209 },
210 "typoBody": {
211 "type": "object",
212 "default": {}
213 }
214 }
215 }
216