@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,829 @@
1
+ import { Props } from '../../_utils/props';
2
+ export interface MapProps extends Props {
3
+ mapJson: {
4
+ name: string;
5
+ value: string;
6
+ } | null;
7
+ data: {
8
+ [key: string]: any;
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;
37
+ labelShow: boolean;
38
+ labelColor: string;
39
+ tooltipShow: boolean;
40
+ tooltipTextStyleColor: string;
41
+ tooltipFormatter: string;
42
+ }
43
+ export declare const mapProps: MapProps;
44
+ export declare const mapComponentProps: {
45
+ mapJson: {
46
+ type?: undefined;
47
+ default?: undefined;
48
+ } | {
49
+ type: any;
50
+ default: string | number | boolean | import('../../_utils/props').Events | {
51
+ [key: string]: any;
52
+ } | import('../../_utils/props').RequestParams | {
53
+ [key: string]: any;
54
+ }[] | {
55
+ name: string;
56
+ value: string;
57
+ };
58
+ };
59
+ data: {
60
+ type?: undefined;
61
+ default?: undefined;
62
+ } | {
63
+ type: any;
64
+ default: string | number | boolean | import('../../_utils/props').Events | {
65
+ [key: string]: any;
66
+ } | import('../../_utils/props').RequestParams | {
67
+ [key: string]: any;
68
+ }[] | {
69
+ name: string;
70
+ value: string;
71
+ };
72
+ };
73
+ backgroundImage: {
74
+ type?: undefined;
75
+ default?: undefined;
76
+ } | {
77
+ type: any;
78
+ default: string | number | boolean | import('../../_utils/props').Events | {
79
+ [key: string]: any;
80
+ } | import('../../_utils/props').RequestParams | {
81
+ [key: string]: any;
82
+ }[] | {
83
+ name: string;
84
+ value: string;
85
+ };
86
+ };
87
+ backgroundImageRepeat: {
88
+ type?: undefined;
89
+ default?: undefined;
90
+ } | {
91
+ type: any;
92
+ default: string | number | boolean | import('../../_utils/props').Events | {
93
+ [key: string]: any;
94
+ } | import('../../_utils/props').RequestParams | {
95
+ [key: string]: any;
96
+ }[] | {
97
+ name: string;
98
+ value: string;
99
+ };
100
+ };
101
+ symbolImage: {
102
+ type?: undefined;
103
+ default?: undefined;
104
+ } | {
105
+ type: any;
106
+ default: string | number | boolean | import('../../_utils/props').Events | {
107
+ [key: string]: any;
108
+ } | import('../../_utils/props').RequestParams | {
109
+ [key: string]: any;
110
+ }[] | {
111
+ name: string;
112
+ value: string;
113
+ };
114
+ };
115
+ symbolWidth: {
116
+ type?: undefined;
117
+ default?: undefined;
118
+ } | {
119
+ type: any;
120
+ default: string | number | boolean | import('../../_utils/props').Events | {
121
+ [key: string]: any;
122
+ } | import('../../_utils/props').RequestParams | {
123
+ [key: string]: any;
124
+ }[] | {
125
+ name: string;
126
+ value: string;
127
+ };
128
+ };
129
+ symbolHeight: {
130
+ type?: undefined;
131
+ default?: undefined;
132
+ } | {
133
+ type: any;
134
+ default: string | number | boolean | import('../../_utils/props').Events | {
135
+ [key: string]: any;
136
+ } | import('../../_utils/props').RequestParams | {
137
+ [key: string]: any;
138
+ }[] | {
139
+ name: string;
140
+ value: string;
141
+ };
142
+ };
143
+ geoZoom: {
144
+ type?: undefined;
145
+ default?: undefined;
146
+ } | {
147
+ type: any;
148
+ default: string | number | boolean | import('../../_utils/props').Events | {
149
+ [key: string]: any;
150
+ } | import('../../_utils/props').RequestParams | {
151
+ [key: string]: any;
152
+ }[] | {
153
+ name: string;
154
+ value: string;
155
+ };
156
+ };
157
+ geoRoam: {
158
+ type?: undefined;
159
+ default?: undefined;
160
+ } | {
161
+ type: any;
162
+ default: string | number | boolean | import('../../_utils/props').Events | {
163
+ [key: string]: any;
164
+ } | import('../../_utils/props').RequestParams | {
165
+ [key: string]: any;
166
+ }[] | {
167
+ name: string;
168
+ value: string;
169
+ };
170
+ };
171
+ geoCenter: {
172
+ type?: undefined;
173
+ default?: undefined;
174
+ } | {
175
+ type: any;
176
+ default: string | number | boolean | import('../../_utils/props').Events | {
177
+ [key: string]: any;
178
+ } | import('../../_utils/props').RequestParams | {
179
+ [key: string]: any;
180
+ }[] | {
181
+ name: string;
182
+ value: string;
183
+ };
184
+ };
185
+ geoBackgroundImage: {
186
+ type?: undefined;
187
+ default?: undefined;
188
+ } | {
189
+ type: any;
190
+ default: string | number | boolean | import('../../_utils/props').Events | {
191
+ [key: string]: any;
192
+ } | import('../../_utils/props').RequestParams | {
193
+ [key: string]: any;
194
+ }[] | {
195
+ name: string;
196
+ value: string;
197
+ };
198
+ };
199
+ geoBackgroundImageRepeat: {
200
+ type?: undefined;
201
+ default?: undefined;
202
+ } | {
203
+ type: any;
204
+ default: string | number | boolean | import('../../_utils/props').Events | {
205
+ [key: string]: any;
206
+ } | import('../../_utils/props').RequestParams | {
207
+ [key: string]: any;
208
+ }[] | {
209
+ name: string;
210
+ value: string;
211
+ };
212
+ };
213
+ geoLabelShow: {
214
+ type?: undefined;
215
+ default?: undefined;
216
+ } | {
217
+ type: any;
218
+ default: string | number | boolean | import('../../_utils/props').Events | {
219
+ [key: string]: any;
220
+ } | import('../../_utils/props').RequestParams | {
221
+ [key: string]: any;
222
+ }[] | {
223
+ name: string;
224
+ value: string;
225
+ };
226
+ };
227
+ geoLabelColor: {
228
+ type?: undefined;
229
+ default?: undefined;
230
+ } | {
231
+ type: any;
232
+ default: string | number | boolean | import('../../_utils/props').Events | {
233
+ [key: string]: any;
234
+ } | import('../../_utils/props').RequestParams | {
235
+ [key: string]: any;
236
+ }[] | {
237
+ name: string;
238
+ value: string;
239
+ };
240
+ };
241
+ geoLabelFontSize: {
242
+ type?: undefined;
243
+ default?: undefined;
244
+ } | {
245
+ type: any;
246
+ default: string | number | boolean | import('../../_utils/props').Events | {
247
+ [key: string]: any;
248
+ } | import('../../_utils/props').RequestParams | {
249
+ [key: string]: any;
250
+ }[] | {
251
+ name: string;
252
+ value: string;
253
+ };
254
+ };
255
+ geoItemStyleAreaColor: {
256
+ type?: undefined;
257
+ default?: undefined;
258
+ } | {
259
+ type: any;
260
+ default: string | number | boolean | import('../../_utils/props').Events | {
261
+ [key: string]: any;
262
+ } | import('../../_utils/props').RequestParams | {
263
+ [key: string]: any;
264
+ }[] | {
265
+ name: string;
266
+ value: string;
267
+ };
268
+ };
269
+ geoItemStyleBorderColor: {
270
+ type?: undefined;
271
+ default?: undefined;
272
+ } | {
273
+ type: any;
274
+ default: string | number | boolean | import('../../_utils/props').Events | {
275
+ [key: string]: any;
276
+ } | import('../../_utils/props').RequestParams | {
277
+ [key: string]: any;
278
+ }[] | {
279
+ name: string;
280
+ value: string;
281
+ };
282
+ };
283
+ geoItemStyleBorderWidth: {
284
+ type?: undefined;
285
+ default?: undefined;
286
+ } | {
287
+ type: any;
288
+ default: string | number | boolean | import('../../_utils/props').Events | {
289
+ [key: string]: any;
290
+ } | import('../../_utils/props').RequestParams | {
291
+ [key: string]: any;
292
+ }[] | {
293
+ name: string;
294
+ value: string;
295
+ };
296
+ };
297
+ geoItemStyleShadowColor: {
298
+ type?: undefined;
299
+ default?: undefined;
300
+ } | {
301
+ type: any;
302
+ default: string | number | boolean | import('../../_utils/props').Events | {
303
+ [key: string]: any;
304
+ } | import('../../_utils/props').RequestParams | {
305
+ [key: string]: any;
306
+ }[] | {
307
+ name: string;
308
+ value: string;
309
+ };
310
+ };
311
+ geoItemStyleShadowOffsetX: {
312
+ type?: undefined;
313
+ default?: undefined;
314
+ } | {
315
+ type: any;
316
+ default: string | number | boolean | import('../../_utils/props').Events | {
317
+ [key: string]: any;
318
+ } | import('../../_utils/props').RequestParams | {
319
+ [key: string]: any;
320
+ }[] | {
321
+ name: string;
322
+ value: string;
323
+ };
324
+ };
325
+ geoItemStyleShadowOffsetY: {
326
+ type?: undefined;
327
+ default?: undefined;
328
+ } | {
329
+ type: any;
330
+ default: string | number | boolean | import('../../_utils/props').Events | {
331
+ [key: string]: any;
332
+ } | import('../../_utils/props').RequestParams | {
333
+ [key: string]: any;
334
+ }[] | {
335
+ name: string;
336
+ value: string;
337
+ };
338
+ };
339
+ geoItemStyleShadowBlur: {
340
+ type?: undefined;
341
+ default?: undefined;
342
+ } | {
343
+ type: any;
344
+ default: string | number | boolean | import('../../_utils/props').Events | {
345
+ [key: string]: any;
346
+ } | import('../../_utils/props').RequestParams | {
347
+ [key: string]: any;
348
+ }[] | {
349
+ name: string;
350
+ value: string;
351
+ };
352
+ };
353
+ geoEmphasisDisabled: {
354
+ type?: undefined;
355
+ default?: undefined;
356
+ } | {
357
+ type: any;
358
+ default: string | number | boolean | import('../../_utils/props').Events | {
359
+ [key: string]: any;
360
+ } | import('../../_utils/props').RequestParams | {
361
+ [key: string]: any;
362
+ }[] | {
363
+ name: string;
364
+ value: string;
365
+ };
366
+ };
367
+ geoEmphasisLabelColor: {
368
+ type?: undefined;
369
+ default?: undefined;
370
+ } | {
371
+ type: any;
372
+ default: string | number | boolean | import('../../_utils/props').Events | {
373
+ [key: string]: any;
374
+ } | import('../../_utils/props').RequestParams | {
375
+ [key: string]: any;
376
+ }[] | {
377
+ name: string;
378
+ value: string;
379
+ };
380
+ };
381
+ geoEmphasisItemStyleAreaColor: {
382
+ type?: undefined;
383
+ default?: undefined;
384
+ } | {
385
+ type: any;
386
+ default: string | number | boolean | import('../../_utils/props').Events | {
387
+ [key: string]: any;
388
+ } | import('../../_utils/props').RequestParams | {
389
+ [key: string]: any;
390
+ }[] | {
391
+ name: string;
392
+ value: string;
393
+ };
394
+ };
395
+ geoEmphasisItemStyleBorderColor: {
396
+ type?: undefined;
397
+ default?: undefined;
398
+ } | {
399
+ type: any;
400
+ default: string | number | boolean | import('../../_utils/props').Events | {
401
+ [key: string]: any;
402
+ } | import('../../_utils/props').RequestParams | {
403
+ [key: string]: any;
404
+ }[] | {
405
+ name: string;
406
+ value: string;
407
+ };
408
+ };
409
+ itemStyleColor: {
410
+ type?: undefined;
411
+ default?: undefined;
412
+ } | {
413
+ type: any;
414
+ default: string | number | boolean | import('../../_utils/props').Events | {
415
+ [key: string]: any;
416
+ } | import('../../_utils/props').RequestParams | {
417
+ [key: string]: any;
418
+ }[] | {
419
+ name: string;
420
+ value: string;
421
+ };
422
+ };
423
+ labelFontSize: {
424
+ type?: undefined;
425
+ default?: undefined;
426
+ } | {
427
+ type: any;
428
+ default: string | number | boolean | import('../../_utils/props').Events | {
429
+ [key: string]: any;
430
+ } | import('../../_utils/props').RequestParams | {
431
+ [key: string]: any;
432
+ }[] | {
433
+ name: string;
434
+ value: string;
435
+ };
436
+ };
437
+ labelFormatter: {
438
+ type?: undefined;
439
+ default?: undefined;
440
+ } | {
441
+ type: any;
442
+ default: string | number | boolean | import('../../_utils/props').Events | {
443
+ [key: string]: any;
444
+ } | import('../../_utils/props').RequestParams | {
445
+ [key: string]: any;
446
+ }[] | {
447
+ name: string;
448
+ value: string;
449
+ };
450
+ };
451
+ labelShow: {
452
+ type?: undefined;
453
+ default?: undefined;
454
+ } | {
455
+ type: any;
456
+ default: string | number | boolean | import('../../_utils/props').Events | {
457
+ [key: string]: any;
458
+ } | import('../../_utils/props').RequestParams | {
459
+ [key: string]: any;
460
+ }[] | {
461
+ name: string;
462
+ value: string;
463
+ };
464
+ };
465
+ labelColor: {
466
+ type?: undefined;
467
+ default?: undefined;
468
+ } | {
469
+ type: any;
470
+ default: string | number | boolean | import('../../_utils/props').Events | {
471
+ [key: string]: any;
472
+ } | import('../../_utils/props').RequestParams | {
473
+ [key: string]: any;
474
+ }[] | {
475
+ name: string;
476
+ value: string;
477
+ };
478
+ };
479
+ tooltipShow: {
480
+ type?: undefined;
481
+ default?: undefined;
482
+ } | {
483
+ type: any;
484
+ default: string | number | boolean | import('../../_utils/props').Events | {
485
+ [key: string]: any;
486
+ } | import('../../_utils/props').RequestParams | {
487
+ [key: string]: any;
488
+ }[] | {
489
+ name: string;
490
+ value: string;
491
+ };
492
+ };
493
+ tooltipTextStyleColor: {
494
+ type?: undefined;
495
+ default?: undefined;
496
+ } | {
497
+ type: any;
498
+ default: string | number | boolean | import('../../_utils/props').Events | {
499
+ [key: string]: any;
500
+ } | import('../../_utils/props').RequestParams | {
501
+ [key: string]: any;
502
+ }[] | {
503
+ name: string;
504
+ value: string;
505
+ };
506
+ };
507
+ tooltipFormatter: {
508
+ type?: undefined;
509
+ default?: undefined;
510
+ } | {
511
+ type: any;
512
+ default: string | number | boolean | import('../../_utils/props').Events | {
513
+ [key: string]: any;
514
+ } | import('../../_utils/props').RequestParams | {
515
+ [key: string]: any;
516
+ }[] | {
517
+ name: string;
518
+ value: string;
519
+ };
520
+ };
521
+ id: {
522
+ type?: undefined;
523
+ default?: undefined;
524
+ } | {
525
+ type: any;
526
+ default: string | number | boolean | import('../../_utils/props').Events | {
527
+ [key: string]: any;
528
+ } | import('../../_utils/props').RequestParams | {
529
+ [key: string]: any;
530
+ }[] | {
531
+ name: string;
532
+ value: string;
533
+ };
534
+ };
535
+ name: {
536
+ type?: undefined;
537
+ default?: undefined;
538
+ } | {
539
+ type: any;
540
+ default: string | number | boolean | import('../../_utils/props').Events | {
541
+ [key: string]: any;
542
+ } | import('../../_utils/props').RequestParams | {
543
+ [key: string]: any;
544
+ }[] | {
545
+ name: string;
546
+ value: string;
547
+ };
548
+ };
549
+ keyName: {
550
+ type?: undefined;
551
+ default?: undefined;
552
+ } | {
553
+ type: any;
554
+ default: string | number | boolean | import('../../_utils/props').Events | {
555
+ [key: string]: any;
556
+ } | import('../../_utils/props').RequestParams | {
557
+ [key: string]: any;
558
+ }[] | {
559
+ name: string;
560
+ value: string;
561
+ };
562
+ };
563
+ type: {
564
+ type?: undefined;
565
+ default?: undefined;
566
+ } | {
567
+ type: any;
568
+ default: string | number | boolean | import('../../_utils/props').Events | {
569
+ [key: string]: any;
570
+ } | import('../../_utils/props').RequestParams | {
571
+ [key: string]: any;
572
+ }[] | {
573
+ name: string;
574
+ value: string;
575
+ };
576
+ };
577
+ width: {
578
+ type?: undefined;
579
+ default?: undefined;
580
+ } | {
581
+ type: any;
582
+ default: string | number | boolean | import('../../_utils/props').Events | {
583
+ [key: string]: any;
584
+ } | import('../../_utils/props').RequestParams | {
585
+ [key: string]: any;
586
+ }[] | {
587
+ name: string;
588
+ value: string;
589
+ };
590
+ };
591
+ height: {
592
+ type?: undefined;
593
+ default?: undefined;
594
+ } | {
595
+ type: any;
596
+ default: string | number | boolean | import('../../_utils/props').Events | {
597
+ [key: string]: any;
598
+ } | import('../../_utils/props').RequestParams | {
599
+ [key: string]: any;
600
+ }[] | {
601
+ name: string;
602
+ value: string;
603
+ };
604
+ };
605
+ position: {
606
+ type?: undefined;
607
+ default?: undefined;
608
+ } | {
609
+ type: any;
610
+ default: string | number | boolean | import('../../_utils/props').Events | {
611
+ [key: string]: any;
612
+ } | import('../../_utils/props').RequestParams | {
613
+ [key: string]: any;
614
+ }[] | {
615
+ name: string;
616
+ value: string;
617
+ };
618
+ };
619
+ top: {
620
+ type?: undefined;
621
+ default?: undefined;
622
+ } | {
623
+ type: any;
624
+ default: string | number | boolean | import('../../_utils/props').Events | {
625
+ [key: string]: any;
626
+ } | import('../../_utils/props').RequestParams | {
627
+ [key: string]: any;
628
+ }[] | {
629
+ name: string;
630
+ value: string;
631
+ };
632
+ };
633
+ left: {
634
+ type?: undefined;
635
+ default?: undefined;
636
+ } | {
637
+ type: any;
638
+ default: string | number | boolean | import('../../_utils/props').Events | {
639
+ [key: string]: any;
640
+ } | import('../../_utils/props').RequestParams | {
641
+ [key: string]: any;
642
+ }[] | {
643
+ name: string;
644
+ value: string;
645
+ };
646
+ };
647
+ zIndex: {
648
+ type?: undefined;
649
+ default?: undefined;
650
+ } | {
651
+ type: any;
652
+ default: string | number | boolean | import('../../_utils/props').Events | {
653
+ [key: string]: any;
654
+ } | import('../../_utils/props').RequestParams | {
655
+ [key: string]: any;
656
+ }[] | {
657
+ name: string;
658
+ value: string;
659
+ };
660
+ };
661
+ rotate: {
662
+ type?: undefined;
663
+ default?: undefined;
664
+ } | {
665
+ type: any;
666
+ default: string | number | boolean | import('../../_utils/props').Events | {
667
+ [key: string]: any;
668
+ } | import('../../_utils/props').RequestParams | {
669
+ [key: string]: any;
670
+ }[] | {
671
+ name: string;
672
+ value: string;
673
+ };
674
+ };
675
+ isShow: {
676
+ type?: undefined;
677
+ default?: undefined;
678
+ } | {
679
+ type: any;
680
+ default: string | number | boolean | import('../../_utils/props').Events | {
681
+ [key: string]: any;
682
+ } | import('../../_utils/props').RequestParams | {
683
+ [key: string]: any;
684
+ }[] | {
685
+ name: string;
686
+ value: string;
687
+ };
688
+ };
689
+ isRender: {
690
+ type?: undefined;
691
+ default?: undefined;
692
+ } | {
693
+ type: any;
694
+ default: string | number | boolean | import('../../_utils/props').Events | {
695
+ [key: string]: any;
696
+ } | import('../../_utils/props').RequestParams | {
697
+ [key: string]: any;
698
+ }[] | {
699
+ name: string;
700
+ value: string;
701
+ };
702
+ };
703
+ events: {
704
+ type?: undefined;
705
+ default?: undefined;
706
+ } | {
707
+ type: any;
708
+ default: string | number | boolean | import('../../_utils/props').Events | {
709
+ [key: string]: any;
710
+ } | import('../../_utils/props').RequestParams | {
711
+ [key: string]: any;
712
+ }[] | {
713
+ name: string;
714
+ value: string;
715
+ };
716
+ };
717
+ requestUrl: {
718
+ type?: undefined;
719
+ default?: undefined;
720
+ } | {
721
+ type: any;
722
+ default: string | number | boolean | import('../../_utils/props').Events | {
723
+ [key: string]: any;
724
+ } | import('../../_utils/props').RequestParams | {
725
+ [key: string]: any;
726
+ }[] | {
727
+ name: string;
728
+ value: string;
729
+ };
730
+ };
731
+ requestMethod: {
732
+ type?: undefined;
733
+ default?: undefined;
734
+ } | {
735
+ type: any;
736
+ default: string | number | boolean | import('../../_utils/props').Events | {
737
+ [key: string]: any;
738
+ } | import('../../_utils/props').RequestParams | {
739
+ [key: string]: any;
740
+ }[] | {
741
+ name: string;
742
+ value: string;
743
+ };
744
+ };
745
+ requestHeaders: {
746
+ type?: undefined;
747
+ default?: undefined;
748
+ } | {
749
+ type: any;
750
+ default: string | number | boolean | import('../../_utils/props').Events | {
751
+ [key: string]: any;
752
+ } | import('../../_utils/props').RequestParams | {
753
+ [key: string]: any;
754
+ }[] | {
755
+ name: string;
756
+ value: string;
757
+ };
758
+ };
759
+ isOpenRequestTimer: {
760
+ type?: undefined;
761
+ default?: undefined;
762
+ } | {
763
+ type: any;
764
+ default: string | number | boolean | import('../../_utils/props').Events | {
765
+ [key: string]: any;
766
+ } | import('../../_utils/props').RequestParams | {
767
+ [key: string]: any;
768
+ }[] | {
769
+ name: string;
770
+ value: string;
771
+ };
772
+ };
773
+ requestInterval: {
774
+ type?: undefined;
775
+ default?: undefined;
776
+ } | {
777
+ type: any;
778
+ default: string | number | boolean | import('../../_utils/props').Events | {
779
+ [key: string]: any;
780
+ } | import('../../_utils/props').RequestParams | {
781
+ [key: string]: any;
782
+ }[] | {
783
+ name: string;
784
+ value: string;
785
+ };
786
+ };
787
+ requestParams: {
788
+ type?: undefined;
789
+ default?: undefined;
790
+ } | {
791
+ type: any;
792
+ default: string | number | boolean | import('../../_utils/props').Events | {
793
+ [key: string]: any;
794
+ } | import('../../_utils/props').RequestParams | {
795
+ [key: string]: any;
796
+ }[] | {
797
+ name: string;
798
+ value: string;
799
+ };
800
+ };
801
+ requestSort: {
802
+ type?: undefined;
803
+ default?: undefined;
804
+ } | {
805
+ type: any;
806
+ default: string | number | boolean | import('../../_utils/props').Events | {
807
+ [key: string]: any;
808
+ } | import('../../_utils/props').RequestParams | {
809
+ [key: string]: any;
810
+ }[] | {
811
+ name: string;
812
+ value: string;
813
+ };
814
+ };
815
+ dataType: {
816
+ type?: undefined;
817
+ default?: undefined;
818
+ } | {
819
+ type: any;
820
+ default: string | number | boolean | import('../../_utils/props').Events | {
821
+ [key: string]: any;
822
+ } | import('../../_utils/props').RequestParams | {
823
+ [key: string]: any;
824
+ }[] | {
825
+ name: string;
826
+ value: string;
827
+ };
828
+ };
829
+ };