PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.6
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.6
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 / stats-counter / block.json

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

174 lines 4.7 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/stats-counter",
4 "title": "Stats Counter",
5 "category": "blockenberg",
6 "icon": "performance",
7 "description": "Display animated number counters with icons, labels, and rich customization.",
8 "keywords": ["stats", "counter", "number", "statistics", "achievement", "fact"],
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-stats-counter-editor",
11 "editorStyle": "bkbg-stats-counter-style",
12 "style": "bkbg-stats-counter-style",
13 "viewScript": "bkbg-stats-counter-frontend",
14 "supports": {
15 "html": false,
16 "align": ["wide", "full"]
17 },
18 "attributes": {
19 "items": {
20 "type": "array",
21 "default": [
22 { "number": 1500, "suffix": "+", "prefix": "", "label": "Happy Clients", "icon": "groups", "color": "#3b82f6", "numberColor": "", "labelColor": "" },
23 { "number": 99, "suffix": "%", "prefix": "", "label": "Success Rate", "icon": "yes-alt", "color": "#10b981", "numberColor": "", "labelColor": "" },
24 { "number": 50, "suffix": "+", "prefix": "", "label": "Team Members", "icon": "admin-users", "color": "#f59e0b", "numberColor": "", "labelColor": "" },
25 { "number": 10, "suffix": "", "prefix": "", "label": "Years Experience", "icon": "awards", "color": "#8b5cf6", "numberColor": "", "labelColor": "" }
26 ]
27 },
28 "layoutStyle": {
29 "type": "string",
30 "default": "grid"
31 },
32 "columns": {
33 "type": "number",
34 "default": 4
35 },
36 "gap": {
37 "type": "number",
38 "default": 32
39 },
40 "animateOnScroll": {
41 "type": "boolean",
42 "default": true
43 },
44 "animationDuration": {
45 "type": "number",
46 "default": 2000
47 },
48 "showIcon": {
49 "type": "boolean",
50 "default": true
51 },
52 "iconPosition": {
53 "type": "string",
54 "default": "top"
55 },
56 "iconSize": {
57 "type": "number",
58 "default": 48
59 },
60 "iconStyle": {
61 "type": "string",
62 "default": "default"
63 },
64 "iconBgSize": {
65 "type": "number",
66 "default": 80
67 },
68 "iconRadius": {
69 "type": "number",
70 "default": 50
71 },
72 "showLabel": {
73 "type": "boolean",
74 "default": true
75 },
76 "labelPosition": {
77 "type": "string",
78 "default": "below"
79 },
80 "numberSize": {
81 "type": "number",
82 "default": 48
83 },
84 "numberWeight": {
85 "type": "number",
86 "default": 700
87 },
88 "numberColor": {
89 "type": "string",
90 "default": "#1f2937"
91 },
92 "labelSize": {
93 "type": "number",
94 "default": 16
95 },
96 "labelWeight": {
97 "type": "number",
98 "default": 400
99 },
100 "labelColor": {
101 "type": "string",
102 "default": "#6b7280"
103 },
104 "textAlign": {
105 "type": "string",
106 "default": "center"
107 },
108 "cardStyle": {
109 "type": "boolean",
110 "default": false
111 },
112 "cardBg": {
113 "type": "string",
114 "default": "#ffffff"
115 },
116 "cardBorder": {
117 "type": "boolean",
118 "default": true
119 },
120 "cardBorderColor": {
121 "type": "string",
122 "default": "#e5e7eb"
123 },
124 "cardBorderWidth": {
125 "type": "number",
126 "default": 1
127 },
128 "cardRadius": {
129 "type": "number",
130 "default": 12
131 },
132 "cardPadding": {
133 "type": "number",
134 "default": 32
135 },
136 "cardShadow": {
137 "type": "boolean",
138 "default": false
139 },
140 "divider": {
141 "type": "boolean",
142 "default": false
143 },
144 "dividerColor": {
145 "type": "string",
146 "default": "#e5e7eb"
147 },
148 "useItemColors": {
149 "type": "boolean",
150 "default": true
151 },
152 "title": {
153 "type": "string",
154 "default": ""
155 },
156 "showTitle": {
157 "type": "boolean",
158 "default": false
159 },
160 "titleSize": {
161 "type": "number",
162 "default": 32
163 },
164 "titleColor": {
165 "type": "string",
166 "default": "#1f2937"
167 },
168 "separator": {
169 "type": "string",
170 "default": ","
171 }
172 }
173 }
174