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

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

154 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/testimonial-inline",
4 "title": "Testimonial Card",
5 "category": "bkbg-marketing",
6 "icon": "format-quote",
7 "description": "A single embeddable testimonial card with photo, quote, rating, and platform badge. Place it anywhere in your content.",
8 "keywords": [
9 "testimonial",
10 "quote",
11 "review",
12 "card",
13 "inline",
14 "social proof",
15 "customer"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-testimonial-inline-editor",
19 "editorStyle": "bkbg-testimonial-inline-style",
20 "style": "bkbg-testimonial-inline-style",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "quote": {
30 "type": "string",
31 "default": "This is hands-down the best tool we've used. Our team's productivity has increased by 40% since switching."
32 },
33 "name": {
34 "type": "string",
35 "default": "Sarah Chen"
36 },
37 "role": {
38 "type": "string",
39 "default": "Head of Marketing"
40 },
41 "company": {
42 "type": "string",
43 "default": "Acme Corp"
44 },
45 "showCompany": {
46 "type": "boolean",
47 "default": true
48 },
49 "showPhoto": {
50 "type": "boolean",
51 "default": true
52 },
53 "photoUrl": {
54 "type": "string",
55 "default": ""
56 },
57 "photoId": {
58 "type": "number",
59 "default": 0
60 },
61 "photoSize": {
62 "type": "number",
63 "default": 52
64 },
65 "rating": {
66 "type": "number",
67 "default": 5
68 },
69 "showRating": {
70 "type": "boolean",
71 "default": true
72 },
73 "platform": {
74 "type": "string",
75 "default": "none"
76 },
77 "showPlatform": {
78 "type": "boolean",
79 "default": false
80 },
81 "style": {
82 "type": "string",
83 "default": "card"
84 },
85 "align": {
86 "type": "string",
87 "default": "left"
88 },
89 "maxWidth": {
90 "type": "number",
91 "default": 640
92 },
93 "showQuoteMark": {
94 "type": "boolean",
95 "default": true
96 },
97 "quoteTypo": {
98 "type": "object",
99 "default": {}
100 },
101 "nameTypo": {
102 "type": "object",
103 "default": {}
104 },
105 "roleTypo": {
106 "type": "object",
107 "default": {}
108 },
109 "starSize": {
110 "type": "number",
111 "default": 16
112 },
113 "borderRadius": {
114 "type": "number",
115 "default": 16
116 },
117 "cardPadding": {
118 "type": "number",
119 "default": 28
120 },
121 "starColor": {
122 "type": "string",
123 "default": "#f59e0b"
124 },
125 "bgColor": {
126 "type": "string",
127 "default": "#ffffff"
128 },
129 "quoteColor": {
130 "type": "string",
131 "default": "#1e293b"
132 },
133 "nameColor": {
134 "type": "string",
135 "default": "#0f172a"
136 },
137 "roleColor": {
138 "type": "string",
139 "default": "#64748b"
140 },
141 "accentColor": {
142 "type": "string",
143 "default": "#6c3fb5"
144 },
145 "borderColor": {
146 "type": "string",
147 "default": "#e2e8f0"
148 },
149 "quoteMarkColor": {
150 "type": "string",
151 "default": "#6c3fb5"
152 }
153 }
154 }