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

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

180 lines 4.7 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/icon-stats",
5 "version": "1.0.0",
6 "title": "Icon Stats",
7 "category": "bkbg-content",
8 "description": "Statistics displayed with large decorative icons, bold numbers, and descriptive labels.",
9 "keywords": [
10 "stats",
11 "icon",
12 "numbers",
13 "metrics",
14 "kpi",
15 "counter"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-icon-stats-editor",
19 "style": "bkbg-icon-stats-style",
20 "attributes": {
21 "title": {
22 "type": "string",
23 "default": "By the Numbers"
24 },
25 "showTitle": {
26 "type": "boolean",
27 "default": true
28 },
29 "subtitle": {
30 "type": "string",
31 "default": "Real results from real teams"
32 },
33 "showSubtitle": {
34 "type": "boolean",
35 "default": true
36 },
37 "columns": {
38 "type": "number",
39 "default": 4
40 },
41 "showIcon": {
42 "type": "boolean",
43 "default": true
44 },
45 "iconSize": {
46 "type": "number",
47 "default": 32
48 },
49 "iconBgSize": {
50 "type": "number",
51 "default": 64
52 },
53 "iconBgRadius": {
54 "type": "number",
55 "default": 16
56 },
57 "valueFontSize": {
58 "type": "number",
59 "default": 32
60 },
61 "labelFontSize": {
62 "type": "number",
63 "default": 13
64 },
65 "descFontSize": {
66 "type": "number",
67 "default": 12
68 },
69 "headingTypo": {
70 "type": "object",
71 "default": {}
72 },
73 "subtitleTypo": {
74 "type": "object",
75 "default": {}
76 },
77 "valueTypo": {
78 "type": "object",
79 "default": {}
80 },
81 "labelTypo": {
82 "type": "object",
83 "default": {}
84 },
85 "descTypo": {
86 "type": "object",
87 "default": {}
88 },
89 "cardPadding": {
90 "type": "number",
91 "default": 24
92 },
93 "cardRadius": {
94 "type": "number",
95 "default": 14
96 },
97 "gap": {
98 "type": "number",
99 "default": 16
100 },
101 "bgColor": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "cardBg": {
106 "type": "string",
107 "default": "#f9fafb"
108 },
109 "borderColor": {
110 "type": "string",
111 "default": "#e5e7eb"
112 },
113 "headingColor": {
114 "type": "string",
115 "default": "#111827"
116 },
117 "subtitleColor": {
118 "type": "string",
119 "default": "#6b7280"
120 },
121 "valueColor": {
122 "type": "string",
123 "default": "#111827"
124 },
125 "labelColor": {
126 "type": "string",
127 "default": "#374151"
128 },
129 "descColor": {
130 "type": "string",
131 "default": "#6b7280"
132 },
133 "stats": {
134 "type": "array",
135 "default": [
136 {
137 "icon": "🚀",
138 "iconType": "custom-char",
139 "iconDashicon": "",
140 "iconImageUrl": "",
141 "value": "10M+",
142 "label": "Users Served",
143 "desc": "Across 120+ countries",
144 "accentColor": "#6366f1"
145 },
146 {
147 "icon": "",
148 "iconType": "custom-char",
149 "iconDashicon": "",
150 "iconImageUrl": "",
151 "value": "4.9",
152 "label": "Average Rating",
153 "desc": "From 50K+ reviews",
154 "accentColor": "#f59e0b"
155 },
156 {
157 "icon": "",
158 "iconType": "custom-char",
159 "iconDashicon": "",
160 "iconImageUrl": "",
161 "value": "99.9%",
162 "label": "Uptime SLA",
163 "desc": "Enterprise reliability",
164 "accentColor": "#10b981"
165 },
166 {
167 "icon": "💬",
168 "iconType": "custom-char",
169 "iconDashicon": "",
170 "iconImageUrl": "",
171 "value": "2 min",
172 "label": "Support Response",
173 "desc": "Median first response",
174 "accentColor": "#ec4899"
175 }
176 ]
177 }
178 }
179 }
180