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

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

154 lines 4.0 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/creative-stats-waterfall",
5 "title": "Creative Stats Waterfall",
6 "category": "bkbg-charts",
7 "icon": "chart-bar",
8 "description": "Staggered waterfall layout of large statistics with animated counters and accent colors.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-creative-stats-waterfall-editor",
11 "style": "bkbg-creative-stats-waterfall-style",
12 "attributes": {
13 "stats": {
14 "type": "array",
15 "default": [
16 {
17 "id": "s1",
18 "prefix": "",
19 "value": "10",
20 "suffix": "x",
21 "label": "Faster deployment",
22 "description": "Compared to manual setup",
23 "accentColor": "#6c3fb5"
24 },
25 {
26 "id": "s2",
27 "prefix": "$",
28 "value": "2.4",
29 "suffix": "M",
30 "label": "Revenue generated",
31 "description": "By our customers in Q1",
32 "accentColor": "#0ea5e9"
33 },
34 {
35 "id": "s3",
36 "prefix": "",
37 "value": "98",
38 "suffix": "%",
39 "label": "Uptime guaranteed",
40 "description": "SLA across all plans",
41 "accentColor": "#10b981"
42 },
43 {
44 "id": "s4",
45 "prefix": "",
46 "value": "500",
47 "suffix": "+",
48 "label": "Happy clients",
49 "description": "Across 40+ countries",
50 "accentColor": "#f59e0b"
51 }
52 ]
53 },
54 "layout": {
55 "type": "string",
56 "default": "waterfall"
57 },
58 "columns": {
59 "type": "number",
60 "default": 4
61 },
62 "waterfallOffset": {
63 "type": "number",
64 "default": 40
65 },
66 "showDescription": {
67 "type": "boolean",
68 "default": true
69 },
70 "showDivider": {
71 "type": "boolean",
72 "default": true
73 },
74 "dividerStyle": {
75 "type": "string",
76 "default": "line"
77 },
78 "numberSize": {
79 "type": "number",
80 "default": 56
81 },
82 "labelSize": {
83 "type": "number",
84 "default": 14
85 },
86 "descSize": {
87 "type": "number",
88 "default": 13
89 },
90 "gap": {
91 "type": "number",
92 "default": 32
93 },
94 "paddingTop": {
95 "type": "number",
96 "default": 72
97 },
98 "paddingBottom": {
99 "type": "number",
100 "default": 72
101 },
102 "sectionBg": {
103 "type": "string",
104 "default": ""
105 },
106 "numberColor": {
107 "type": "string",
108 "default": ""
109 },
110 "prefixSuffixColor": {
111 "type": "string",
112 "default": ""
113 },
114 "labelColor": {
115 "type": "string",
116 "default": "#0f172a"
117 },
118 "descColor": {
119 "type": "string",
120 "default": "#64748b"
121 },
122 "dividerColor": {
123 "type": "string",
124 "default": "#e2e8f0"
125 },
126 "typoNumber": {
127 "type": "object",
128 "default": {}
129 },
130 "typoLabel": {
131 "type": "object",
132 "default": {}
133 },
134 "typoDesc": {
135 "type": "object",
136 "default": {}
137 }
138 },
139 "supports": {
140 "html": false,
141 "align": [
142 "wide",
143 "full"
144 ]
145 },
146 "keywords": [
147 "stats",
148 "numbers",
149 "metrics",
150 "waterfall",
151 "counter"
152 ]
153 }
154