PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / 2.1.4
bBlocks – Essential Gutenberg Blocks & Patterns Collection v2.1.4
2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 106 releases
b-blocks / build / posts / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection 2.1.4, at build/posts/block.json

541 lines 10.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "b-blocks/posts",
4 "title": "Posts",
5 "description": "Display blog posts.",
6 "category": "bBlocks",
7 "keywords": [
8 "Show Posts",
9 "Blog Posts",
10 "Category Posts"
11 ],
12 "textdomain": "b-blocks",
13 "attributes": {
14 "align": {
15 "type": "string",
16 "default": "wide"
17 },
18 "layout": {
19 "type": "string",
20 "default": "grid"
21 },
22 "subLayout": {
23 "type": "string",
24 "default": "default"
25 },
26 "columns": {
27 "type": "object",
28 "default": {
29 "desktop": 3,
30 "tablet": 2,
31 "mobile": 1
32 }
33 },
34 "columnGap": {
35 "type": "number",
36 "default": 15
37 },
38 "rowGap": {
39 "type": "number",
40 "default": 15
41 },
42 "isContentEqualHight": {
43 "type": "boolean",
44 "default": true
45 },
46 "sliderHeight": {
47 "type": "string",
48 "default": "350px"
49 },
50 "content": {
51 "type": "object",
52 "default": {
53 "height": "auto"
54 }
55 },
56 "postType": {
57 "type": "string",
58 "default": "post"
59 },
60 "selectedTaxonomies": {
61 "type": "object",
62 "default": {}
63 },
64 "selectedCategories": {
65 "type": "array",
66 "default": []
67 },
68 "selectedTags": {
69 "type": "array",
70 "default": []
71 },
72 "isPostsPerPageAll": {
73 "type": "boolean",
74 "default": false
75 },
76 "postsPerPage": {
77 "type": "number",
78 "default": 12
79 },
80 "postsOrderBy": {
81 "type": "string",
82 "default": "date"
83 },
84 "postsOrder": {
85 "type": "string",
86 "default": "desc"
87 },
88 "postsOffset": {
89 "type": "number",
90 "default": 0
91 },
92 "postsInclude": {
93 "type": "array",
94 "default": []
95 },
96 "postsExclude": {
97 "type": "array",
98 "default": []
99 },
100 "isExcludeCurrent": {
101 "type": "boolean",
102 "default": false
103 },
104 "isPagination": {
105 "type": "boolean",
106 "default": false
107 },
108 "paginationCurrentPage": {
109 "type": "number",
110 "default": 1
111 },
112 "paginationPrevLabel": {
113 "type": "string",
114 "default": "Prev"
115 },
116 "paginationNextLabel": {
117 "type": "string",
118 "default": "Next"
119 },
120 "paginationColors": {
121 "type": "object",
122 "default": {
123 "color": "#fff",
124 "bg": "#146EF5"
125 }
126 },
127 "paginationHovColors": {
128 "type": "object",
129 "default": {
130 "color": "#fff",
131 "bg": "#070127"
132 }
133 },
134 "paginationPadding": {
135 "type": "object",
136 "default": {
137 "vertical": "8px",
138 "horizontal": "15px"
139 }
140 },
141 "paginationSpacing": {
142 "type": "string",
143 "default": "15px"
144 },
145 "contentAlign": {
146 "type": "string",
147 "default": "left"
148 },
149 "contentBG": {
150 "type": "object",
151 "default": {
152 "color": ""
153 }
154 },
155 "contentPadding": {
156 "type": "object",
157 "default": {
158 "vertical": "20px",
159 "horizontal": "25px"
160 }
161 },
162 "border": {
163 "type": "object",
164 "default": {
165 "width": "1px",
166 "color": "#0c0d3c1a",
167 "radius": "5px"
168 }
169 },
170 "sliderIsLoop": {
171 "type": "boolean",
172 "default": true
173 },
174 "sliderIsTouchMove": {
175 "type": "boolean",
176 "default": false
177 },
178 "sliderIsAutoplay": {
179 "type": "boolean",
180 "default": true
181 },
182 "sliderAutoplayOptions": {
183 "type": "object",
184 "default": {
185 "delay": 1.5
186 }
187 },
188 "sliderSpeed": {
189 "type": "number",
190 "default": 1.5
191 },
192 "sliderEffect": {
193 "type": "string",
194 "default": "slide"
195 },
196 "sliderIsPage": {
197 "type": "boolean",
198 "default": true
199 },
200 "sliderIsPageClickable": {
201 "type": "boolean",
202 "default": true
203 },
204 "sliderIsPageDynamic": {
205 "type": "boolean",
206 "default": true
207 },
208 "sliderPageColor": {
209 "type": "string",
210 "default": "#146EF5"
211 },
212 "sliderPageWidth": {
213 "type": "string",
214 "default": "15px"
215 },
216 "sliderPageHeight": {
217 "type": "string",
218 "default": "15px"
219 },
220 "sliderPageBorder": {
221 "type": "object",
222 "default": {
223 "radius": "50%"
224 }
225 },
226 "sliderIsPrevNext": {
227 "type": "boolean",
228 "default": true
229 },
230 "sliderPrevNextColor": {
231 "type": "string",
232 "default": "#146EF5"
233 },
234 "tickerDirection": {
235 "type": "string",
236 "default": "up"
237 },
238 "tickerSpeed": {
239 "type": "string",
240 "default": "slow"
241 },
242 "tickerInterval": {
243 "type": "number",
244 "default": 2000
245 },
246 "tickerHeight": {
247 "type": "string",
248 "default": "0px"
249 },
250 "tickerVisible": {
251 "type": "number",
252 "default": 3
253 },
254 "tickerIsMousePause": {
255 "type": "boolean",
256 "default": true
257 },
258 "elementsSort": {
259 "type": "array",
260 "default": [
261 "title",
262 "meta"
263 ]
264 },
265 "isFImg": {
266 "type": "boolean",
267 "default": true
268 },
269 "fImgSize": {
270 "type": "string",
271 "default": "full"
272 },
273 "fImgFitting": {
274 "type": "string",
275 "default": "cover"
276 },
277 "isFImgLink": {
278 "type": "boolean",
279 "default": false
280 },
281 "isTitle": {
282 "type": "boolean",
283 "default": true
284 },
285 "isTitleLink": {
286 "type": "boolean",
287 "default": true
288 },
289 "titleTypo": {
290 "type": "object",
291 "default": {
292 "fontFamily": "Roboto",
293 "fontSize": {
294 "desktop": "25px",
295 "tablet": "22px",
296 "mobile": "20px"
297 },
298 "googleFontLink": "https://fonts.googleapis.com/css2?family=Roboto&display=swap"
299 }
300 },
301 "titleColor": {
302 "type": "string",
303 "default": ""
304 },
305 "titleMargin": {
306 "type": "object",
307 "default": {
308 "side": 4,
309 "bottom": "15px"
310 }
311 },
312 "isMeta": {
313 "type": "boolean",
314 "default": true
315 },
316 "isMetaAuthor": {
317 "type": "boolean",
318 "default": true
319 },
320 "isMetaAuthorLink": {
321 "type": "boolean",
322 "default": true
323 },
324 "metaAuthorIcon": {
325 "type": "string",
326 "default": ""
327 },
328 "isMetaDate": {
329 "type": "boolean",
330 "default": true
331 },
332 "metaDateFormat": {
333 "type": "string",
334 "default": "M j, Y"
335 },
336 "metaDateIcon": {
337 "type": "string",
338 "default": ""
339 },
340 "isMetaCategory": {
341 "type": "boolean",
342 "default": true
343 },
344 "metaCategoryIn": {
345 "type": "string",
346 "default": "content"
347 },
348 "metaCategoryIcon": {
349 "type": "string",
350 "default": ""
351 },
352 "metaTaxonomies": {
353 "type": "object",
354 "default": {
355 "selected": []
356 }
357 },
358 "isMetaReadTime": {
359 "type": "boolean",
360 "default": false
361 },
362 "metaReadTimeIcon": {
363 "type": "string",
364 "default": ""
365 },
366 "isMetaReadTimeSec": {
367 "type": "boolean",
368 "default": false
369 },
370 "metaReadTimeLabel": {
371 "type": "string",
372 "default": "Min read"
373 },
374 "isMetaComment": {
375 "type": "boolean",
376 "default": false
377 },
378 "metaCommentIcon": {
379 "type": "string",
380 "default": ""
381 },
382 "metaTypo": {
383 "type": "object",
384 "default": {
385 "fontSize": {
386 "desktop": "13px"
387 },
388 "textTransform": "uppercase"
389 }
390 },
391 "metaTextColor": {
392 "type": "string",
393 "default": ""
394 },
395 "metaLinkColor": {
396 "type": "string",
397 "default": "#146EF5"
398 },
399 "metaIconColor": {
400 "type": "string",
401 "default": ""
402 },
403 "metaColorsOnImage": {
404 "type": "object",
405 "default": {
406 "color": "#fff",
407 "bg": "#146EF5"
408 }
409 },
410 "metaMargin": {
411 "type": "object",
412 "default": {
413 "side": 4,
414 "bottom": "15px"
415 }
416 },
417 "isExcerpt": {
418 "type": "boolean",
419 "default": true
420 },
421 "isExcerptFromContent": {
422 "type": "boolean",
423 "default": false
424 },
425 "isEllipsisOnExcerpt": {
426 "type": "boolean",
427 "default": false
428 },
429 "excerptLength": {
430 "type": "number",
431 "default": 25
432 },
433 "excerptAlign": {
434 "type": "string",
435 "default": "justify"
436 },
437 "excerptTypo": {
438 "type": "object",
439 "default": {
440 "fontSize": {
441 "desktop": "15px"
442 }
443 }
444 },
445 "excerptColor": {
446 "type": "string",
447 "default": ""
448 },
449 "excerptMargin": {
450 "type": "object",
451 "default": {
452 "side": 4,
453 "bottom": "10px"
454 }
455 },
456 "isReadMore": {
457 "type": "boolean",
458 "default": true
459 },
460 "readMorePosition": {
461 "type": "string",
462 "default": "auto"
463 },
464 "readMoreLabel": {
465 "type": "string",
466 "default": "Read More"
467 },
468 "isLinkNewTab": {
469 "type": "boolean",
470 "default": false
471 },
472 "readMoreAlign": {
473 "type": "string",
474 "default": "left"
475 },
476 "readMoreTypo": {
477 "type": "object",
478 "default": {
479 "fontSize": {
480 "desktop": "14px"
481 },
482 "textTransform": "uppercase",
483 "fontWeight": 600
484 }
485 },
486 "readMoreColors": {
487 "type": "object",
488 "default": {
489 "color": "#fff",
490 "bg": "#146EF5"
491 }
492 },
493 "readMoreHovColors": {
494 "type": "object",
495 "default": {
496 "color": "#fff",
497 "bg": "#FF7A00"
498 }
499 },
500 "readMorePadding": {
501 "type": "object",
502 "default": {
503 "vertical": "12px",
504 "horizontal": "35px"
505 }
506 },
507 "readMoreBorder": {
508 "type": "object",
509 "default": {
510 "radius": "3px"
511 }
512 }
513 },
514 "supports": {
515 "align": [
516 "wide",
517 "full"
518 ],
519 "html": false
520 },
521 "example": {
522 "attributes": {
523 "preview": true,
524 "columns": {
525 "desktop": 1,
526 "tablet": 1,
527 "mobile": 1
528 }
529 }
530 },
531 "editorScript": "file:../index.js",
532 "style": [
533 "file:./view.css",
534 "dashicons"
535 ],
536 "render": "file:./render.php",
537 "viewScript": [
538 "file:./view.js",
539 "wp-util"
540 ]
541 }