PluginProbe ʕ •ᴥ•ʔ
Author Website Templates – Create Writer, Author & Publisher Websites Easily / 1.1.9
Author Website Templates – Create Writer, Author & Publisher Websites Easily v1.1.9
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9
author-website-templates / build / blocks / child-author / book-details / block.json
author-website-templates / build / blocks / child-author / book-details Last commit date
block.json 1 month ago index.asset.php 1 month ago index.js 1 month ago render.php 1 month ago
block.json
110 lines
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "awt/child-author-book-details",
5 "title": "Book Details (Child Author)",
6 "category": "awt-blocks",
7 "icon": "book-alt",
8 "description": "Display detailed information about a single book with toggleable sections",
9 "editorScript": "file:./index.js",
10 "keywords": [
11 "book",
12 "details",
13 "single",
14 "meta"
15 ],
16 "supports": {
17 "html": false,
18 "color": false,
19 "typography": false,
20 "spacing": false,
21 "align": [
22 "full"
23 ],
24 "alignWide": true
25 },
26 "attributes": {
27 "align": {
28 "type": "string",
29 "default": "full"
30 },
31 "detailsStyle": {
32 "type": "string",
33 "default": "fun"
34 },
35 "showGallery": {
36 "type": "boolean",
37 "default": true
38 },
39 "showMeta": {
40 "type": "boolean",
41 "default": true
42 },
43 "showBuyButtons": {
44 "type": "boolean",
45 "default": true
46 },
47 "showDescription": {
48 "type": "boolean",
49 "default": true
50 },
51 "showPrice": {
52 "type": "boolean",
53 "default": true
54 },
55 "showFormats": {
56 "type": "boolean",
57 "default": true
58 },
59 "sectionBgColor": {
60 "type": "string",
61 "default": "#FFFDF5"
62 },
63 "titleColor": {
64 "type": "string",
65 "default": "#264653"
66 },
67 "accentColor": {
68 "type": "string",
69 "default": "#EF476F"
70 },
71 "btnBgColor": {
72 "type": "string",
73 "default": "#FFD166"
74 },
75 "labelBack": {
76 "type": "string",
77 "default": "Back to All Books"
78 },
79 "labelLatest": {
80 "type": "string",
81 "default": "Latest Release!"
82 },
83 "labelIllustrated": {
84 "type": "string",
85 "default": "Illustrated by"
86 },
87 "labelOrder": {
88 "type": "string",
89 "default": "Order Your Copy!"
90 },
91 "labelPeek": {
92 "type": "string",
93 "default": "A Peek Inside!"
94 },
95 "labelAbout": {
96 "type": "string",
97 "default": "About the Book"
98 },
99 "labelDetails": {
100 "type": "string",
101 "default": "Book Details"
102 },
103 "bookId": {
104 "type": "string",
105 "default": ""
106 }
107 },
108 "render": "file:./render.php",
109 "style": "file:./index.css"
110 }