g-ui-web 1.4.26 → 1.4.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/style.css.gz CHANGED
Binary file
@@ -86,6 +86,10 @@ declare const GSubmarketMap: ({
86
86
  type: () => "block" | "scatter" | "heatmap";
87
87
  default: string;
88
88
  };
89
+ showBlockLabel: {
90
+ type: BooleanConstructor;
91
+ default: boolean;
92
+ };
89
93
  pointData: {
90
94
  type: () => any[];
91
95
  default: () => never[];
@@ -130,6 +134,7 @@ declare const GSubmarketMap: ({
130
134
  securityJsCode: string;
131
135
  blockColorConfig: unknown[];
132
136
  mapMode: "scatter" | "heatmap" | "block";
137
+ showBlockLabel: boolean;
133
138
  pointData: any[];
134
139
  pointFieldMap: {
135
140
  lng?: string;
@@ -230,6 +235,10 @@ declare const GSubmarketMap: ({
230
235
  type: () => "block" | "scatter" | "heatmap";
231
236
  default: string;
232
237
  };
238
+ showBlockLabel: {
239
+ type: BooleanConstructor;
240
+ default: boolean;
241
+ };
233
242
  pointData: {
234
243
  type: () => any[];
235
244
  default: () => never[];
@@ -267,6 +276,7 @@ declare const GSubmarketMap: ({
267
276
  securityJsCode: string;
268
277
  blockColorConfig: unknown[];
269
278
  mapMode: "scatter" | "heatmap" | "block";
279
+ showBlockLabel: boolean;
270
280
  pointData: any[];
271
281
  pointFieldMap: {
272
282
  lng?: string;
@@ -364,6 +374,10 @@ declare const GSubmarketMap: ({
364
374
  type: () => "block" | "scatter" | "heatmap";
365
375
  default: string;
366
376
  };
377
+ showBlockLabel: {
378
+ type: BooleanConstructor;
379
+ default: boolean;
380
+ };
367
381
  pointData: {
368
382
  type: () => any[];
369
383
  default: () => never[];
@@ -408,6 +422,7 @@ declare const GSubmarketMap: ({
408
422
  securityJsCode: string;
409
423
  blockColorConfig: unknown[];
410
424
  mapMode: "scatter" | "heatmap" | "block";
425
+ showBlockLabel: boolean;
411
426
  pointData: any[];
412
427
  pointFieldMap: {
413
428
  lng?: string;
@@ -97,6 +97,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
97
97
  type: () => "block" | "scatter" | "heatmap";
98
98
  default: string;
99
99
  };
100
+ showBlockLabel: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
100
104
  pointData: {
101
105
  type: () => any[];
102
106
  default: () => never[];
@@ -212,6 +216,10 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
212
216
  type: () => "block" | "scatter" | "heatmap";
213
217
  default: string;
214
218
  };
219
+ showBlockLabel: {
220
+ type: BooleanConstructor;
221
+ default: boolean;
222
+ };
215
223
  pointData: {
216
224
  type: () => any[];
217
225
  default: () => never[];
@@ -244,6 +252,7 @@ declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractP
244
252
  securityJsCode: string;
245
253
  blockColorConfig: unknown[];
246
254
  mapMode: "scatter" | "heatmap" | "block";
255
+ showBlockLabel: boolean;
247
256
  pointData: any[];
248
257
  pointFieldMap: {
249
258
  lng?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "g-ui-web",
3
3
  "private": false,
4
4
  "description": "可视化组件库",
5
- "version": "1.4.26",
5
+ "version": "1.4.28",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",