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

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

244 lines 6.9 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/reading-list",
5 "title": "Reading List",
6 "category": "bkbg-blog",
7 "icon": "book",
8 "description": "Curated book or article reading list with cover image, title, author, genre, star rating, read-status badge (Reading / Read / Want to Read / Recommended), description, and optional link.",
9 "keywords": [
10 "reading",
11 "books",
12 "list",
13 "library",
14 "articles",
15 "recommendations",
16 "bookshelf"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-reading-list-editor",
20 "style": "bkbg-reading-list-style",
21 "viewScript": "bkbg-reading-list-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "My Reading List"
35 },
36 "showTitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "subtitle": {
41 "type": "string",
42 "default": "Books and articles I recommend."
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "books": {
49 "type": "array",
50 "default": [
51 {
52 "id": "b1",
53 "title": "Atomic Habits",
54 "author": "James Clear",
55 "genre": "Self-Help",
56 "year": "2018",
57 "rating": 5,
58 "status": "read",
59 "description": "A practical guide to building good habits and breaking bad ones through small, incremental changes.",
60 "coverUrl": "",
61 "coverId": 0,
62 "url": ""
63 },
64 {
65 "id": "b2",
66 "title": "The Lean Startup",
67 "author": "Eric Ries",
68 "genre": "Business",
69 "year": "2011",
70 "rating": 5,
71 "status": "read",
72 "description": "How today's entrepreneurs use continuous innovation to create radically successful businesses.",
73 "coverUrl": "",
74 "coverId": 0,
75 "url": ""
76 },
77 {
78 "id": "b3",
79 "title": "Deep Work",
80 "author": "Cal Newport",
81 "genre": "Productivity",
82 "year": "2016",
83 "rating": 4,
84 "status": "read",
85 "description": "Rules for focused success in a distracted world. A compelling argument for doing fewer things with more intensity.",
86 "coverUrl": "",
87 "coverId": 0,
88 "url": ""
89 },
90 {
91 "id": "b4",
92 "title": "Shape Up",
93 "author": "Ryan Singer",
94 "genre": "Product",
95 "year": "2019",
96 "rating": 4,
97 "status": "reading",
98 "description": "Stop running in circles and ship work that matters — Basecamp's product development methodology.",
99 "coverUrl": "",
100 "coverId": 0,
101 "url": ""
102 },
103 {
104 "id": "b5",
105 "title": "The Pragmatic Programmer",
106 "author": "David Thomas, Andrew Hunt",
107 "genre": "Tech",
108 "year": "2019",
109 "rating": 5,
110 "status": "want-to-read",
111 "description": "Your journey to mastery — timeless tips for programmers at every level.",
112 "coverUrl": "",
113 "coverId": 0,
114 "url": ""
115 }
116 ]
117 },
118 "layout": {
119 "type": "string",
120 "default": "list"
121 },
122 "columns": {
123 "type": "number",
124 "default": 3
125 },
126 "showCover": {
127 "type": "boolean",
128 "default": true
129 },
130 "showRating": {
131 "type": "boolean",
132 "default": true
133 },
134 "showStatus": {
135 "type": "boolean",
136 "default": true
137 },
138 "showGenre": {
139 "type": "boolean",
140 "default": true
141 },
142 "showYear": {
143 "type": "boolean",
144 "default": true
145 },
146 "showDescription": {
147 "type": "boolean",
148 "default": true
149 },
150 "showLink": {
151 "type": "boolean",
152 "default": true
153 },
154 "linkLabel": {
155 "type": "string",
156 "default": "View →"
157 },
158 "filterByStatus": {
159 "type": "boolean",
160 "default": false
161 },
162 "accentColor": {
163 "type": "string",
164 "default": "#6c3fb5"
165 },
166 "titleColor": {
167 "type": "string",
168 "default": "#1e1b4b"
169 },
170 "subtitleColor": {
171 "type": "string",
172 "default": "#6b7280"
173 },
174 "bookTitleColor": {
175 "type": "string",
176 "default": "#1e1b4b"
177 },
178 "authorColor": {
179 "type": "string",
180 "default": "#6c3fb5"
181 },
182 "genreColor": {
183 "type": "string",
184 "default": "#6b7280"
185 },
186 "descColor": {
187 "type": "string",
188 "default": "#374151"
189 },
190 "starColor": {
191 "type": "string",
192 "default": "#f59e0b"
193 },
194 "cardBg": {
195 "type": "string",
196 "default": "#ffffff"
197 },
198 "cardBorder": {
199 "type": "string",
200 "default": "#e5e7eb"
201 },
202 "linkColor": {
203 "type": "string",
204 "default": "#6c3fb5"
205 },
206 "bgColor": {
207 "type": "string",
208 "default": ""
209 },
210 "titleTypo": {
211 "type": "object",
212 "default": {}
213 },
214 "bookTitleTypo": {
215 "type": "object",
216 "default": {}
217 },
218 "metaTypo": {
219 "type": "object",
220 "default": {}
221 },
222 "cardRadius": {
223 "type": "number",
224 "default": 14
225 },
226 "coverHeight": {
227 "type": "number",
228 "default": 180
229 },
230 "gap": {
231 "type": "number",
232 "default": 20
233 },
234 "paddingTop": {
235 "type": "number",
236 "default": 60
237 },
238 "paddingBottom": {
239 "type": "number",
240 "default": 60
241 }
242 }
243 }
244