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

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

164 lines 4.2 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/floating-stats",
5 "version": "1.0.0",
6 "title": "Floating Stats",
7 "category": "bkbg-effects",
8 "icon": "superhero",
9 "description": "A hero image composition with floating achievement/statistic cards positioned around it. Common SaaS and agency pattern for showing credibility at a glance.",
10 "keywords": [
11 "floating",
12 "stats",
13 "hero",
14 "image",
15 "cards",
16 "counter",
17 "achievements",
18 "badges",
19 "social proof"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-floating-stats-editor",
23 "editorStyle": "bkbg-floating-stats-style",
24 "style": "bkbg-floating-stats-style",
25 "viewScript": "bkbg-floating-stats-frontend",
26 "supports": {
27 "html": false,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "imageUrl": {
35 "type": "string",
36 "default": ""
37 },
38 "imageId": {
39 "type": "number",
40 "default": 0
41 },
42 "imageAlt": {
43 "type": "string",
44 "default": ""
45 },
46 "imageAspectRatio": {
47 "type": "string",
48 "default": "4:5"
49 },
50 "imageRadius": {
51 "type": "number",
52 "default": 20
53 },
54 "imageShadow": {
55 "type": "boolean",
56 "default": true
57 },
58 "wrapMaxWidth": {
59 "type": "number",
60 "default": 540
61 },
62 "cards": {
63 "type": "array",
64 "default": [
65 {
66 "id": "s1",
67 "value": "10,000+",
68 "label": "Happy users",
69 "icon": "star",
70 "position": "top-left",
71 "bgColor": "#ffffff",
72 "textColor": "#111827",
73 "valueColor": "#6c3fb5"
74 },
75 {
76 "id": "s2",
77 "value": "99.9%",
78 "label": "Uptime SLA",
79 "icon": "bolt",
80 "position": "middle-right",
81 "bgColor": "#ffffff",
82 "textColor": "#111827",
83 "valueColor": "#059669"
84 },
85 {
86 "id": "s3",
87 "value": "4.9 �
88 ",
89 "label": "App Store rating",
90 "icon": "heart",
91 "position": "bottom-left",
92 "bgColor": "#ffffff",
93 "textColor": "#111827",
94 "valueColor": "#f59e0b"
95 }
96 ]
97 },
98 "cardStyle": {
99 "type": "string",
100 "default": "shadow"
101 },
102 "cardPadding": {
103 "type": "number",
104 "default": 16
105 },
106 "cardRadius": {
107 "type": "number",
108 "default": 12
109 },
110 "valueSize": {
111 "type": "number",
112 "default": 24
113 },
114 "valueFontWeight": {
115 "type": "number",
116 "default": 700
117 },
118 "labelSize": {
119 "type": "number",
120 "default": 12
121 },
122 "typoValue": {
123 "type": "object",
124 "default": {}
125 },
126 "typoLabel": {
127 "type": "object",
128 "default": {}
129 },
130 "showIcon": {
131 "type": "boolean",
132 "default": true
133 },
134 "iconSize": {
135 "type": "number",
136 "default": 22
137 },
138 "countUpAnimation": {
139 "type": "boolean",
140 "default": true
141 },
142 "globalCardBg": {
143 "type": "string",
144 "default": "#ffffff"
145 },
146 "globalCardColor": {
147 "type": "string",
148 "default": "#111827"
149 },
150 "bgColor": {
151 "type": "string",
152 "default": ""
153 },
154 "paddingTop": {
155 "type": "number",
156 "default": 48
157 },
158 "paddingBottom": {
159 "type": "number",
160 "default": 48
161 }
162 }
163 }
164