@ecan-bi/datav 1.0.25 → 1.0.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/dist/_utils/constant.d.ts +2 -1
- package/dist/_utils/hooks/index.d.ts +1 -0
- package/dist/_utils/hooks/useRequestDiagramData.d.ts +6 -0
- package/dist/container/modal/props.d.ts +30 -0
- package/dist/graph/bar/Bar.vue.d.ts +164 -2079
- package/dist/graph/bar/props.d.ts +90 -1875
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +259 -49
- package/dist/graph/combo-graph/props.d.ts +259 -49
- package/dist/index.esm.js +10 -1
- package/dist/index.umd.js +10 -1
- package/dist/map/map/Map.vue.d.ts +482 -54
- package/dist/map/map/props.d.ts +335 -20
- package/dist/table/table/Table.vue.d.ts +79 -1714
- package/dist/table/table/props.d.ts +39 -1594
- package/dist/text/list/List.vue.d.ts +98 -28
- package/dist/text/list/props.d.ts +56 -0
- package/dist/{_utils/propsDiagram.d.ts → types/Diagram.d.ts} +10 -2
- package/dist/types/IndicatorListResponse.d.ts +36 -0
- package/package.json +3 -3
- package/dist/_utils/hooks/useRequestDiagram.d.ts +0 -5
package/dist/map/map/props.d.ts
CHANGED
|
@@ -7,17 +7,38 @@ export interface MapProps extends Props {
|
|
|
7
7
|
data: {
|
|
8
8
|
[key: string]: any;
|
|
9
9
|
}[];
|
|
10
|
+
backgroundImage: string;
|
|
11
|
+
backgroundImageRepeat: 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
12
|
+
symbolImage: string;
|
|
13
|
+
symbolWidth: number;
|
|
14
|
+
symbolHeight: number;
|
|
15
|
+
geoZoom: number;
|
|
16
|
+
geoRoam: boolean;
|
|
17
|
+
geoCenter: string;
|
|
18
|
+
geoBackgroundImage: string;
|
|
19
|
+
geoBackgroundImageRepeat: 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
20
|
+
geoLabelShow: boolean;
|
|
21
|
+
geoLabelColor: string;
|
|
22
|
+
geoLabelFontSize: number;
|
|
23
|
+
geoItemStyleAreaColor: string;
|
|
24
|
+
geoItemStyleBorderColor: string;
|
|
25
|
+
geoItemStyleBorderWidth: number;
|
|
26
|
+
geoItemStyleShadowColor: string;
|
|
27
|
+
geoItemStyleShadowOffsetX: number;
|
|
28
|
+
geoItemStyleShadowOffsetY: number;
|
|
29
|
+
geoItemStyleShadowBlur: number;
|
|
30
|
+
geoEmphasisDisabled: boolean;
|
|
31
|
+
geoEmphasisLabelColor: string;
|
|
32
|
+
geoEmphasisItemStyleAreaColor: string;
|
|
33
|
+
geoEmphasisItemStyleBorderColor: string;
|
|
34
|
+
itemStyleColor: string;
|
|
35
|
+
labelFontSize: number;
|
|
36
|
+
labelFormatter: string;
|
|
10
37
|
labelShow: boolean;
|
|
11
38
|
labelColor: string;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
emphasisLabelColor: string;
|
|
16
|
-
emphasisItemStyleAreaColor: string;
|
|
17
|
-
emphasisItemStyleBorderColor: string;
|
|
18
|
-
selectLabelColor: string;
|
|
19
|
-
selectItemStyleAreaColor: string;
|
|
20
|
-
selectItemStyleBorderColor: string;
|
|
39
|
+
tooltipShow: boolean;
|
|
40
|
+
tooltipTextStyleColor: string;
|
|
41
|
+
tooltipFormatter: string;
|
|
21
42
|
}
|
|
22
43
|
export declare const mapProps: MapProps;
|
|
23
44
|
export declare const mapComponentProps: {
|
|
@@ -49,7 +70,7 @@ export declare const mapComponentProps: {
|
|
|
49
70
|
[key: string]: any;
|
|
50
71
|
} | import("../../_utils/props").RequestParams;
|
|
51
72
|
};
|
|
52
|
-
|
|
73
|
+
backgroundImage: {
|
|
53
74
|
type?: undefined;
|
|
54
75
|
default?: undefined;
|
|
55
76
|
} | {
|
|
@@ -63,7 +84,7 @@ export declare const mapComponentProps: {
|
|
|
63
84
|
[key: string]: any;
|
|
64
85
|
} | import("../../_utils/props").RequestParams;
|
|
65
86
|
};
|
|
66
|
-
|
|
87
|
+
backgroundImageRepeat: {
|
|
67
88
|
type?: undefined;
|
|
68
89
|
default?: undefined;
|
|
69
90
|
} | {
|
|
@@ -77,7 +98,21 @@ export declare const mapComponentProps: {
|
|
|
77
98
|
[key: string]: any;
|
|
78
99
|
} | import("../../_utils/props").RequestParams;
|
|
79
100
|
};
|
|
80
|
-
|
|
101
|
+
symbolImage: {
|
|
102
|
+
type?: undefined;
|
|
103
|
+
default?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
type: any;
|
|
106
|
+
default: string | number | boolean | {
|
|
107
|
+
name: string;
|
|
108
|
+
value: string;
|
|
109
|
+
} | {
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
}[] | import("../../_utils/props").Events | {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
} | import("../../_utils/props").RequestParams;
|
|
114
|
+
};
|
|
115
|
+
symbolWidth: {
|
|
81
116
|
type?: undefined;
|
|
82
117
|
default?: undefined;
|
|
83
118
|
} | {
|
|
@@ -91,7 +126,7 @@ export declare const mapComponentProps: {
|
|
|
91
126
|
[key: string]: any;
|
|
92
127
|
} | import("../../_utils/props").RequestParams;
|
|
93
128
|
};
|
|
94
|
-
|
|
129
|
+
symbolHeight: {
|
|
95
130
|
type?: undefined;
|
|
96
131
|
default?: undefined;
|
|
97
132
|
} | {
|
|
@@ -105,7 +140,7 @@ export declare const mapComponentProps: {
|
|
|
105
140
|
[key: string]: any;
|
|
106
141
|
} | import("../../_utils/props").RequestParams;
|
|
107
142
|
};
|
|
108
|
-
|
|
143
|
+
geoZoom: {
|
|
109
144
|
type?: undefined;
|
|
110
145
|
default?: undefined;
|
|
111
146
|
} | {
|
|
@@ -119,7 +154,7 @@ export declare const mapComponentProps: {
|
|
|
119
154
|
[key: string]: any;
|
|
120
155
|
} | import("../../_utils/props").RequestParams;
|
|
121
156
|
};
|
|
122
|
-
|
|
157
|
+
geoRoam: {
|
|
123
158
|
type?: undefined;
|
|
124
159
|
default?: undefined;
|
|
125
160
|
} | {
|
|
@@ -133,7 +168,7 @@ export declare const mapComponentProps: {
|
|
|
133
168
|
[key: string]: any;
|
|
134
169
|
} | import("../../_utils/props").RequestParams;
|
|
135
170
|
};
|
|
136
|
-
|
|
171
|
+
geoCenter: {
|
|
137
172
|
type?: undefined;
|
|
138
173
|
default?: undefined;
|
|
139
174
|
} | {
|
|
@@ -147,7 +182,287 @@ export declare const mapComponentProps: {
|
|
|
147
182
|
[key: string]: any;
|
|
148
183
|
} | import("../../_utils/props").RequestParams;
|
|
149
184
|
};
|
|
150
|
-
|
|
185
|
+
geoBackgroundImage: {
|
|
186
|
+
type?: undefined;
|
|
187
|
+
default?: undefined;
|
|
188
|
+
} | {
|
|
189
|
+
type: any;
|
|
190
|
+
default: string | number | boolean | {
|
|
191
|
+
name: string;
|
|
192
|
+
value: string;
|
|
193
|
+
} | {
|
|
194
|
+
[key: string]: any;
|
|
195
|
+
}[] | import("../../_utils/props").Events | {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
} | import("../../_utils/props").RequestParams;
|
|
198
|
+
};
|
|
199
|
+
geoBackgroundImageRepeat: {
|
|
200
|
+
type?: undefined;
|
|
201
|
+
default?: undefined;
|
|
202
|
+
} | {
|
|
203
|
+
type: any;
|
|
204
|
+
default: string | number | boolean | {
|
|
205
|
+
name: string;
|
|
206
|
+
value: string;
|
|
207
|
+
} | {
|
|
208
|
+
[key: string]: any;
|
|
209
|
+
}[] | import("../../_utils/props").Events | {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
} | import("../../_utils/props").RequestParams;
|
|
212
|
+
};
|
|
213
|
+
geoLabelShow: {
|
|
214
|
+
type?: undefined;
|
|
215
|
+
default?: undefined;
|
|
216
|
+
} | {
|
|
217
|
+
type: any;
|
|
218
|
+
default: string | number | boolean | {
|
|
219
|
+
name: string;
|
|
220
|
+
value: string;
|
|
221
|
+
} | {
|
|
222
|
+
[key: string]: any;
|
|
223
|
+
}[] | import("../../_utils/props").Events | {
|
|
224
|
+
[key: string]: any;
|
|
225
|
+
} | import("../../_utils/props").RequestParams;
|
|
226
|
+
};
|
|
227
|
+
geoLabelColor: {
|
|
228
|
+
type?: undefined;
|
|
229
|
+
default?: undefined;
|
|
230
|
+
} | {
|
|
231
|
+
type: any;
|
|
232
|
+
default: string | number | boolean | {
|
|
233
|
+
name: string;
|
|
234
|
+
value: string;
|
|
235
|
+
} | {
|
|
236
|
+
[key: string]: any;
|
|
237
|
+
}[] | import("../../_utils/props").Events | {
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
} | import("../../_utils/props").RequestParams;
|
|
240
|
+
};
|
|
241
|
+
geoLabelFontSize: {
|
|
242
|
+
type?: undefined;
|
|
243
|
+
default?: undefined;
|
|
244
|
+
} | {
|
|
245
|
+
type: any;
|
|
246
|
+
default: string | number | boolean | {
|
|
247
|
+
name: string;
|
|
248
|
+
value: string;
|
|
249
|
+
} | {
|
|
250
|
+
[key: string]: any;
|
|
251
|
+
}[] | import("../../_utils/props").Events | {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
} | import("../../_utils/props").RequestParams;
|
|
254
|
+
};
|
|
255
|
+
geoItemStyleAreaColor: {
|
|
256
|
+
type?: undefined;
|
|
257
|
+
default?: undefined;
|
|
258
|
+
} | {
|
|
259
|
+
type: any;
|
|
260
|
+
default: string | number | boolean | {
|
|
261
|
+
name: string;
|
|
262
|
+
value: string;
|
|
263
|
+
} | {
|
|
264
|
+
[key: string]: any;
|
|
265
|
+
}[] | import("../../_utils/props").Events | {
|
|
266
|
+
[key: string]: any;
|
|
267
|
+
} | import("../../_utils/props").RequestParams;
|
|
268
|
+
};
|
|
269
|
+
geoItemStyleBorderColor: {
|
|
270
|
+
type?: undefined;
|
|
271
|
+
default?: undefined;
|
|
272
|
+
} | {
|
|
273
|
+
type: any;
|
|
274
|
+
default: string | number | boolean | {
|
|
275
|
+
name: string;
|
|
276
|
+
value: string;
|
|
277
|
+
} | {
|
|
278
|
+
[key: string]: any;
|
|
279
|
+
}[] | import("../../_utils/props").Events | {
|
|
280
|
+
[key: string]: any;
|
|
281
|
+
} | import("../../_utils/props").RequestParams;
|
|
282
|
+
};
|
|
283
|
+
geoItemStyleBorderWidth: {
|
|
284
|
+
type?: undefined;
|
|
285
|
+
default?: undefined;
|
|
286
|
+
} | {
|
|
287
|
+
type: any;
|
|
288
|
+
default: string | number | boolean | {
|
|
289
|
+
name: string;
|
|
290
|
+
value: string;
|
|
291
|
+
} | {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
}[] | import("../../_utils/props").Events | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
} | import("../../_utils/props").RequestParams;
|
|
296
|
+
};
|
|
297
|
+
geoItemStyleShadowColor: {
|
|
298
|
+
type?: undefined;
|
|
299
|
+
default?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
type: any;
|
|
302
|
+
default: string | number | boolean | {
|
|
303
|
+
name: string;
|
|
304
|
+
value: string;
|
|
305
|
+
} | {
|
|
306
|
+
[key: string]: any;
|
|
307
|
+
}[] | import("../../_utils/props").Events | {
|
|
308
|
+
[key: string]: any;
|
|
309
|
+
} | import("../../_utils/props").RequestParams;
|
|
310
|
+
};
|
|
311
|
+
geoItemStyleShadowOffsetX: {
|
|
312
|
+
type?: undefined;
|
|
313
|
+
default?: undefined;
|
|
314
|
+
} | {
|
|
315
|
+
type: any;
|
|
316
|
+
default: string | number | boolean | {
|
|
317
|
+
name: string;
|
|
318
|
+
value: string;
|
|
319
|
+
} | {
|
|
320
|
+
[key: string]: any;
|
|
321
|
+
}[] | import("../../_utils/props").Events | {
|
|
322
|
+
[key: string]: any;
|
|
323
|
+
} | import("../../_utils/props").RequestParams;
|
|
324
|
+
};
|
|
325
|
+
geoItemStyleShadowOffsetY: {
|
|
326
|
+
type?: undefined;
|
|
327
|
+
default?: undefined;
|
|
328
|
+
} | {
|
|
329
|
+
type: any;
|
|
330
|
+
default: string | number | boolean | {
|
|
331
|
+
name: string;
|
|
332
|
+
value: string;
|
|
333
|
+
} | {
|
|
334
|
+
[key: string]: any;
|
|
335
|
+
}[] | import("../../_utils/props").Events | {
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
} | import("../../_utils/props").RequestParams;
|
|
338
|
+
};
|
|
339
|
+
geoItemStyleShadowBlur: {
|
|
340
|
+
type?: undefined;
|
|
341
|
+
default?: undefined;
|
|
342
|
+
} | {
|
|
343
|
+
type: any;
|
|
344
|
+
default: string | number | boolean | {
|
|
345
|
+
name: string;
|
|
346
|
+
value: string;
|
|
347
|
+
} | {
|
|
348
|
+
[key: string]: any;
|
|
349
|
+
}[] | import("../../_utils/props").Events | {
|
|
350
|
+
[key: string]: any;
|
|
351
|
+
} | import("../../_utils/props").RequestParams;
|
|
352
|
+
};
|
|
353
|
+
geoEmphasisDisabled: {
|
|
354
|
+
type?: undefined;
|
|
355
|
+
default?: undefined;
|
|
356
|
+
} | {
|
|
357
|
+
type: any;
|
|
358
|
+
default: string | number | boolean | {
|
|
359
|
+
name: string;
|
|
360
|
+
value: string;
|
|
361
|
+
} | {
|
|
362
|
+
[key: string]: any;
|
|
363
|
+
}[] | import("../../_utils/props").Events | {
|
|
364
|
+
[key: string]: any;
|
|
365
|
+
} | import("../../_utils/props").RequestParams;
|
|
366
|
+
};
|
|
367
|
+
geoEmphasisLabelColor: {
|
|
368
|
+
type?: undefined;
|
|
369
|
+
default?: undefined;
|
|
370
|
+
} | {
|
|
371
|
+
type: any;
|
|
372
|
+
default: string | number | boolean | {
|
|
373
|
+
name: string;
|
|
374
|
+
value: string;
|
|
375
|
+
} | {
|
|
376
|
+
[key: string]: any;
|
|
377
|
+
}[] | import("../../_utils/props").Events | {
|
|
378
|
+
[key: string]: any;
|
|
379
|
+
} | import("../../_utils/props").RequestParams;
|
|
380
|
+
};
|
|
381
|
+
geoEmphasisItemStyleAreaColor: {
|
|
382
|
+
type?: undefined;
|
|
383
|
+
default?: undefined;
|
|
384
|
+
} | {
|
|
385
|
+
type: any;
|
|
386
|
+
default: string | number | boolean | {
|
|
387
|
+
name: string;
|
|
388
|
+
value: string;
|
|
389
|
+
} | {
|
|
390
|
+
[key: string]: any;
|
|
391
|
+
}[] | import("../../_utils/props").Events | {
|
|
392
|
+
[key: string]: any;
|
|
393
|
+
} | import("../../_utils/props").RequestParams;
|
|
394
|
+
};
|
|
395
|
+
geoEmphasisItemStyleBorderColor: {
|
|
396
|
+
type?: undefined;
|
|
397
|
+
default?: undefined;
|
|
398
|
+
} | {
|
|
399
|
+
type: any;
|
|
400
|
+
default: string | number | boolean | {
|
|
401
|
+
name: string;
|
|
402
|
+
value: string;
|
|
403
|
+
} | {
|
|
404
|
+
[key: string]: any;
|
|
405
|
+
}[] | import("../../_utils/props").Events | {
|
|
406
|
+
[key: string]: any;
|
|
407
|
+
} | import("../../_utils/props").RequestParams;
|
|
408
|
+
};
|
|
409
|
+
itemStyleColor: {
|
|
410
|
+
type?: undefined;
|
|
411
|
+
default?: undefined;
|
|
412
|
+
} | {
|
|
413
|
+
type: any;
|
|
414
|
+
default: string | number | boolean | {
|
|
415
|
+
name: string;
|
|
416
|
+
value: string;
|
|
417
|
+
} | {
|
|
418
|
+
[key: string]: any;
|
|
419
|
+
}[] | import("../../_utils/props").Events | {
|
|
420
|
+
[key: string]: any;
|
|
421
|
+
} | import("../../_utils/props").RequestParams;
|
|
422
|
+
};
|
|
423
|
+
labelFontSize: {
|
|
424
|
+
type?: undefined;
|
|
425
|
+
default?: undefined;
|
|
426
|
+
} | {
|
|
427
|
+
type: any;
|
|
428
|
+
default: string | number | boolean | {
|
|
429
|
+
name: string;
|
|
430
|
+
value: string;
|
|
431
|
+
} | {
|
|
432
|
+
[key: string]: any;
|
|
433
|
+
}[] | import("../../_utils/props").Events | {
|
|
434
|
+
[key: string]: any;
|
|
435
|
+
} | import("../../_utils/props").RequestParams;
|
|
436
|
+
};
|
|
437
|
+
labelFormatter: {
|
|
438
|
+
type?: undefined;
|
|
439
|
+
default?: undefined;
|
|
440
|
+
} | {
|
|
441
|
+
type: any;
|
|
442
|
+
default: string | number | boolean | {
|
|
443
|
+
name: string;
|
|
444
|
+
value: string;
|
|
445
|
+
} | {
|
|
446
|
+
[key: string]: any;
|
|
447
|
+
}[] | import("../../_utils/props").Events | {
|
|
448
|
+
[key: string]: any;
|
|
449
|
+
} | import("../../_utils/props").RequestParams;
|
|
450
|
+
};
|
|
451
|
+
labelShow: {
|
|
452
|
+
type?: undefined;
|
|
453
|
+
default?: undefined;
|
|
454
|
+
} | {
|
|
455
|
+
type: any;
|
|
456
|
+
default: string | number | boolean | {
|
|
457
|
+
name: string;
|
|
458
|
+
value: string;
|
|
459
|
+
} | {
|
|
460
|
+
[key: string]: any;
|
|
461
|
+
}[] | import("../../_utils/props").Events | {
|
|
462
|
+
[key: string]: any;
|
|
463
|
+
} | import("../../_utils/props").RequestParams;
|
|
464
|
+
};
|
|
465
|
+
labelColor: {
|
|
151
466
|
type?: undefined;
|
|
152
467
|
default?: undefined;
|
|
153
468
|
} | {
|
|
@@ -161,7 +476,7 @@ export declare const mapComponentProps: {
|
|
|
161
476
|
[key: string]: any;
|
|
162
477
|
} | import("../../_utils/props").RequestParams;
|
|
163
478
|
};
|
|
164
|
-
|
|
479
|
+
tooltipShow: {
|
|
165
480
|
type?: undefined;
|
|
166
481
|
default?: undefined;
|
|
167
482
|
} | {
|
|
@@ -175,7 +490,7 @@ export declare const mapComponentProps: {
|
|
|
175
490
|
[key: string]: any;
|
|
176
491
|
} | import("../../_utils/props").RequestParams;
|
|
177
492
|
};
|
|
178
|
-
|
|
493
|
+
tooltipTextStyleColor: {
|
|
179
494
|
type?: undefined;
|
|
180
495
|
default?: undefined;
|
|
181
496
|
} | {
|
|
@@ -189,7 +504,7 @@ export declare const mapComponentProps: {
|
|
|
189
504
|
[key: string]: any;
|
|
190
505
|
} | import("../../_utils/props").RequestParams;
|
|
191
506
|
};
|
|
192
|
-
|
|
507
|
+
tooltipFormatter: {
|
|
193
508
|
type?: undefined;
|
|
194
509
|
default?: undefined;
|
|
195
510
|
} | {
|