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

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

197 lines 5.4 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/video-testimonial",
5 "version": "1.0.0",
6 "title": "Video Testimonial",
7 "category": "bkbg-marketing",
8 "icon": "video-alt3",
9 "description": "Testimonial cards with embedded YouTube/Vimeo video, star rating, quote, and author. Builds deep social proof with video evidence.",
10 "keywords": [
11 "testimonial",
12 "review",
13 "video",
14 "youtube",
15 "vimeo",
16 "social proof",
17 "customer"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-video-testimonial-editor",
21 "editorStyle": "bkbg-video-testimonial-style",
22 "style": "bkbg-video-testimonial-style",
23 "viewScript": "bkbg-video-testimonial-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "items": {
35 "type": "array",
36 "default": [
37 {
38 "id": "vt1",
39 "videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
40 "thumbnailUrl": "",
41 "thumbnailId": 0,
42 "quote": "This completely transformed how our team works. We shipped 3x faster in the first month alone.",
43 "author": "Sarah Johnson",
44 "role": "Head of Product",
45 "company": "Acme Corp",
46 "rating": 5
47 },
48 {
49 "id": "vt2",
50 "videoUrl": "https://vimeo.com/76979871",
51 "thumbnailUrl": "",
52 "thumbnailId": 0,
53 "quote": "I was skeptical at first but the results speak for themselves. Our conversion rate went up 40%.",
54 "author": "Marcus Lee",
55 "role": "Founder",
56 "company": "Bloop AI",
57 "rating": 5
58 },
59 {
60 "id": "vt3",
61 "videoUrl": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
62 "thumbnailUrl": "",
63 "thumbnailId": 0,
64 "quote": "The best investment we made this year. Onboarding took 20 minutes and we were live the same day.",
65 "author": "Priya Mehta",
66 "role": "CTO",
67 "company": "NovaTech",
68 "rating": 5
69 }
70 ],
71 "items": {
72 "type": "object"
73 }
74 },
75 "layout": {
76 "type": "string",
77 "default": "grid"
78 },
79 "columns": {
80 "type": "number",
81 "default": 3
82 },
83 "gap": {
84 "type": "number",
85 "default": 24
86 },
87 "showRating": {
88 "type": "boolean",
89 "default": true
90 },
91 "showQuote": {
92 "type": "boolean",
93 "default": true
94 },
95 "showRole": {
96 "type": "boolean",
97 "default": true
98 },
99 "showCompany": {
100 "type": "boolean",
101 "default": true
102 },
103 "videoAspect": {
104 "type": "string",
105 "default": "16/9"
106 },
107 "cardRadius": {
108 "type": "number",
109 "default": 14
110 },
111 "cardPadding": {
112 "type": "number",
113 "default": 24
114 },
115 "cardShadow": {
116 "type": "string",
117 "default": "md"
118 },
119 "quoteSize": {
120 "type": "number",
121 "default": 15
122 },
123 "authorSize": {
124 "type": "number",
125 "default": 15
126 },
127 "roleSize": {
128 "type": "number",
129 "default": 13
130 },
131 "quoteTypo": {
132 "type": "object",
133 "default": {}
134 },
135 "authorTypo": {
136 "type": "object",
137 "default": {}
138 },
139 "roleTypo": {
140 "type": "object",
141 "default": {}
142 },
143 "starSize": {
144 "type": "number",
145 "default": 16
146 },
147 "starColor": {
148 "type": "string",
149 "default": "#f59e0b"
150 },
151 "accentColor": {
152 "type": "string",
153 "default": "#6c3fb5"
154 },
155 "cardBg": {
156 "type": "string",
157 "default": "#ffffff"
158 },
159 "quoteColor": {
160 "type": "string",
161 "default": "#374151"
162 },
163 "authorColor": {
164 "type": "string",
165 "default": "#111827"
166 },
167 "roleColor": {
168 "type": "string",
169 "default": "#6b7280"
170 },
171 "playIconColor": {
172 "type": "string",
173 "default": "#ffffff"
174 },
175 "overlayBg": {
176 "type": "string",
177 "default": "rgba(0,0,0,0.38)"
178 },
179 "animate": {
180 "type": "boolean",
181 "default": true
182 },
183 "bgColor": {
184 "type": "string",
185 "default": ""
186 },
187 "paddingTop": {
188 "type": "number",
189 "default": 40
190 },
191 "paddingBottom": {
192 "type": "number",
193 "default": 40
194 }
195 }
196 }
197