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 / testimonial-carousel / block.json

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

130 lines 2.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/testimonial-carousel",
5 "title": "Testimonial Carousel",
6 "category": "bkbg-marketing",
7 "icon": "format-quote",
8 "description": "Auto-playing testimonial slider with stars, avatars, and dot/arrow navigation.",
9 "keywords": [
10 "testimonial",
11 "carousel",
12 "slider",
13 "review",
14 "quote",
15 "autoplay"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-testimonial-carousel-editor",
19 "editorStyle": "bkbg-testimonial-carousel-style",
20 "style": "bkbg-testimonial-carousel-style",
21 "viewScript": "bkbg-testimonial-carousel-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "items": {
33 "type": "array",
34 "default": [
35 {
36 "quote": "Absolutely transformed the way we work. Highly recommended!",
37 "author": "Sarah Johnson",
38 "role": "CEO, TechCorp",
39 "avatarUrl": "",
40 "avatarId": 0,
41 "stars": 5
42 },
43 {
44 "quote": "The best product I've ever used. Support is phenomenal.",
45 "author": "Michael Chen",
46 "role": "Designer, Studio X",
47 "avatarUrl": "",
48 "avatarId": 0,
49 "stars": 5
50 },
51 {
52 "quote": "Five stars, no question. It just works perfectly every time.",
53 "author": "Emily Davis",
54 "role": "Founder, GrowthLab",
55 "avatarUrl": "",
56 "avatarId": 0,
57 "stars": 4
58 }
59 ]
60 },
61 "autoplay": {
62 "type": "boolean",
63 "default": true
64 },
65 "speed": {
66 "type": "number",
67 "default": 3500
68 },
69 "pauseOnHover": {
70 "type": "boolean",
71 "default": true
72 },
73 "loop": {
74 "type": "boolean",
75 "default": true
76 },
77 "showArrows": {
78 "type": "boolean",
79 "default": true
80 },
81 "showDots": {
82 "type": "boolean",
83 "default": true
84 },
85 "showStars": {
86 "type": "boolean",
87 "default": true
88 },
89 "cardAlign": {
90 "type": "string",
91 "default": "center"
92 },
93 "bgColor": {
94 "type": "string",
95 "default": "#f8f7ff"
96 },
97 "cardBg": {
98 "type": "string",
99 "default": "#ffffff"
100 },
101 "textColor": {
102 "type": "string",
103 "default": "#222222"
104 },
105 "accentColor": {
106 "type": "string",
107 "default": "#6c3fb5"
108 },
109 "starColor": {
110 "type": "string",
111 "default": "#f5a623"
112 },
113 "borderRadius": {
114 "type": "number",
115 "default": 16
116 },
117 "cardPadding": {
118 "type": "number",
119 "default": 36
120 },
121 "quoteTypo": {
122 "type": "object",
123 "default": {}
124 },
125 "nameTypo": {
126 "type": "object",
127 "default": {}
128 }
129 }
130 }