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

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

215 lines 5.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/testimonial-marquee",
5 "title": "Testimonial Marquee",
6 "category": "bkbg-marketing",
7 "icon": "format-quote",
8 "description": "Infinite auto-scrolling testimonial ticker with star ratings, avatar images, and author details. Pause on hover.",
9 "keywords": [
10 "testimonial",
11 "review",
12 "marquee",
13 "infinite",
14 "scroll",
15 "ticker",
16 "social proof"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-testimonial-marquee-editor",
20 "style": "bkbg-testimonial-marquee-style",
21 "viewScript": "bkbg-testimonial-marquee-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "items": {
31 "type": "array",
32 "default": [
33 {
34 "quote": "This product completely changed how our team works. Couldn't imagine going back.",
35 "author": "Sarah Chen",
36 "role": "Head of Product",
37 "company": "Acme Corp",
38 "avatarUrl": "",
39 "avatarId": 0,
40 "rating": 5,
41 "companyLogo": "",
42 "companyLogoId": 0
43 },
44 {
45 "quote": "Outstanding quality and support. The onboarding was seamless and the results speak for themselves.",
46 "author": "Marcus Webb",
47 "role": "Founder & CEO",
48 "company": "Launchpad",
49 "avatarUrl": "",
50 "avatarId": 0,
51 "rating": 5,
52 "companyLogo": "",
53 "companyLogoId": 0
54 },
55 {
56 "quote": "Five stars isn't enough. We cut our workflow time in half within the first week.",
57 "author": "Priya Nair",
58 "role": "Operations Lead",
59 "company": "CloudStack",
60 "avatarUrl": "",
61 "avatarId": 0,
62 "rating": 5,
63 "companyLogo": "",
64 "companyLogoId": 0
65 },
66 {
67 "quote": "The attention to detail is unreal. Every feature feels thoughtfully designed.",
68 "author": "James Holloway",
69 "role": "Creative Director",
70 "company": "Studio Alto",
71 "avatarUrl": "",
72 "avatarId": 0,
73 "rating": 5,
74 "companyLogo": "",
75 "companyLogoId": 0
76 },
77 {
78 "quote": "We evaluated six alternatives. This was the clear winner \u2014 by a wide margin.",
79 "author": "Lena Kova\u010d",
80 "role": "VP of Engineering",
81 "company": "DevOps HQ",
82 "avatarUrl": "",
83 "avatarId": 0,
84 "rating": 5,
85 "companyLogo": "",
86 "companyLogoId": 0
87 },
88 {
89 "quote": "My team is more productive and happier. That's all I needed to know.",
90 "author": "David Torres",
91 "role": "Team Lead",
92 "company": "Momentum",
93 "avatarUrl": "",
94 "avatarId": 0,
95 "rating": 4,
96 "companyLogo": "",
97 "companyLogoId": 0
98 }
99 ]
100 },
101 "rows": {
102 "type": "number",
103 "default": 1
104 },
105 "speed": {
106 "type": "number",
107 "default": 60
108 },
109 "direction": {
110 "type": "string",
111 "default": "left"
112 },
113 "pauseOnHover": {
114 "type": "boolean",
115 "default": true
116 },
117 "showStars": {
118 "type": "boolean",
119 "default": true
120 },
121 "showAvatar": {
122 "type": "boolean",
123 "default": true
124 },
125 "showRole": {
126 "type": "boolean",
127 "default": true
128 },
129 "showCompany": {
130 "type": "boolean",
131 "default": true
132 },
133 "showCompanyLogo": {
134 "type": "boolean",
135 "default": false
136 },
137 "fadeEdges": {
138 "type": "boolean",
139 "default": true
140 },
141 "cardWidth": {
142 "type": "number",
143 "default": 340
144 },
145 "cardGap": {
146 "type": "number",
147 "default": 20
148 },
149 "cardRadius": {
150 "type": "number",
151 "default": 14
152 },
153 "cardPadding": {
154 "type": "number",
155 "default": 24
156 },
157
158 "avatarSize": {
159 "type": "number",
160 "default": 44
161 },
162 "paddingY": {
163 "type": "number",
164 "default": 40
165 },
166 "wrapperBg": {
167 "type": "string",
168 "default": ""
169 },
170 "cardBg": {
171 "type": "string",
172 "default": "#ffffff"
173 },
174 "cardBorder": {
175 "type": "string",
176 "default": "#e5e7eb"
177 },
178 "cardShadow": {
179 "type": "string",
180 "default": "sm"
181 },
182 "quoteColor": {
183 "type": "string",
184 "default": "#374151"
185 },
186 "starColor": {
187 "type": "string",
188 "default": "#f59e0b"
189 },
190 "authorColor": {
191 "type": "string",
192 "default": "#111827"
193 },
194 "roleColor": {
195 "type": "string",
196 "default": "#6b7280"
197 },
198 "quoteIconColor": {
199 "type": "string",
200 "default": "#e0e7ff"
201 },
202 "quoteTypo": {
203 "type": "object",
204 "default": {}
205 },
206 "nameTypo": {
207 "type": "object",
208 "default": {}
209 },
210 "roleTypo": {
211 "type": "object",
212 "default": {}
213 }
214 }
215 }