@ecan-bi/datav 1.0.50 → 1.0.53

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.
Files changed (125) hide show
  1. package/dist/index.es.js +125 -76
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +124 -75
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +37 -35
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +9 -0
  8. package/types/_utils/hooks/index.d.ts +15 -0
  9. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  10. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  11. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  12. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  13. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  14. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  15. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  16. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  17. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  18. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  19. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  20. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  21. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  22. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  23. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  24. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  25. package/types/_utils/props.d.ts +71 -0
  26. package/types/_utils/request.d.ts +2 -0
  27. package/types/_utils/util.d.ts +20 -0
  28. package/types/_utils/withInstall.d.ts +5 -0
  29. package/types/common/echarts/Echarts.d.ts +418 -0
  30. package/types/common/echarts/composables/api.d.ts +7 -0
  31. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  32. package/types/common/echarts/composables/index.d.ts +3 -0
  33. package/types/common/echarts/composables/loading.d.ts +10 -0
  34. package/types/common/echarts/index.d.ts +2 -0
  35. package/types/common/echarts/types.d.ts +20 -0
  36. package/types/common/echarts/utils.d.ts +6 -0
  37. package/types/common/index.d.ts +3 -0
  38. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  39. package/types/common/skeleton/index.d.ts +2 -0
  40. package/types/common/spin/Spin.vue.d.ts +18 -0
  41. package/types/common/spin/index.d.ts +2 -0
  42. package/types/components.d.ts +9 -0
  43. package/types/container/border/Border.vue.d.ts +622 -0
  44. package/types/container/border/index.d.ts +622 -0
  45. package/types/container/border/props.d.ts +315 -0
  46. package/types/container/index.d.ts +3 -0
  47. package/types/container/modal/Modal.vue.d.ts +505 -0
  48. package/types/container/modal/index.d.ts +506 -0
  49. package/types/container/modal/props.d.ts +179 -0
  50. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  51. package/types/container/tabs/index.d.ts +476 -0
  52. package/types/container/tabs/props.d.ts +251 -0
  53. package/types/control/button/Button.vue.d.ts +550 -0
  54. package/types/control/button/index.d.ts +550 -0
  55. package/types/control/button/props.d.ts +285 -0
  56. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  57. package/types/control/date-picker/index.d.ts +479 -0
  58. package/types/control/date-picker/props.d.ts +245 -0
  59. package/types/control/index.d.ts +5 -0
  60. package/types/control/input/Input.vue.d.ts +438 -0
  61. package/types/control/input/index.d.ts +439 -0
  62. package/types/control/input/props.d.ts +224 -0
  63. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  64. package/types/control/range-picker/index.d.ts +595 -0
  65. package/types/control/range-picker/props.d.ts +245 -0
  66. package/types/control/select/Select.vue.d.ts +613 -0
  67. package/types/control/select/index.d.ts +613 -0
  68. package/types/control/select/props.d.ts +321 -0
  69. package/types/graph/bar/Bar.vue.d.ts +2028 -0
  70. package/types/graph/bar/index.d.ts +2028 -0
  71. package/types/graph/bar/props.d.ts +984 -0
  72. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  73. package/types/graph/combo-graph/index.d.ts +1009 -0
  74. package/types/graph/combo-graph/props.d.ts +501 -0
  75. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  76. package/types/graph/custom-graph/index.d.ts +537 -0
  77. package/types/graph/custom-graph/props.d.ts +274 -0
  78. package/types/graph/index.d.ts +6 -0
  79. package/types/graph/line/Line.vue.d.ts +973 -0
  80. package/types/graph/line/index.d.ts +974 -0
  81. package/types/graph/line/props.d.ts +481 -0
  82. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  83. package/types/graph/pie/index.d.ts +1050 -0
  84. package/types/graph/pie/props.d.ts +533 -0
  85. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  86. package/types/graph/scatter/index.d.ts +950 -0
  87. package/types/graph/scatter/props.d.ts +468 -0
  88. package/types/index.d.ts +6 -0
  89. package/types/map/index.d.ts +1 -0
  90. package/types/map/map/Map.vue.d.ts +1699 -0
  91. package/types/map/map/index.d.ts +1700 -0
  92. package/types/map/map/props.d.ts +829 -0
  93. package/types/media/image/Image.vue.d.ts +476 -0
  94. package/types/media/image/index.d.ts +477 -0
  95. package/types/media/image/props.d.ts +244 -0
  96. package/types/media/index.d.ts +1 -0
  97. package/types/setting/index.d.ts +3 -0
  98. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  99. package/types/setting/page-config/index.d.ts +113 -0
  100. package/types/setting/page-config/props.d.ts +61 -0
  101. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  102. package/types/setting/provider-config/index.d.ts +79 -0
  103. package/types/setting/provider-config/props.d.ts +47 -0
  104. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  105. package/types/setting/renderer/index.d.ts +23 -0
  106. package/types/setting/renderer/props.d.ts +17 -0
  107. package/types/table/index.d.ts +1 -0
  108. package/types/table/table/Table.vue.d.ts +1724 -0
  109. package/types/table/table/index.d.ts +1724 -0
  110. package/types/table/table/props.d.ts +878 -0
  111. package/types/text/index.d.ts +5 -0
  112. package/types/text/list/List.vue.d.ts +849 -0
  113. package/types/text/list/index.d.ts +849 -0
  114. package/types/text/list/props.d.ts +441 -0
  115. package/types/text/proportion/Proportion.vue.d.ts +782 -0
  116. package/types/text/proportion/index.d.ts +782 -0
  117. package/types/text/proportion/props.d.ts +407 -0
  118. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  119. package/types/text/scroll-text/index.d.ts +4 -0
  120. package/types/text/text/Text.vue.d.ts +736 -0
  121. package/types/text/text/index.d.ts +736 -0
  122. package/types/text/text/props.d.ts +383 -0
  123. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  124. package/types/text/time-display/index.d.ts +548 -0
  125. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,1699 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ mapJson: {
3
+ type?: undefined;
4
+ default?: undefined;
5
+ } | {
6
+ type: any;
7
+ default: string | number | boolean | import("../../_utils/props").Events | {
8
+ [key: string]: any;
9
+ } | import("../../_utils/props").RequestParams | {
10
+ [key: string]: any;
11
+ }[] | {
12
+ name: string;
13
+ value: string;
14
+ };
15
+ };
16
+ data: {
17
+ type?: undefined;
18
+ default?: undefined;
19
+ } | {
20
+ type: any;
21
+ default: string | number | boolean | import("../../_utils/props").Events | {
22
+ [key: string]: any;
23
+ } | import("../../_utils/props").RequestParams | {
24
+ [key: string]: any;
25
+ }[] | {
26
+ name: string;
27
+ value: string;
28
+ };
29
+ };
30
+ backgroundImage: {
31
+ type?: undefined;
32
+ default?: undefined;
33
+ } | {
34
+ type: any;
35
+ default: string | number | boolean | import("../../_utils/props").Events | {
36
+ [key: string]: any;
37
+ } | import("../../_utils/props").RequestParams | {
38
+ [key: string]: any;
39
+ }[] | {
40
+ name: string;
41
+ value: string;
42
+ };
43
+ };
44
+ backgroundImageRepeat: {
45
+ type?: undefined;
46
+ default?: undefined;
47
+ } | {
48
+ type: any;
49
+ default: string | number | boolean | import("../../_utils/props").Events | {
50
+ [key: string]: any;
51
+ } | import("../../_utils/props").RequestParams | {
52
+ [key: string]: any;
53
+ }[] | {
54
+ name: string;
55
+ value: string;
56
+ };
57
+ };
58
+ symbolImage: {
59
+ type?: undefined;
60
+ default?: undefined;
61
+ } | {
62
+ type: any;
63
+ default: string | number | boolean | import("../../_utils/props").Events | {
64
+ [key: string]: any;
65
+ } | import("../../_utils/props").RequestParams | {
66
+ [key: string]: any;
67
+ }[] | {
68
+ name: string;
69
+ value: string;
70
+ };
71
+ };
72
+ symbolWidth: {
73
+ type?: undefined;
74
+ default?: undefined;
75
+ } | {
76
+ type: any;
77
+ default: string | number | boolean | import("../../_utils/props").Events | {
78
+ [key: string]: any;
79
+ } | import("../../_utils/props").RequestParams | {
80
+ [key: string]: any;
81
+ }[] | {
82
+ name: string;
83
+ value: string;
84
+ };
85
+ };
86
+ symbolHeight: {
87
+ type?: undefined;
88
+ default?: undefined;
89
+ } | {
90
+ type: any;
91
+ default: string | number | boolean | import("../../_utils/props").Events | {
92
+ [key: string]: any;
93
+ } | import("../../_utils/props").RequestParams | {
94
+ [key: string]: any;
95
+ }[] | {
96
+ name: string;
97
+ value: string;
98
+ };
99
+ };
100
+ geoZoom: {
101
+ type?: undefined;
102
+ default?: undefined;
103
+ } | {
104
+ type: any;
105
+ default: string | number | boolean | import("../../_utils/props").Events | {
106
+ [key: string]: any;
107
+ } | import("../../_utils/props").RequestParams | {
108
+ [key: string]: any;
109
+ }[] | {
110
+ name: string;
111
+ value: string;
112
+ };
113
+ };
114
+ geoRoam: {
115
+ type?: undefined;
116
+ default?: undefined;
117
+ } | {
118
+ type: any;
119
+ default: string | number | boolean | import("../../_utils/props").Events | {
120
+ [key: string]: any;
121
+ } | import("../../_utils/props").RequestParams | {
122
+ [key: string]: any;
123
+ }[] | {
124
+ name: string;
125
+ value: string;
126
+ };
127
+ };
128
+ geoCenter: {
129
+ type?: undefined;
130
+ default?: undefined;
131
+ } | {
132
+ type: any;
133
+ default: string | number | boolean | import("../../_utils/props").Events | {
134
+ [key: string]: any;
135
+ } | import("../../_utils/props").RequestParams | {
136
+ [key: string]: any;
137
+ }[] | {
138
+ name: string;
139
+ value: string;
140
+ };
141
+ };
142
+ geoBackgroundImage: {
143
+ type?: undefined;
144
+ default?: undefined;
145
+ } | {
146
+ type: any;
147
+ default: string | number | boolean | import("../../_utils/props").Events | {
148
+ [key: string]: any;
149
+ } | import("../../_utils/props").RequestParams | {
150
+ [key: string]: any;
151
+ }[] | {
152
+ name: string;
153
+ value: string;
154
+ };
155
+ };
156
+ geoBackgroundImageRepeat: {
157
+ type?: undefined;
158
+ default?: undefined;
159
+ } | {
160
+ type: any;
161
+ default: string | number | boolean | import("../../_utils/props").Events | {
162
+ [key: string]: any;
163
+ } | import("../../_utils/props").RequestParams | {
164
+ [key: string]: any;
165
+ }[] | {
166
+ name: string;
167
+ value: string;
168
+ };
169
+ };
170
+ geoLabelShow: {
171
+ type?: undefined;
172
+ default?: undefined;
173
+ } | {
174
+ type: any;
175
+ default: string | number | boolean | import("../../_utils/props").Events | {
176
+ [key: string]: any;
177
+ } | import("../../_utils/props").RequestParams | {
178
+ [key: string]: any;
179
+ }[] | {
180
+ name: string;
181
+ value: string;
182
+ };
183
+ };
184
+ geoLabelColor: {
185
+ type?: undefined;
186
+ default?: undefined;
187
+ } | {
188
+ type: any;
189
+ default: string | number | boolean | import("../../_utils/props").Events | {
190
+ [key: string]: any;
191
+ } | import("../../_utils/props").RequestParams | {
192
+ [key: string]: any;
193
+ }[] | {
194
+ name: string;
195
+ value: string;
196
+ };
197
+ };
198
+ geoLabelFontSize: {
199
+ type?: undefined;
200
+ default?: undefined;
201
+ } | {
202
+ type: any;
203
+ default: string | number | boolean | import("../../_utils/props").Events | {
204
+ [key: string]: any;
205
+ } | import("../../_utils/props").RequestParams | {
206
+ [key: string]: any;
207
+ }[] | {
208
+ name: string;
209
+ value: string;
210
+ };
211
+ };
212
+ geoItemStyleAreaColor: {
213
+ type?: undefined;
214
+ default?: undefined;
215
+ } | {
216
+ type: any;
217
+ default: string | number | boolean | import("../../_utils/props").Events | {
218
+ [key: string]: any;
219
+ } | import("../../_utils/props").RequestParams | {
220
+ [key: string]: any;
221
+ }[] | {
222
+ name: string;
223
+ value: string;
224
+ };
225
+ };
226
+ geoItemStyleBorderColor: {
227
+ type?: undefined;
228
+ default?: undefined;
229
+ } | {
230
+ type: any;
231
+ default: string | number | boolean | import("../../_utils/props").Events | {
232
+ [key: string]: any;
233
+ } | import("../../_utils/props").RequestParams | {
234
+ [key: string]: any;
235
+ }[] | {
236
+ name: string;
237
+ value: string;
238
+ };
239
+ };
240
+ geoItemStyleBorderWidth: {
241
+ type?: undefined;
242
+ default?: undefined;
243
+ } | {
244
+ type: any;
245
+ default: string | number | boolean | import("../../_utils/props").Events | {
246
+ [key: string]: any;
247
+ } | import("../../_utils/props").RequestParams | {
248
+ [key: string]: any;
249
+ }[] | {
250
+ name: string;
251
+ value: string;
252
+ };
253
+ };
254
+ geoItemStyleShadowColor: {
255
+ type?: undefined;
256
+ default?: undefined;
257
+ } | {
258
+ type: any;
259
+ default: string | number | boolean | import("../../_utils/props").Events | {
260
+ [key: string]: any;
261
+ } | import("../../_utils/props").RequestParams | {
262
+ [key: string]: any;
263
+ }[] | {
264
+ name: string;
265
+ value: string;
266
+ };
267
+ };
268
+ geoItemStyleShadowOffsetX: {
269
+ type?: undefined;
270
+ default?: undefined;
271
+ } | {
272
+ type: any;
273
+ default: string | number | boolean | import("../../_utils/props").Events | {
274
+ [key: string]: any;
275
+ } | import("../../_utils/props").RequestParams | {
276
+ [key: string]: any;
277
+ }[] | {
278
+ name: string;
279
+ value: string;
280
+ };
281
+ };
282
+ geoItemStyleShadowOffsetY: {
283
+ type?: undefined;
284
+ default?: undefined;
285
+ } | {
286
+ type: any;
287
+ default: string | number | boolean | import("../../_utils/props").Events | {
288
+ [key: string]: any;
289
+ } | import("../../_utils/props").RequestParams | {
290
+ [key: string]: any;
291
+ }[] | {
292
+ name: string;
293
+ value: string;
294
+ };
295
+ };
296
+ geoItemStyleShadowBlur: {
297
+ type?: undefined;
298
+ default?: undefined;
299
+ } | {
300
+ type: any;
301
+ default: string | number | boolean | import("../../_utils/props").Events | {
302
+ [key: string]: any;
303
+ } | import("../../_utils/props").RequestParams | {
304
+ [key: string]: any;
305
+ }[] | {
306
+ name: string;
307
+ value: string;
308
+ };
309
+ };
310
+ geoEmphasisDisabled: {
311
+ type?: undefined;
312
+ default?: undefined;
313
+ } | {
314
+ type: any;
315
+ default: string | number | boolean | import("../../_utils/props").Events | {
316
+ [key: string]: any;
317
+ } | import("../../_utils/props").RequestParams | {
318
+ [key: string]: any;
319
+ }[] | {
320
+ name: string;
321
+ value: string;
322
+ };
323
+ };
324
+ geoEmphasisLabelColor: {
325
+ type?: undefined;
326
+ default?: undefined;
327
+ } | {
328
+ type: any;
329
+ default: string | number | boolean | import("../../_utils/props").Events | {
330
+ [key: string]: any;
331
+ } | import("../../_utils/props").RequestParams | {
332
+ [key: string]: any;
333
+ }[] | {
334
+ name: string;
335
+ value: string;
336
+ };
337
+ };
338
+ geoEmphasisItemStyleAreaColor: {
339
+ type?: undefined;
340
+ default?: undefined;
341
+ } | {
342
+ type: any;
343
+ default: string | number | boolean | import("../../_utils/props").Events | {
344
+ [key: string]: any;
345
+ } | import("../../_utils/props").RequestParams | {
346
+ [key: string]: any;
347
+ }[] | {
348
+ name: string;
349
+ value: string;
350
+ };
351
+ };
352
+ geoEmphasisItemStyleBorderColor: {
353
+ type?: undefined;
354
+ default?: undefined;
355
+ } | {
356
+ type: any;
357
+ default: string | number | boolean | import("../../_utils/props").Events | {
358
+ [key: string]: any;
359
+ } | import("../../_utils/props").RequestParams | {
360
+ [key: string]: any;
361
+ }[] | {
362
+ name: string;
363
+ value: string;
364
+ };
365
+ };
366
+ itemStyleColor: {
367
+ type?: undefined;
368
+ default?: undefined;
369
+ } | {
370
+ type: any;
371
+ default: string | number | boolean | import("../../_utils/props").Events | {
372
+ [key: string]: any;
373
+ } | import("../../_utils/props").RequestParams | {
374
+ [key: string]: any;
375
+ }[] | {
376
+ name: string;
377
+ value: string;
378
+ };
379
+ };
380
+ labelFontSize: {
381
+ type?: undefined;
382
+ default?: undefined;
383
+ } | {
384
+ type: any;
385
+ default: string | number | boolean | import("../../_utils/props").Events | {
386
+ [key: string]: any;
387
+ } | import("../../_utils/props").RequestParams | {
388
+ [key: string]: any;
389
+ }[] | {
390
+ name: string;
391
+ value: string;
392
+ };
393
+ };
394
+ labelFormatter: {
395
+ type?: undefined;
396
+ default?: undefined;
397
+ } | {
398
+ type: any;
399
+ default: string | number | boolean | import("../../_utils/props").Events | {
400
+ [key: string]: any;
401
+ } | import("../../_utils/props").RequestParams | {
402
+ [key: string]: any;
403
+ }[] | {
404
+ name: string;
405
+ value: string;
406
+ };
407
+ };
408
+ labelShow: {
409
+ type?: undefined;
410
+ default?: undefined;
411
+ } | {
412
+ type: any;
413
+ default: string | number | boolean | import("../../_utils/props").Events | {
414
+ [key: string]: any;
415
+ } | import("../../_utils/props").RequestParams | {
416
+ [key: string]: any;
417
+ }[] | {
418
+ name: string;
419
+ value: string;
420
+ };
421
+ };
422
+ labelColor: {
423
+ type?: undefined;
424
+ default?: undefined;
425
+ } | {
426
+ type: any;
427
+ default: string | number | boolean | import("../../_utils/props").Events | {
428
+ [key: string]: any;
429
+ } | import("../../_utils/props").RequestParams | {
430
+ [key: string]: any;
431
+ }[] | {
432
+ name: string;
433
+ value: string;
434
+ };
435
+ };
436
+ tooltipShow: {
437
+ type?: undefined;
438
+ default?: undefined;
439
+ } | {
440
+ type: any;
441
+ default: string | number | boolean | import("../../_utils/props").Events | {
442
+ [key: string]: any;
443
+ } | import("../../_utils/props").RequestParams | {
444
+ [key: string]: any;
445
+ }[] | {
446
+ name: string;
447
+ value: string;
448
+ };
449
+ };
450
+ tooltipTextStyleColor: {
451
+ type?: undefined;
452
+ default?: undefined;
453
+ } | {
454
+ type: any;
455
+ default: string | number | boolean | import("../../_utils/props").Events | {
456
+ [key: string]: any;
457
+ } | import("../../_utils/props").RequestParams | {
458
+ [key: string]: any;
459
+ }[] | {
460
+ name: string;
461
+ value: string;
462
+ };
463
+ };
464
+ tooltipFormatter: {
465
+ type?: undefined;
466
+ default?: undefined;
467
+ } | {
468
+ type: any;
469
+ default: string | number | boolean | import("../../_utils/props").Events | {
470
+ [key: string]: any;
471
+ } | import("../../_utils/props").RequestParams | {
472
+ [key: string]: any;
473
+ }[] | {
474
+ name: string;
475
+ value: string;
476
+ };
477
+ };
478
+ id: {
479
+ type?: undefined;
480
+ default?: undefined;
481
+ } | {
482
+ type: any;
483
+ default: string | number | boolean | import("../../_utils/props").Events | {
484
+ [key: string]: any;
485
+ } | import("../../_utils/props").RequestParams | {
486
+ [key: string]: any;
487
+ }[] | {
488
+ name: string;
489
+ value: string;
490
+ };
491
+ };
492
+ name: {
493
+ type?: undefined;
494
+ default?: undefined;
495
+ } | {
496
+ type: any;
497
+ default: string | number | boolean | import("../../_utils/props").Events | {
498
+ [key: string]: any;
499
+ } | import("../../_utils/props").RequestParams | {
500
+ [key: string]: any;
501
+ }[] | {
502
+ name: string;
503
+ value: string;
504
+ };
505
+ };
506
+ keyName: {
507
+ type?: undefined;
508
+ default?: undefined;
509
+ } | {
510
+ type: any;
511
+ default: string | number | boolean | import("../../_utils/props").Events | {
512
+ [key: string]: any;
513
+ } | import("../../_utils/props").RequestParams | {
514
+ [key: string]: any;
515
+ }[] | {
516
+ name: string;
517
+ value: string;
518
+ };
519
+ };
520
+ type: {
521
+ type?: undefined;
522
+ default?: undefined;
523
+ } | {
524
+ type: any;
525
+ default: string | number | boolean | import("../../_utils/props").Events | {
526
+ [key: string]: any;
527
+ } | import("../../_utils/props").RequestParams | {
528
+ [key: string]: any;
529
+ }[] | {
530
+ name: string;
531
+ value: string;
532
+ };
533
+ };
534
+ width: {
535
+ type?: undefined;
536
+ default?: undefined;
537
+ } | {
538
+ type: any;
539
+ default: string | number | boolean | import("../../_utils/props").Events | {
540
+ [key: string]: any;
541
+ } | import("../../_utils/props").RequestParams | {
542
+ [key: string]: any;
543
+ }[] | {
544
+ name: string;
545
+ value: string;
546
+ };
547
+ };
548
+ height: {
549
+ type?: undefined;
550
+ default?: undefined;
551
+ } | {
552
+ type: any;
553
+ default: string | number | boolean | import("../../_utils/props").Events | {
554
+ [key: string]: any;
555
+ } | import("../../_utils/props").RequestParams | {
556
+ [key: string]: any;
557
+ }[] | {
558
+ name: string;
559
+ value: string;
560
+ };
561
+ };
562
+ position: {
563
+ type?: undefined;
564
+ default?: undefined;
565
+ } | {
566
+ type: any;
567
+ default: string | number | boolean | import("../../_utils/props").Events | {
568
+ [key: string]: any;
569
+ } | import("../../_utils/props").RequestParams | {
570
+ [key: string]: any;
571
+ }[] | {
572
+ name: string;
573
+ value: string;
574
+ };
575
+ };
576
+ top: {
577
+ type?: undefined;
578
+ default?: undefined;
579
+ } | {
580
+ type: any;
581
+ default: string | number | boolean | import("../../_utils/props").Events | {
582
+ [key: string]: any;
583
+ } | import("../../_utils/props").RequestParams | {
584
+ [key: string]: any;
585
+ }[] | {
586
+ name: string;
587
+ value: string;
588
+ };
589
+ };
590
+ left: {
591
+ type?: undefined;
592
+ default?: undefined;
593
+ } | {
594
+ type: any;
595
+ default: string | number | boolean | import("../../_utils/props").Events | {
596
+ [key: string]: any;
597
+ } | import("../../_utils/props").RequestParams | {
598
+ [key: string]: any;
599
+ }[] | {
600
+ name: string;
601
+ value: string;
602
+ };
603
+ };
604
+ zIndex: {
605
+ type?: undefined;
606
+ default?: undefined;
607
+ } | {
608
+ type: any;
609
+ default: string | number | boolean | import("../../_utils/props").Events | {
610
+ [key: string]: any;
611
+ } | import("../../_utils/props").RequestParams | {
612
+ [key: string]: any;
613
+ }[] | {
614
+ name: string;
615
+ value: string;
616
+ };
617
+ };
618
+ rotate: {
619
+ type?: undefined;
620
+ default?: undefined;
621
+ } | {
622
+ type: any;
623
+ default: string | number | boolean | import("../../_utils/props").Events | {
624
+ [key: string]: any;
625
+ } | import("../../_utils/props").RequestParams | {
626
+ [key: string]: any;
627
+ }[] | {
628
+ name: string;
629
+ value: string;
630
+ };
631
+ };
632
+ isShow: {
633
+ type?: undefined;
634
+ default?: undefined;
635
+ } | {
636
+ type: any;
637
+ default: string | number | boolean | import("../../_utils/props").Events | {
638
+ [key: string]: any;
639
+ } | import("../../_utils/props").RequestParams | {
640
+ [key: string]: any;
641
+ }[] | {
642
+ name: string;
643
+ value: string;
644
+ };
645
+ };
646
+ isRender: {
647
+ type?: undefined;
648
+ default?: undefined;
649
+ } | {
650
+ type: any;
651
+ default: string | number | boolean | import("../../_utils/props").Events | {
652
+ [key: string]: any;
653
+ } | import("../../_utils/props").RequestParams | {
654
+ [key: string]: any;
655
+ }[] | {
656
+ name: string;
657
+ value: string;
658
+ };
659
+ };
660
+ events: {
661
+ type?: undefined;
662
+ default?: undefined;
663
+ } | {
664
+ type: any;
665
+ default: string | number | boolean | import("../../_utils/props").Events | {
666
+ [key: string]: any;
667
+ } | import("../../_utils/props").RequestParams | {
668
+ [key: string]: any;
669
+ }[] | {
670
+ name: string;
671
+ value: string;
672
+ };
673
+ };
674
+ requestUrl: {
675
+ type?: undefined;
676
+ default?: undefined;
677
+ } | {
678
+ type: any;
679
+ default: string | number | boolean | import("../../_utils/props").Events | {
680
+ [key: string]: any;
681
+ } | import("../../_utils/props").RequestParams | {
682
+ [key: string]: any;
683
+ }[] | {
684
+ name: string;
685
+ value: string;
686
+ };
687
+ };
688
+ requestMethod: {
689
+ type?: undefined;
690
+ default?: undefined;
691
+ } | {
692
+ type: any;
693
+ default: string | number | boolean | import("../../_utils/props").Events | {
694
+ [key: string]: any;
695
+ } | import("../../_utils/props").RequestParams | {
696
+ [key: string]: any;
697
+ }[] | {
698
+ name: string;
699
+ value: string;
700
+ };
701
+ };
702
+ requestHeaders: {
703
+ type?: undefined;
704
+ default?: undefined;
705
+ } | {
706
+ type: any;
707
+ default: string | number | boolean | import("../../_utils/props").Events | {
708
+ [key: string]: any;
709
+ } | import("../../_utils/props").RequestParams | {
710
+ [key: string]: any;
711
+ }[] | {
712
+ name: string;
713
+ value: string;
714
+ };
715
+ };
716
+ isOpenRequestTimer: {
717
+ type?: undefined;
718
+ default?: undefined;
719
+ } | {
720
+ type: any;
721
+ default: string | number | boolean | import("../../_utils/props").Events | {
722
+ [key: string]: any;
723
+ } | import("../../_utils/props").RequestParams | {
724
+ [key: string]: any;
725
+ }[] | {
726
+ name: string;
727
+ value: string;
728
+ };
729
+ };
730
+ requestInterval: {
731
+ type?: undefined;
732
+ default?: undefined;
733
+ } | {
734
+ type: any;
735
+ default: string | number | boolean | import("../../_utils/props").Events | {
736
+ [key: string]: any;
737
+ } | import("../../_utils/props").RequestParams | {
738
+ [key: string]: any;
739
+ }[] | {
740
+ name: string;
741
+ value: string;
742
+ };
743
+ };
744
+ requestParams: {
745
+ type?: undefined;
746
+ default?: undefined;
747
+ } | {
748
+ type: any;
749
+ default: string | number | boolean | import("../../_utils/props").Events | {
750
+ [key: string]: any;
751
+ } | import("../../_utils/props").RequestParams | {
752
+ [key: string]: any;
753
+ }[] | {
754
+ name: string;
755
+ value: string;
756
+ };
757
+ };
758
+ requestSort: {
759
+ type?: undefined;
760
+ default?: undefined;
761
+ } | {
762
+ type: any;
763
+ default: string | number | boolean | import("../../_utils/props").Events | {
764
+ [key: string]: any;
765
+ } | import("../../_utils/props").RequestParams | {
766
+ [key: string]: any;
767
+ }[] | {
768
+ name: string;
769
+ value: string;
770
+ };
771
+ };
772
+ dataType: {
773
+ type?: undefined;
774
+ default?: undefined;
775
+ } | {
776
+ type: any;
777
+ default: string | number | boolean | import("../../_utils/props").Events | {
778
+ [key: string]: any;
779
+ } | import("../../_utils/props").RequestParams | {
780
+ [key: string]: any;
781
+ }[] | {
782
+ name: string;
783
+ value: string;
784
+ };
785
+ };
786
+ }, {
787
+ option: import("vue").ComputedRef<{
788
+ tooltip: {
789
+ show: boolean;
790
+ };
791
+ graphic: {
792
+ type: string;
793
+ style: {
794
+ width: number;
795
+ height: number;
796
+ image: string;
797
+ };
798
+ top: string;
799
+ }[];
800
+ geo: {
801
+ zoom: string | number | boolean | {
802
+ [key: string]: any;
803
+ };
804
+ roam: string | number | boolean | {
805
+ [key: string]: any;
806
+ };
807
+ center: string[];
808
+ map: string;
809
+ tooltip: {
810
+ show: boolean;
811
+ };
812
+ label: {
813
+ show: string | number | boolean | {
814
+ [key: string]: any;
815
+ };
816
+ color: string | number | boolean | {
817
+ [key: string]: any;
818
+ };
819
+ fontSize: string | number | boolean | {
820
+ [key: string]: any;
821
+ };
822
+ };
823
+ itemStyle: {
824
+ areaColor: string | number | boolean | {
825
+ [key: string]: any;
826
+ };
827
+ borderColor: string | number | boolean | {
828
+ [key: string]: any;
829
+ };
830
+ borderWidth: string | number | boolean | {
831
+ [key: string]: any;
832
+ };
833
+ shadowColor: string | number | boolean | {
834
+ [key: string]: any;
835
+ };
836
+ shadowBlur: string | number | boolean | {
837
+ [key: string]: any;
838
+ };
839
+ shadowOffsetX: string | number | boolean | {
840
+ [key: string]: any;
841
+ };
842
+ shadowOffsetY: string | number | boolean | {
843
+ [key: string]: any;
844
+ };
845
+ };
846
+ emphasis: {
847
+ disabled: string | number | boolean | {
848
+ [key: string]: any;
849
+ };
850
+ label: {
851
+ color: string | number | boolean | {
852
+ [key: string]: any;
853
+ };
854
+ };
855
+ itemStyle: {
856
+ areaColor: string | number | boolean | {
857
+ [key: string]: any;
858
+ };
859
+ borderColor: string | number | boolean | {
860
+ [key: string]: any;
861
+ };
862
+ };
863
+ };
864
+ };
865
+ series: {
866
+ type: string;
867
+ coordinateSystem: string;
868
+ itemStyle: {
869
+ color: string | number | boolean | {
870
+ [key: string]: any;
871
+ };
872
+ };
873
+ symbol: string;
874
+ symbolSize: (string | number | boolean | {
875
+ [key: string]: any;
876
+ })[];
877
+ label: {
878
+ show: string | number | boolean | {
879
+ [key: string]: any;
880
+ };
881
+ fontSize: string | number | boolean | {
882
+ [key: string]: any;
883
+ };
884
+ formatter: string | number | boolean | {
885
+ [key: string]: any;
886
+ };
887
+ color: string | number | boolean | {
888
+ [key: string]: any;
889
+ };
890
+ };
891
+ tooltip: {
892
+ show: string | number | boolean | {
893
+ [key: string]: any;
894
+ };
895
+ formatter: string | number | boolean | {
896
+ [key: string]: any;
897
+ };
898
+ textStyle: {
899
+ color: string | number | boolean | {
900
+ [key: string]: any;
901
+ };
902
+ };
903
+ };
904
+ data: string | number | boolean | {
905
+ [key: string]: any;
906
+ };
907
+ }[];
908
+ }>;
909
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
910
+ isLoadedData: import("vue").Ref<boolean>;
911
+ geoBackgroundImageRef: import("vue").Ref<any>;
912
+ myGeoBackgroundImage: import("vue").ComputedRef<string>;
913
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
914
+ mapJson: {
915
+ type?: undefined;
916
+ default?: undefined;
917
+ } | {
918
+ type: any;
919
+ default: string | number | boolean | import("../../_utils/props").Events | {
920
+ [key: string]: any;
921
+ } | import("../../_utils/props").RequestParams | {
922
+ [key: string]: any;
923
+ }[] | {
924
+ name: string;
925
+ value: string;
926
+ };
927
+ };
928
+ data: {
929
+ type?: undefined;
930
+ default?: undefined;
931
+ } | {
932
+ type: any;
933
+ default: string | number | boolean | import("../../_utils/props").Events | {
934
+ [key: string]: any;
935
+ } | import("../../_utils/props").RequestParams | {
936
+ [key: string]: any;
937
+ }[] | {
938
+ name: string;
939
+ value: string;
940
+ };
941
+ };
942
+ backgroundImage: {
943
+ type?: undefined;
944
+ default?: undefined;
945
+ } | {
946
+ type: any;
947
+ default: string | number | boolean | import("../../_utils/props").Events | {
948
+ [key: string]: any;
949
+ } | import("../../_utils/props").RequestParams | {
950
+ [key: string]: any;
951
+ }[] | {
952
+ name: string;
953
+ value: string;
954
+ };
955
+ };
956
+ backgroundImageRepeat: {
957
+ type?: undefined;
958
+ default?: undefined;
959
+ } | {
960
+ type: any;
961
+ default: string | number | boolean | import("../../_utils/props").Events | {
962
+ [key: string]: any;
963
+ } | import("../../_utils/props").RequestParams | {
964
+ [key: string]: any;
965
+ }[] | {
966
+ name: string;
967
+ value: string;
968
+ };
969
+ };
970
+ symbolImage: {
971
+ type?: undefined;
972
+ default?: undefined;
973
+ } | {
974
+ type: any;
975
+ default: string | number | boolean | import("../../_utils/props").Events | {
976
+ [key: string]: any;
977
+ } | import("../../_utils/props").RequestParams | {
978
+ [key: string]: any;
979
+ }[] | {
980
+ name: string;
981
+ value: string;
982
+ };
983
+ };
984
+ symbolWidth: {
985
+ type?: undefined;
986
+ default?: undefined;
987
+ } | {
988
+ type: any;
989
+ default: string | number | boolean | import("../../_utils/props").Events | {
990
+ [key: string]: any;
991
+ } | import("../../_utils/props").RequestParams | {
992
+ [key: string]: any;
993
+ }[] | {
994
+ name: string;
995
+ value: string;
996
+ };
997
+ };
998
+ symbolHeight: {
999
+ type?: undefined;
1000
+ default?: undefined;
1001
+ } | {
1002
+ type: any;
1003
+ default: string | number | boolean | import("../../_utils/props").Events | {
1004
+ [key: string]: any;
1005
+ } | import("../../_utils/props").RequestParams | {
1006
+ [key: string]: any;
1007
+ }[] | {
1008
+ name: string;
1009
+ value: string;
1010
+ };
1011
+ };
1012
+ geoZoom: {
1013
+ type?: undefined;
1014
+ default?: undefined;
1015
+ } | {
1016
+ type: any;
1017
+ default: string | number | boolean | import("../../_utils/props").Events | {
1018
+ [key: string]: any;
1019
+ } | import("../../_utils/props").RequestParams | {
1020
+ [key: string]: any;
1021
+ }[] | {
1022
+ name: string;
1023
+ value: string;
1024
+ };
1025
+ };
1026
+ geoRoam: {
1027
+ type?: undefined;
1028
+ default?: undefined;
1029
+ } | {
1030
+ type: any;
1031
+ default: string | number | boolean | import("../../_utils/props").Events | {
1032
+ [key: string]: any;
1033
+ } | import("../../_utils/props").RequestParams | {
1034
+ [key: string]: any;
1035
+ }[] | {
1036
+ name: string;
1037
+ value: string;
1038
+ };
1039
+ };
1040
+ geoCenter: {
1041
+ type?: undefined;
1042
+ default?: undefined;
1043
+ } | {
1044
+ type: any;
1045
+ default: string | number | boolean | import("../../_utils/props").Events | {
1046
+ [key: string]: any;
1047
+ } | import("../../_utils/props").RequestParams | {
1048
+ [key: string]: any;
1049
+ }[] | {
1050
+ name: string;
1051
+ value: string;
1052
+ };
1053
+ };
1054
+ geoBackgroundImage: {
1055
+ type?: undefined;
1056
+ default?: undefined;
1057
+ } | {
1058
+ type: any;
1059
+ default: string | number | boolean | import("../../_utils/props").Events | {
1060
+ [key: string]: any;
1061
+ } | import("../../_utils/props").RequestParams | {
1062
+ [key: string]: any;
1063
+ }[] | {
1064
+ name: string;
1065
+ value: string;
1066
+ };
1067
+ };
1068
+ geoBackgroundImageRepeat: {
1069
+ type?: undefined;
1070
+ default?: undefined;
1071
+ } | {
1072
+ type: any;
1073
+ default: string | number | boolean | import("../../_utils/props").Events | {
1074
+ [key: string]: any;
1075
+ } | import("../../_utils/props").RequestParams | {
1076
+ [key: string]: any;
1077
+ }[] | {
1078
+ name: string;
1079
+ value: string;
1080
+ };
1081
+ };
1082
+ geoLabelShow: {
1083
+ type?: undefined;
1084
+ default?: undefined;
1085
+ } | {
1086
+ type: any;
1087
+ default: string | number | boolean | import("../../_utils/props").Events | {
1088
+ [key: string]: any;
1089
+ } | import("../../_utils/props").RequestParams | {
1090
+ [key: string]: any;
1091
+ }[] | {
1092
+ name: string;
1093
+ value: string;
1094
+ };
1095
+ };
1096
+ geoLabelColor: {
1097
+ type?: undefined;
1098
+ default?: undefined;
1099
+ } | {
1100
+ type: any;
1101
+ default: string | number | boolean | import("../../_utils/props").Events | {
1102
+ [key: string]: any;
1103
+ } | import("../../_utils/props").RequestParams | {
1104
+ [key: string]: any;
1105
+ }[] | {
1106
+ name: string;
1107
+ value: string;
1108
+ };
1109
+ };
1110
+ geoLabelFontSize: {
1111
+ type?: undefined;
1112
+ default?: undefined;
1113
+ } | {
1114
+ type: any;
1115
+ default: string | number | boolean | import("../../_utils/props").Events | {
1116
+ [key: string]: any;
1117
+ } | import("../../_utils/props").RequestParams | {
1118
+ [key: string]: any;
1119
+ }[] | {
1120
+ name: string;
1121
+ value: string;
1122
+ };
1123
+ };
1124
+ geoItemStyleAreaColor: {
1125
+ type?: undefined;
1126
+ default?: undefined;
1127
+ } | {
1128
+ type: any;
1129
+ default: string | number | boolean | import("../../_utils/props").Events | {
1130
+ [key: string]: any;
1131
+ } | import("../../_utils/props").RequestParams | {
1132
+ [key: string]: any;
1133
+ }[] | {
1134
+ name: string;
1135
+ value: string;
1136
+ };
1137
+ };
1138
+ geoItemStyleBorderColor: {
1139
+ type?: undefined;
1140
+ default?: undefined;
1141
+ } | {
1142
+ type: any;
1143
+ default: string | number | boolean | import("../../_utils/props").Events | {
1144
+ [key: string]: any;
1145
+ } | import("../../_utils/props").RequestParams | {
1146
+ [key: string]: any;
1147
+ }[] | {
1148
+ name: string;
1149
+ value: string;
1150
+ };
1151
+ };
1152
+ geoItemStyleBorderWidth: {
1153
+ type?: undefined;
1154
+ default?: undefined;
1155
+ } | {
1156
+ type: any;
1157
+ default: string | number | boolean | import("../../_utils/props").Events | {
1158
+ [key: string]: any;
1159
+ } | import("../../_utils/props").RequestParams | {
1160
+ [key: string]: any;
1161
+ }[] | {
1162
+ name: string;
1163
+ value: string;
1164
+ };
1165
+ };
1166
+ geoItemStyleShadowColor: {
1167
+ type?: undefined;
1168
+ default?: undefined;
1169
+ } | {
1170
+ type: any;
1171
+ default: string | number | boolean | import("../../_utils/props").Events | {
1172
+ [key: string]: any;
1173
+ } | import("../../_utils/props").RequestParams | {
1174
+ [key: string]: any;
1175
+ }[] | {
1176
+ name: string;
1177
+ value: string;
1178
+ };
1179
+ };
1180
+ geoItemStyleShadowOffsetX: {
1181
+ type?: undefined;
1182
+ default?: undefined;
1183
+ } | {
1184
+ type: any;
1185
+ default: string | number | boolean | import("../../_utils/props").Events | {
1186
+ [key: string]: any;
1187
+ } | import("../../_utils/props").RequestParams | {
1188
+ [key: string]: any;
1189
+ }[] | {
1190
+ name: string;
1191
+ value: string;
1192
+ };
1193
+ };
1194
+ geoItemStyleShadowOffsetY: {
1195
+ type?: undefined;
1196
+ default?: undefined;
1197
+ } | {
1198
+ type: any;
1199
+ default: string | number | boolean | import("../../_utils/props").Events | {
1200
+ [key: string]: any;
1201
+ } | import("../../_utils/props").RequestParams | {
1202
+ [key: string]: any;
1203
+ }[] | {
1204
+ name: string;
1205
+ value: string;
1206
+ };
1207
+ };
1208
+ geoItemStyleShadowBlur: {
1209
+ type?: undefined;
1210
+ default?: undefined;
1211
+ } | {
1212
+ type: any;
1213
+ default: string | number | boolean | import("../../_utils/props").Events | {
1214
+ [key: string]: any;
1215
+ } | import("../../_utils/props").RequestParams | {
1216
+ [key: string]: any;
1217
+ }[] | {
1218
+ name: string;
1219
+ value: string;
1220
+ };
1221
+ };
1222
+ geoEmphasisDisabled: {
1223
+ type?: undefined;
1224
+ default?: undefined;
1225
+ } | {
1226
+ type: any;
1227
+ default: string | number | boolean | import("../../_utils/props").Events | {
1228
+ [key: string]: any;
1229
+ } | import("../../_utils/props").RequestParams | {
1230
+ [key: string]: any;
1231
+ }[] | {
1232
+ name: string;
1233
+ value: string;
1234
+ };
1235
+ };
1236
+ geoEmphasisLabelColor: {
1237
+ type?: undefined;
1238
+ default?: undefined;
1239
+ } | {
1240
+ type: any;
1241
+ default: string | number | boolean | import("../../_utils/props").Events | {
1242
+ [key: string]: any;
1243
+ } | import("../../_utils/props").RequestParams | {
1244
+ [key: string]: any;
1245
+ }[] | {
1246
+ name: string;
1247
+ value: string;
1248
+ };
1249
+ };
1250
+ geoEmphasisItemStyleAreaColor: {
1251
+ type?: undefined;
1252
+ default?: undefined;
1253
+ } | {
1254
+ type: any;
1255
+ default: string | number | boolean | import("../../_utils/props").Events | {
1256
+ [key: string]: any;
1257
+ } | import("../../_utils/props").RequestParams | {
1258
+ [key: string]: any;
1259
+ }[] | {
1260
+ name: string;
1261
+ value: string;
1262
+ };
1263
+ };
1264
+ geoEmphasisItemStyleBorderColor: {
1265
+ type?: undefined;
1266
+ default?: undefined;
1267
+ } | {
1268
+ type: any;
1269
+ default: string | number | boolean | import("../../_utils/props").Events | {
1270
+ [key: string]: any;
1271
+ } | import("../../_utils/props").RequestParams | {
1272
+ [key: string]: any;
1273
+ }[] | {
1274
+ name: string;
1275
+ value: string;
1276
+ };
1277
+ };
1278
+ itemStyleColor: {
1279
+ type?: undefined;
1280
+ default?: undefined;
1281
+ } | {
1282
+ type: any;
1283
+ default: string | number | boolean | import("../../_utils/props").Events | {
1284
+ [key: string]: any;
1285
+ } | import("../../_utils/props").RequestParams | {
1286
+ [key: string]: any;
1287
+ }[] | {
1288
+ name: string;
1289
+ value: string;
1290
+ };
1291
+ };
1292
+ labelFontSize: {
1293
+ type?: undefined;
1294
+ default?: undefined;
1295
+ } | {
1296
+ type: any;
1297
+ default: string | number | boolean | import("../../_utils/props").Events | {
1298
+ [key: string]: any;
1299
+ } | import("../../_utils/props").RequestParams | {
1300
+ [key: string]: any;
1301
+ }[] | {
1302
+ name: string;
1303
+ value: string;
1304
+ };
1305
+ };
1306
+ labelFormatter: {
1307
+ type?: undefined;
1308
+ default?: undefined;
1309
+ } | {
1310
+ type: any;
1311
+ default: string | number | boolean | import("../../_utils/props").Events | {
1312
+ [key: string]: any;
1313
+ } | import("../../_utils/props").RequestParams | {
1314
+ [key: string]: any;
1315
+ }[] | {
1316
+ name: string;
1317
+ value: string;
1318
+ };
1319
+ };
1320
+ labelShow: {
1321
+ type?: undefined;
1322
+ default?: undefined;
1323
+ } | {
1324
+ type: any;
1325
+ default: string | number | boolean | import("../../_utils/props").Events | {
1326
+ [key: string]: any;
1327
+ } | import("../../_utils/props").RequestParams | {
1328
+ [key: string]: any;
1329
+ }[] | {
1330
+ name: string;
1331
+ value: string;
1332
+ };
1333
+ };
1334
+ labelColor: {
1335
+ type?: undefined;
1336
+ default?: undefined;
1337
+ } | {
1338
+ type: any;
1339
+ default: string | number | boolean | import("../../_utils/props").Events | {
1340
+ [key: string]: any;
1341
+ } | import("../../_utils/props").RequestParams | {
1342
+ [key: string]: any;
1343
+ }[] | {
1344
+ name: string;
1345
+ value: string;
1346
+ };
1347
+ };
1348
+ tooltipShow: {
1349
+ type?: undefined;
1350
+ default?: undefined;
1351
+ } | {
1352
+ type: any;
1353
+ default: string | number | boolean | import("../../_utils/props").Events | {
1354
+ [key: string]: any;
1355
+ } | import("../../_utils/props").RequestParams | {
1356
+ [key: string]: any;
1357
+ }[] | {
1358
+ name: string;
1359
+ value: string;
1360
+ };
1361
+ };
1362
+ tooltipTextStyleColor: {
1363
+ type?: undefined;
1364
+ default?: undefined;
1365
+ } | {
1366
+ type: any;
1367
+ default: string | number | boolean | import("../../_utils/props").Events | {
1368
+ [key: string]: any;
1369
+ } | import("../../_utils/props").RequestParams | {
1370
+ [key: string]: any;
1371
+ }[] | {
1372
+ name: string;
1373
+ value: string;
1374
+ };
1375
+ };
1376
+ tooltipFormatter: {
1377
+ type?: undefined;
1378
+ default?: undefined;
1379
+ } | {
1380
+ type: any;
1381
+ default: string | number | boolean | import("../../_utils/props").Events | {
1382
+ [key: string]: any;
1383
+ } | import("../../_utils/props").RequestParams | {
1384
+ [key: string]: any;
1385
+ }[] | {
1386
+ name: string;
1387
+ value: string;
1388
+ };
1389
+ };
1390
+ id: {
1391
+ type?: undefined;
1392
+ default?: undefined;
1393
+ } | {
1394
+ type: any;
1395
+ default: string | number | boolean | import("../../_utils/props").Events | {
1396
+ [key: string]: any;
1397
+ } | import("../../_utils/props").RequestParams | {
1398
+ [key: string]: any;
1399
+ }[] | {
1400
+ name: string;
1401
+ value: string;
1402
+ };
1403
+ };
1404
+ name: {
1405
+ type?: undefined;
1406
+ default?: undefined;
1407
+ } | {
1408
+ type: any;
1409
+ default: string | number | boolean | import("../../_utils/props").Events | {
1410
+ [key: string]: any;
1411
+ } | import("../../_utils/props").RequestParams | {
1412
+ [key: string]: any;
1413
+ }[] | {
1414
+ name: string;
1415
+ value: string;
1416
+ };
1417
+ };
1418
+ keyName: {
1419
+ type?: undefined;
1420
+ default?: undefined;
1421
+ } | {
1422
+ type: any;
1423
+ default: string | number | boolean | import("../../_utils/props").Events | {
1424
+ [key: string]: any;
1425
+ } | import("../../_utils/props").RequestParams | {
1426
+ [key: string]: any;
1427
+ }[] | {
1428
+ name: string;
1429
+ value: string;
1430
+ };
1431
+ };
1432
+ type: {
1433
+ type?: undefined;
1434
+ default?: undefined;
1435
+ } | {
1436
+ type: any;
1437
+ default: string | number | boolean | import("../../_utils/props").Events | {
1438
+ [key: string]: any;
1439
+ } | import("../../_utils/props").RequestParams | {
1440
+ [key: string]: any;
1441
+ }[] | {
1442
+ name: string;
1443
+ value: string;
1444
+ };
1445
+ };
1446
+ width: {
1447
+ type?: undefined;
1448
+ default?: undefined;
1449
+ } | {
1450
+ type: any;
1451
+ default: string | number | boolean | import("../../_utils/props").Events | {
1452
+ [key: string]: any;
1453
+ } | import("../../_utils/props").RequestParams | {
1454
+ [key: string]: any;
1455
+ }[] | {
1456
+ name: string;
1457
+ value: string;
1458
+ };
1459
+ };
1460
+ height: {
1461
+ type?: undefined;
1462
+ default?: undefined;
1463
+ } | {
1464
+ type: any;
1465
+ default: string | number | boolean | import("../../_utils/props").Events | {
1466
+ [key: string]: any;
1467
+ } | import("../../_utils/props").RequestParams | {
1468
+ [key: string]: any;
1469
+ }[] | {
1470
+ name: string;
1471
+ value: string;
1472
+ };
1473
+ };
1474
+ position: {
1475
+ type?: undefined;
1476
+ default?: undefined;
1477
+ } | {
1478
+ type: any;
1479
+ default: string | number | boolean | import("../../_utils/props").Events | {
1480
+ [key: string]: any;
1481
+ } | import("../../_utils/props").RequestParams | {
1482
+ [key: string]: any;
1483
+ }[] | {
1484
+ name: string;
1485
+ value: string;
1486
+ };
1487
+ };
1488
+ top: {
1489
+ type?: undefined;
1490
+ default?: undefined;
1491
+ } | {
1492
+ type: any;
1493
+ default: string | number | boolean | import("../../_utils/props").Events | {
1494
+ [key: string]: any;
1495
+ } | import("../../_utils/props").RequestParams | {
1496
+ [key: string]: any;
1497
+ }[] | {
1498
+ name: string;
1499
+ value: string;
1500
+ };
1501
+ };
1502
+ left: {
1503
+ type?: undefined;
1504
+ default?: undefined;
1505
+ } | {
1506
+ type: any;
1507
+ default: string | number | boolean | import("../../_utils/props").Events | {
1508
+ [key: string]: any;
1509
+ } | import("../../_utils/props").RequestParams | {
1510
+ [key: string]: any;
1511
+ }[] | {
1512
+ name: string;
1513
+ value: string;
1514
+ };
1515
+ };
1516
+ zIndex: {
1517
+ type?: undefined;
1518
+ default?: undefined;
1519
+ } | {
1520
+ type: any;
1521
+ default: string | number | boolean | import("../../_utils/props").Events | {
1522
+ [key: string]: any;
1523
+ } | import("../../_utils/props").RequestParams | {
1524
+ [key: string]: any;
1525
+ }[] | {
1526
+ name: string;
1527
+ value: string;
1528
+ };
1529
+ };
1530
+ rotate: {
1531
+ type?: undefined;
1532
+ default?: undefined;
1533
+ } | {
1534
+ type: any;
1535
+ default: string | number | boolean | import("../../_utils/props").Events | {
1536
+ [key: string]: any;
1537
+ } | import("../../_utils/props").RequestParams | {
1538
+ [key: string]: any;
1539
+ }[] | {
1540
+ name: string;
1541
+ value: string;
1542
+ };
1543
+ };
1544
+ isShow: {
1545
+ type?: undefined;
1546
+ default?: undefined;
1547
+ } | {
1548
+ type: any;
1549
+ default: string | number | boolean | import("../../_utils/props").Events | {
1550
+ [key: string]: any;
1551
+ } | import("../../_utils/props").RequestParams | {
1552
+ [key: string]: any;
1553
+ }[] | {
1554
+ name: string;
1555
+ value: string;
1556
+ };
1557
+ };
1558
+ isRender: {
1559
+ type?: undefined;
1560
+ default?: undefined;
1561
+ } | {
1562
+ type: any;
1563
+ default: string | number | boolean | import("../../_utils/props").Events | {
1564
+ [key: string]: any;
1565
+ } | import("../../_utils/props").RequestParams | {
1566
+ [key: string]: any;
1567
+ }[] | {
1568
+ name: string;
1569
+ value: string;
1570
+ };
1571
+ };
1572
+ events: {
1573
+ type?: undefined;
1574
+ default?: undefined;
1575
+ } | {
1576
+ type: any;
1577
+ default: string | number | boolean | import("../../_utils/props").Events | {
1578
+ [key: string]: any;
1579
+ } | import("../../_utils/props").RequestParams | {
1580
+ [key: string]: any;
1581
+ }[] | {
1582
+ name: string;
1583
+ value: string;
1584
+ };
1585
+ };
1586
+ requestUrl: {
1587
+ type?: undefined;
1588
+ default?: undefined;
1589
+ } | {
1590
+ type: any;
1591
+ default: string | number | boolean | import("../../_utils/props").Events | {
1592
+ [key: string]: any;
1593
+ } | import("../../_utils/props").RequestParams | {
1594
+ [key: string]: any;
1595
+ }[] | {
1596
+ name: string;
1597
+ value: string;
1598
+ };
1599
+ };
1600
+ requestMethod: {
1601
+ type?: undefined;
1602
+ default?: undefined;
1603
+ } | {
1604
+ type: any;
1605
+ default: string | number | boolean | import("../../_utils/props").Events | {
1606
+ [key: string]: any;
1607
+ } | import("../../_utils/props").RequestParams | {
1608
+ [key: string]: any;
1609
+ }[] | {
1610
+ name: string;
1611
+ value: string;
1612
+ };
1613
+ };
1614
+ requestHeaders: {
1615
+ type?: undefined;
1616
+ default?: undefined;
1617
+ } | {
1618
+ type: any;
1619
+ default: string | number | boolean | import("../../_utils/props").Events | {
1620
+ [key: string]: any;
1621
+ } | import("../../_utils/props").RequestParams | {
1622
+ [key: string]: any;
1623
+ }[] | {
1624
+ name: string;
1625
+ value: string;
1626
+ };
1627
+ };
1628
+ isOpenRequestTimer: {
1629
+ type?: undefined;
1630
+ default?: undefined;
1631
+ } | {
1632
+ type: any;
1633
+ default: string | number | boolean | import("../../_utils/props").Events | {
1634
+ [key: string]: any;
1635
+ } | import("../../_utils/props").RequestParams | {
1636
+ [key: string]: any;
1637
+ }[] | {
1638
+ name: string;
1639
+ value: string;
1640
+ };
1641
+ };
1642
+ requestInterval: {
1643
+ type?: undefined;
1644
+ default?: undefined;
1645
+ } | {
1646
+ type: any;
1647
+ default: string | number | boolean | import("../../_utils/props").Events | {
1648
+ [key: string]: any;
1649
+ } | import("../../_utils/props").RequestParams | {
1650
+ [key: string]: any;
1651
+ }[] | {
1652
+ name: string;
1653
+ value: string;
1654
+ };
1655
+ };
1656
+ requestParams: {
1657
+ type?: undefined;
1658
+ default?: undefined;
1659
+ } | {
1660
+ type: any;
1661
+ default: string | number | boolean | import("../../_utils/props").Events | {
1662
+ [key: string]: any;
1663
+ } | import("../../_utils/props").RequestParams | {
1664
+ [key: string]: any;
1665
+ }[] | {
1666
+ name: string;
1667
+ value: string;
1668
+ };
1669
+ };
1670
+ requestSort: {
1671
+ type?: undefined;
1672
+ default?: undefined;
1673
+ } | {
1674
+ type: any;
1675
+ default: string | number | boolean | import("../../_utils/props").Events | {
1676
+ [key: string]: any;
1677
+ } | import("../../_utils/props").RequestParams | {
1678
+ [key: string]: any;
1679
+ }[] | {
1680
+ name: string;
1681
+ value: string;
1682
+ };
1683
+ };
1684
+ dataType: {
1685
+ type?: undefined;
1686
+ default?: undefined;
1687
+ } | {
1688
+ type: any;
1689
+ default: string | number | boolean | import("../../_utils/props").Events | {
1690
+ [key: string]: any;
1691
+ } | import("../../_utils/props").RequestParams | {
1692
+ [key: string]: any;
1693
+ }[] | {
1694
+ name: string;
1695
+ value: string;
1696
+ };
1697
+ };
1698
+ }>>, {}>;
1699
+ export default _sfc_main;