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

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

197 lines 5.0 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/review-showcase",
5 "title": "Review Showcase",
6 "category": "bkbg-marketing",
7 "icon": "star-filled",
8 "description": "Showcase aggregate ratings from review platforms (Google, G2, Trustpilot, etc.) with an optional featured testimonial.",
9 "keywords": [
10 "review",
11 "rating",
12 "stars",
13 "testimonial",
14 "trustpilot",
15 "g2",
16 "google",
17 "social proof",
18 "capterra"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-review-showcase-editor",
22 "editorStyle": "bkbg-review-showcase-style",
23 "style": "bkbg-review-showcase-style",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "heading": {
35 "type": "string",
36 "default": "Loved by thousands of teams"
37 },
38 "showHeading": {
39 "type": "boolean",
40 "default": true
41 },
42 "overallRating": {
43 "type": "number",
44 "default": 4.9
45 },
46 "reviewCount": {
47 "type": "string",
48 "default": "2,400+"
49 },
50 "showOverall": {
51 "type": "boolean",
52 "default": true
53 },
54 "platforms": {
55 "type": "array",
56 "default": [
57 {
58 "id": "p1",
59 "name": "Google",
60 "logo": "google",
61 "rating": 4.9,
62 "count": "1.2k",
63 "active": true
64 },
65 {
66 "id": "p2",
67 "name": "G2",
68 "logo": "g2",
69 "rating": 4.8,
70 "count": "850",
71 "active": true
72 },
73 {
74 "id": "p3",
75 "name": "Trustpilot",
76 "logo": "trustpilot",
77 "rating": 4.9,
78 "count": "400",
79 "active": true
80 },
81 {
82 "id": "p4",
83 "name": "Capterra",
84 "logo": "capterra",
85 "rating": 4.8,
86 "count": "320",
87 "active": false
88 }
89 ]
90 },
91 "showFeatured": {
92 "type": "boolean",
93 "default": true
94 },
95 "featuredQuote": {
96 "type": "string",
97 "default": "This product completely transformed how our team works. The setup was effortless and the results were immediate."
98 },
99 "featuredName": {
100 "type": "string",
101 "default": "Sarah M."
102 },
103 "featuredRole": {
104 "type": "string",
105 "default": "Product Manager at Acme Corp"
106 },
107 "featuredPlatform": {
108 "type": "string",
109 "default": "google"
110 },
111 "layout": {
112 "type": "string",
113 "default": "platforms-top"
114 },
115 "style": {
116 "type": "string",
117 "default": "clean"
118 },
119 "starSize": {
120 "type": "number",
121 "default": 20
122 },
123 "ratingSize": {
124 "type": "number",
125 "default": 48
126 },
127 "headingSize": {
128 "type": "number",
129 "default": 28
130 },
131 "headingFontWeight": {
132 "type": "number",
133 "default": 800
134 },
135 "headingLineHeight": {
136 "type": "number",
137 "default": 1.2
138 },
139 "quoteSize": {
140 "type": "number",
141 "default": 16
142 },
143 "quoteFontWeight": {
144 "type": "number",
145 "default": 400
146 },
147 "quoteLineHeight": {
148 "type": "number",
149 "default": 1.6
150 },
151 "paddingTop": {
152 "type": "number",
153 "default": 0
154 },
155 "paddingBottom": {
156 "type": "number",
157 "default": 0
158 },
159 "starColor": {
160 "type": "string",
161 "default": "#f59e0b"
162 },
163 "headingColor": {
164 "type": "string",
165 "default": "#0f172a"
166 },
167 "ratingColor": {
168 "type": "string",
169 "default": "#0f172a"
170 },
171 "quoteColor": {
172 "type": "string",
173 "default": "#475569"
174 },
175 "cardBg": {
176 "type": "string",
177 "default": "#ffffff"
178 },
179 "cardBorder": {
180 "type": "string",
181 "default": "#e2e8f0"
182 },
183 "accentColor": {
184 "type": "string",
185 "default": "#6c3fb5"
186 },
187 "headingTypo": {
188 "type": "object",
189 "default": {}
190 },
191 "quoteTypo": {
192 "type": "object",
193 "default": {}
194 }
195 }
196 }
197