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 / world-map / block.json

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

248 lines 6.4 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/world-map",
5 "title": "World Map",
6 "category": "bkbg-charts",
7 "icon": "admin-site-alt3",
8 "description": "Interactive SVG world map with country highlighting, data values, tooltips and a legend. Perfect for global presence, customer distribution, and sales territory sections.",
9 "keywords": [
10 "map",
11 "world",
12 "countries",
13 "geography",
14 "data",
15 "global",
16 "presence"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-world-map-editor",
20 "editorStyle": "bkbg-world-map-style",
21 "style": "bkbg-world-map-style",
22 "viewScript": "bkbg-world-map-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Global Presence"
36 },
37 "showTitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "subtitle": {
42 "type": "string",
43 "default": "Serving customers across 10+ countries worldwide."
44 },
45 "showSubtitle": {
46 "type": "boolean",
47 "default": true
48 },
49 "countries": {
50 "type": "array",
51 "default": [
52 {
53 "id": "c1",
54 "code": "US",
55 "name": "United States",
56 "value": 1250,
57 "color": "",
58 "url": ""
59 },
60 {
61 "id": "c2",
62 "code": "GB",
63 "name": "United Kingdom",
64 "value": 480,
65 "color": "",
66 "url": ""
67 },
68 {
69 "id": "c3",
70 "code": "DE",
71 "name": "Germany",
72 "value": 390,
73 "color": "",
74 "url": ""
75 },
76 {
77 "id": "c4",
78 "code": "FR",
79 "name": "France",
80 "value": 320,
81 "color": "",
82 "url": ""
83 },
84 {
85 "id": "c5",
86 "code": "CA",
87 "name": "Canada",
88 "value": 290,
89 "color": "",
90 "url": ""
91 },
92 {
93 "id": "c6",
94 "code": "AU",
95 "name": "Australia",
96 "value": 220,
97 "color": "",
98 "url": ""
99 },
100 {
101 "id": "c7",
102 "code": "JP",
103 "name": "Japan",
104 "value": 340,
105 "color": "",
106 "url": ""
107 },
108 {
109 "id": "c8",
110 "code": "BR",
111 "name": "Brazil",
112 "value": 180,
113 "color": "",
114 "url": ""
115 },
116 {
117 "id": "c9",
118 "code": "IN",
119 "name": "India",
120 "value": 410,
121 "color": "",
122 "url": ""
123 },
124 {
125 "id": "c10",
126 "code": "ZA",
127 "name": "South Africa",
128 "value": 95,
129 "color": "",
130 "url": ""
131 }
132 ]
133 },
134 "colorMode": {
135 "type": "string",
136 "default": "gradient"
137 },
138 "lowColor": {
139 "type": "string",
140 "default": "#c4b5fd"
141 },
142 "highColor": {
143 "type": "string",
144 "default": "#5b21b6"
145 },
146 "defaultFill": {
147 "type": "string",
148 "default": "#e5e7eb"
149 },
150 "hoverFill": {
151 "type": "string",
152 "default": "#ede9fe"
153 },
154 "borderColor": {
155 "type": "string",
156 "default": "#ffffff"
157 },
158 "projection": {
159 "type": "string",
160 "default": "NaturalEarth1"
161 },
162 "showLegend": {
163 "type": "boolean",
164 "default": true
165 },
166 "legendTitle": {
167 "type": "string",
168 "default": "Customers"
169 },
170 "showTooltips": {
171 "type": "boolean",
172 "default": true
173 },
174 "showCountryList": {
175 "type": "boolean",
176 "default": true
177 },
178 "mapHeight": {
179 "type": "number",
180 "default": 480
181 },
182 "accentColor": {
183 "type": "string",
184 "default": "#6c3fb5"
185 },
186 "titleColor": {
187 "type": "string",
188 "default": "#111827"
189 },
190 "subtitleColor": {
191 "type": "string",
192 "default": "#6b7280"
193 },
194 "mapBg": {
195 "type": "string",
196 "default": "#f0f4f8"
197 },
198 "tooltipBg": {
199 "type": "string",
200 "default": "#1e1e2e"
201 },
202 "tooltipColor": {
203 "type": "string",
204 "default": "#ffffff"
205 },
206 "listBg": {
207 "type": "string",
208 "default": "#ffffff"
209 },
210 "listBorder": {
211 "type": "string",
212 "default": "#e5e7eb"
213 },
214 "bgColor": {
215 "type": "string",
216 "default": ""
217 },
218 "titleSize": {
219 "type": "number",
220 "default": 32
221 },
222 "subtitleSize": {
223 "type": "number",
224 "default": 17
225 },
226 "cardRadius": {
227 "type": "number",
228 "default": 16
229 },
230 "paddingTop": {
231 "type": "number",
232 "default": 60
233 },
234 "paddingBottom": {
235 "type": "number",
236 "default": 60
237 },
238 "titleTypo": {
239 "type": "object",
240 "default": {}
241 },
242 "subtitleTypo": {
243 "type": "object",
244 "default": {}
245 }
246 }
247 }
248