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

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/testimonials/block.json

277 lines 5.8 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/testimonials",
5 "title": "Testimonials",
6 "category": "bkbg-marketing",
7 "icon": "testimonial",
8 "description": "Customer testimonials with avatars, ratings, and beautiful layouts.",
9 "keywords": [
10 "testimonial",
11 "reviews",
12 "quote",
13 "rating",
14 "feedback"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-testimonials-editor",
18 "editorStyle": "bkbg-testimonials-style",
19 "style": "bkbg-testimonials-style",
20 "viewScript": "bkbg-testimonials-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "items": {
32 "type": "array",
33 "default": [
34 {
35 "quote": "This plugin saved us hours every week. The blocks look amazing and are super easy to customize.",
36 "name": "Alex Johnson",
37 "role": "Founder",
38 "company": "Acme Inc.",
39 "rating": 5,
40 "avatar": {
41 "id": 0,
42 "url": "",
43 "alt": ""
44 }
45 },
46 {
47 "quote": "Clean UI, great defaults, and the editor experience is really polished. Highly recommended.",
48 "name": "Maria Garcia",
49 "role": "Creative Director",
50 "company": "Studio Norte",
51 "rating": 5,
52 "avatar": {
53 "id": 0,
54 "url": "",
55 "alt": ""
56 }
57 },
58 {
59 "quote": "Finally a block set that feels native. The design controls are exactly what we needed.",
60 "name": "Sam Lee",
61 "role": "Lead Developer",
62 "company": "Bright Labs",
63 "rating": 4,
64 "avatar": {
65 "id": 0,
66 "url": "",
67 "alt": ""
68 }
69 }
70 ]
71 },
72 "layoutStyle": {
73 "type": "string",
74 "default": "grid"
75 },
76 "columns": {
77 "type": "number",
78 "default": 3
79 },
80 "gap": {
81 "type": "number",
82 "default": 24
83 },
84 "cardBg": {
85 "type": "string",
86 "default": "#ffffff"
87 },
88 "cardBorderColor": {
89 "type": "string",
90 "default": "#e5e7eb"
91 },
92 "cardBorderWidth": {
93 "type": "number",
94 "default": 1
95 },
96 "cardRadius": {
97 "type": "number",
98 "default": 16
99 },
100 "cardPadding": {
101 "type": "number",
102 "default": 24
103 },
104 "cardShadow": {
105 "type": "boolean",
106 "default": true
107 },
108 "textAlign": {
109 "type": "string",
110 "default": "left"
111 },
112 "showQuoteIcon": {
113 "type": "boolean",
114 "default": true
115 },
116 "quoteIconColor": {
117 "type": "string",
118 "default": "#3b82f6"
119 },
120 "quoteIconSize": {
121 "type": "number",
122 "default": 22
123 },
124 "quoteColor": {
125 "type": "string",
126 "default": "#111827"
127 },
128 "quoteTypo": {
129 "type": "object",
130 "default": {}
131 },
132 "nameTypo": {
133 "type": "object",
134 "default": {}
135 },
136 "roleTypo": {
137 "type": "object",
138 "default": {}
139 },
140 "showName": {
141 "type": "boolean",
142 "default": true
143 },
144 "nameColor": {
145 "type": "string",
146 "default": "#111827"
147 },
148 "showRole": {
149 "type": "boolean",
150 "default": true
151 },
152 "roleColor": {
153 "type": "string",
154 "default": "#6b7280"
155 },
156 "showCompany": {
157 "type": "boolean",
158 "default": true
159 },
160 "companyColor": {
161 "type": "string",
162 "default": "#6b7280"
163 },
164 "showRating": {
165 "type": "boolean",
166 "default": true
167 },
168 "ratingStars": {
169 "type": "number",
170 "default": 5
171 },
172 "ratingColor": {
173 "type": "string",
174 "default": "#f59e0b"
175 },
176 "ratingSize": {
177 "type": "number",
178 "default": 16
179 },
180 "featuredIndex": {
181 "type": "number",
182 "default": -1
183 },
184 "featuredBorderColor": {
185 "type": "string",
186 "default": "#3b82f6"
187 },
188 "showAvatar": {
189 "type": "boolean",
190 "default": true
191 },
192 "avatarSize": {
193 "type": "number",
194 "default": 44
195 },
196 "avatarShape": {
197 "type": "string",
198 "default": "circle"
199 },
200 "carouselPeek": {
201 "type": "boolean",
202 "default": true
203 },
204 "carouselNav": {
205 "type": "boolean",
206 "default": true
207 },
208 "carouselNavStyle": {
209 "type": "string",
210 "default": "top"
211 },
212 "carouselIndicators": {
213 "type": "string",
214 "default": "none"
215 },
216 "carouselIndicatorsPosition": {
217 "type": "string",
218 "default": "below"
219 },
220 "carouselDotsStyle": {
221 "type": "string",
222 "default": "default"
223 },
224 "carouselProgressStyle": {
225 "type": "string",
226 "default": "default"
227 },
228 "carouselIndicatorSize": {
229 "type": "number",
230 "default": 8
231 },
232 "carouselIndicatorColor": {
233 "type": "string",
234 "default": "rgba(0,0,0,0.22)"
235 },
236 "carouselIndicatorActiveColor": {
237 "type": "string",
238 "default": "rgba(0,0,0,0.65)"
239 },
240 "carouselProgressHeight": {
241 "type": "number",
242 "default": 6
243 },
244 "carouselProgressBg": {
245 "type": "string",
246 "default": "rgba(0,0,0,0.12)"
247 },
248 "carouselProgressFg": {
249 "type": "string",
250 "default": "rgba(0,0,0,0.55)"
251 },
252 "carouselFractionColor": {
253 "type": "string",
254 "default": "rgba(0,0,0,0.65)"
255 },
256 "carouselFractionSize": {
257 "type": "number",
258 "default": 13
259 },
260 "infiniteScroll": {
261 "type": "boolean",
262 "default": true
263 },
264 "autoScroll": {
265 "type": "boolean",
266 "default": false
267 },
268 "autoScrollSpeed": {
269 "type": "number",
270 "default": 40
271 },
272 "autoScrollPauseOnHover": {
273 "type": "boolean",
274 "default": true
275 }
276 }
277 }