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

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

158 lines 3.7 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/big-stat",
5 "title": "Big Stat",
6 "category": "bkbg-content",
7 "icon": "chart-bar",
8 "description": "Display a single large impactful statistic with prefix, suffix, label, and multiple visual styles.",
9 "keywords": [
10 "stat",
11 "number",
12 "metric",
13 "kpi",
14 "highlight",
15 "big number",
16 "statistic"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-big-stat-editor",
20 "editorStyle": "bkbg-big-stat-style",
21 "style": "bkbg-big-stat-style",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "value": {
33 "type": "string",
34 "default": "87"
35 },
36 "prefix": {
37 "type": "string",
38 "default": ""
39 },
40 "suffix": {
41 "type": "string",
42 "default": "%"
43 },
44 "label": {
45 "type": "string",
46 "default": "Customer Satisfaction"
47 },
48 "sublabel": {
49 "type": "string",
50 "default": "Based on 10,000+ reviews"
51 },
52 "showSublabel": {
53 "type": "boolean",
54 "default": true
55 },
56 "showIcon": {
57 "type": "boolean",
58 "default": false
59 },
60 "icon": {
61 "type": "string",
62 "default": "star-filled"
63 },
64 "iconSize": {
65 "type": "number",
66 "default": 40
67 },
68 "style": {
69 "type": "string",
70 "default": "centered"
71 },
72 "animate": {
73 "type": "boolean",
74 "default": true
75 },
76 "animateDuration": {
77 "type": "number",
78 "default": 1500
79 },
80 "showDivider": {
81 "type": "boolean",
82 "default": true
83 },
84 "dividerWidth": {
85 "type": "number",
86 "default": 48
87 },
88 "padding": {
89 "type": "number",
90 "default": 32
91 },
92 "borderRadius": {
93 "type": "number",
94 "default": 16
95 },
96 "valueSize": {
97 "type": "number",
98 "default": 80
99 },
100 "valueWeight": {
101 "type": "number",
102 "default": 900
103 },
104 "labelSize": {
105 "type": "number",
106 "default": 18
107 },
108 "labelWeight": {
109 "type": "number",
110 "default": 600
111 },
112 "sublabelSize": {
113 "type": "number",
114 "default": 13
115 },
116 "prefixSuffixSize": {
117 "type": "number",
118 "default": 40
119 },
120 "valueTypo": {
121 "type": "object",
122 "default": {}
123 },
124 "labelTypo": {
125 "type": "object",
126 "default": {}
127 },
128 "sublabelTypo": {
129 "type": "object",
130 "default": {}
131 },
132 "valueColor": {
133 "type": "string",
134 "default": "#0f172a"
135 },
136 "labelColor": {
137 "type": "string",
138 "default": "#1e293b"
139 },
140 "sublabelColor": {
141 "type": "string",
142 "default": "#94a3b8"
143 },
144 "accentColor": {
145 "type": "string",
146 "default": "#6c3fb5"
147 },
148 "bgColor": {
149 "type": "string",
150 "default": "#f8fafc"
151 },
152 "iconColor": {
153 "type": "string",
154 "default": "#6c3fb5"
155 }
156 }
157 }
158