PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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-card / block.json

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

164 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/reading-card",
5 "title": "Reading Card",
6 "category": "bkbg-blog",
7 "icon": "book",
8 "description": "Book, article, podcast or course recommendation card with cover image, rating, category badge and CTA link. Multiple visual styles.",
9 "keywords": [
10 "book",
11 "reading",
12 "recommend",
13 "resource",
14 "podcast",
15 "course",
16 "card"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-reading-card-editor",
20 "style": "bkbg-reading-card-style",
21 "viewScript": "bkbg-reading-card-frontend",
22 "attributes": {
23 "coverUrl": {
24 "type": "string",
25 "default": ""
26 },
27 "coverId": {
28 "type": "number",
29 "default": 0
30 },
31 "coverAlt": {
32 "type": "string",
33 "default": ""
34 },
35 "contentType": {
36 "type": "string",
37 "default": "book"
38 },
39 "badge": {
40 "type": "string",
41 "default": ""
42 },
43 "title": {
44 "type": "string",
45 "default": "The Design of Everyday Things"
46 },
47 "author": {
48 "type": "string",
49 "default": "Don Norman"
50 },
51 "description": {
52 "type": "string",
53 "default": "A classic read on user-centered design, explaining how design communicates and guides user behavior through affordances and feedback."
54 },
55 "rating": {
56 "type": "number",
57 "default": 5
58 },
59 "showRating": {
60 "type": "boolean",
61 "default": true
62 },
63 "ctaLabel": {
64 "type": "string",
65 "default": "Get the book →"
66 },
67 "ctaUrl": {
68 "type": "string",
69 "default": "#"
70 },
71 "ctaIsExternal": {
72 "type": "boolean",
73 "default": true
74 },
75 "layout": {
76 "type": "string",
77 "default": "horizontal"
78 },
79 "badgeColor": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "badgeBg": {
84 "type": "string",
85 "default": "#7c3aed"
86 },
87 "titleColor": {
88 "type": "string",
89 "default": "#111827"
90 },
91 "authorColor": {
92 "type": "string",
93 "default": "#6b7280"
94 },
95 "descColor": {
96 "type": "string",
97 "default": "#374151"
98 },
99 "ratingColor": {
100 "type": "string",
101 "default": "#f59e0b"
102 },
103 "ctaBg": {
104 "type": "string",
105 "default": "transparent"
106 },
107 "ctaColor": {
108 "type": "string",
109 "default": "#7c3aed"
110 },
111 "bgColor": {
112 "type": "string",
113 "default": "#ffffff"
114 },
115 "borderColor": {
116 "type": "string",
117 "default": "#e5e7eb"
118 },
119 "accentColor": {
120 "type": "string",
121 "default": "#7c3aed"
122 },
123 "titleTypo": {
124 "type": "object",
125 "default": {}
126 },
127 "authorTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "descTypo": {
132 "type": "object",
133 "default": {}
134 },
135 "coverWidth": {
136 "type": "number",
137 "default": 120
138 },
139 "borderRadius": {
140 "type": "number",
141 "default": 12
142 },
143 "maxWidth": {
144 "type": "number",
145 "default": 720
146 },
147 "paddingTop": {
148 "type": "number",
149 "default": 32
150 },
151 "paddingBottom": {
152 "type": "number",
153 "default": 32
154 }
155 },
156 "supports": {
157 "html": false,
158 "align": [
159 "wide",
160 "full"
161 ]
162 }
163 }
164