@ecan-bi/datav 1.0.50 → 1.0.51

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 (120) hide show
  1. package/package.json +1 -1
  2. package/types/_utils/constant.d.ts +9 -0
  3. package/types/_utils/hooks/index.d.ts +15 -0
  4. package/types/_utils/hooks/useDownloadFile.d.ts +2 -0
  5. package/types/_utils/hooks/useEmitEvent.d.ts +7 -0
  6. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  7. package/types/_utils/hooks/useImagePath.d.ts +2 -0
  8. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  9. package/types/_utils/hooks/useOnEvent.d.ts +6 -0
  10. package/types/_utils/hooks/usePageUrl.d.ts +2 -0
  11. package/types/_utils/hooks/usePickComponentStyle.d.ts +9 -0
  12. package/types/_utils/hooks/usePickEchartsData.d.ts +2 -0
  13. package/types/_utils/hooks/useRequestData.d.ts +6 -0
  14. package/types/_utils/hooks/useRequestDiagramData.d.ts +6 -0
  15. package/types/_utils/hooks/useTooltipFormatter.d.ts +4 -0
  16. package/types/_utils/hooks/useTransformChartDataByAttrKey.d.ts +13 -0
  17. package/types/_utils/hooks/useTransformChartDataByAttrValue.d.ts +13 -0
  18. package/types/_utils/hooks/useValueFormatter.d.ts +2 -0
  19. package/types/_utils/hooks/useVariablesInText.d.ts +4 -0
  20. package/types/_utils/props.d.ts +71 -0
  21. package/types/_utils/request.d.ts +2 -0
  22. package/types/_utils/util.d.ts +20 -0
  23. package/types/_utils/withInstall.d.ts +5 -0
  24. package/types/common/echarts/Echarts.d.ts +418 -0
  25. package/types/common/echarts/composables/api.d.ts +7 -0
  26. package/types/common/echarts/composables/autoresize.d.ts +6 -0
  27. package/types/common/echarts/composables/index.d.ts +3 -0
  28. package/types/common/echarts/composables/loading.d.ts +10 -0
  29. package/types/common/echarts/index.d.ts +2 -0
  30. package/types/common/echarts/types.d.ts +20 -0
  31. package/types/common/echarts/utils.d.ts +6 -0
  32. package/types/common/index.d.ts +3 -0
  33. package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
  34. package/types/common/skeleton/index.d.ts +2 -0
  35. package/types/common/spin/Spin.vue.d.ts +18 -0
  36. package/types/common/spin/index.d.ts +2 -0
  37. package/types/components.d.ts +9 -0
  38. package/types/container/border/Border.vue.d.ts +623 -0
  39. package/types/container/border/index.d.ts +623 -0
  40. package/types/container/border/props.d.ts +315 -0
  41. package/types/container/index.d.ts +3 -0
  42. package/types/container/modal/Modal.vue.d.ts +505 -0
  43. package/types/container/modal/index.d.ts +506 -0
  44. package/types/container/modal/props.d.ts +179 -0
  45. package/types/container/tabs/Tabs.vue.d.ts +475 -0
  46. package/types/container/tabs/index.d.ts +476 -0
  47. package/types/container/tabs/props.d.ts +251 -0
  48. package/types/control/button/Button.vue.d.ts +514 -0
  49. package/types/control/button/index.d.ts +514 -0
  50. package/types/control/button/props.d.ts +265 -0
  51. package/types/control/date-picker/DatePicker.vue.d.ts +480 -0
  52. package/types/control/date-picker/index.d.ts +479 -0
  53. package/types/control/date-picker/props.d.ts +245 -0
  54. package/types/control/index.d.ts +5 -0
  55. package/types/control/input/Input.vue.d.ts +438 -0
  56. package/types/control/input/index.d.ts +439 -0
  57. package/types/control/input/props.d.ts +224 -0
  58. package/types/control/range-picker/RangePicker.vue.d.ts +596 -0
  59. package/types/control/range-picker/index.d.ts +595 -0
  60. package/types/control/range-picker/props.d.ts +245 -0
  61. package/types/control/select/Select.vue.d.ts +613 -0
  62. package/types/control/select/index.d.ts +613 -0
  63. package/types/control/select/props.d.ts +321 -0
  64. package/types/graph/bar/Bar.vue.d.ts +1963 -0
  65. package/types/graph/bar/index.d.ts +1963 -0
  66. package/types/graph/bar/props.d.ts +954 -0
  67. package/types/graph/combo-graph/ComboGraph.vue.d.ts +1008 -0
  68. package/types/graph/combo-graph/index.d.ts +1009 -0
  69. package/types/graph/combo-graph/props.d.ts +501 -0
  70. package/types/graph/custom-graph/CustomGraph.vue.d.ts +537 -0
  71. package/types/graph/custom-graph/index.d.ts +537 -0
  72. package/types/graph/custom-graph/props.d.ts +274 -0
  73. package/types/graph/index.d.ts +6 -0
  74. package/types/graph/line/Line.vue.d.ts +973 -0
  75. package/types/graph/line/index.d.ts +974 -0
  76. package/types/graph/line/props.d.ts +481 -0
  77. package/types/graph/pie/Pie.vue.d.ts +1049 -0
  78. package/types/graph/pie/index.d.ts +1050 -0
  79. package/types/graph/pie/props.d.ts +533 -0
  80. package/types/graph/scatter/Scatter.vue.d.ts +949 -0
  81. package/types/graph/scatter/index.d.ts +950 -0
  82. package/types/graph/scatter/props.d.ts +468 -0
  83. package/types/index.d.ts +6 -0
  84. package/types/map/index.d.ts +1 -0
  85. package/types/map/map/Map.vue.d.ts +1699 -0
  86. package/types/map/map/index.d.ts +1700 -0
  87. package/types/map/map/props.d.ts +829 -0
  88. package/types/media/image/Image.vue.d.ts +476 -0
  89. package/types/media/image/index.d.ts +477 -0
  90. package/types/media/image/props.d.ts +244 -0
  91. package/types/media/index.d.ts +1 -0
  92. package/types/setting/index.d.ts +3 -0
  93. package/types/setting/page-config/PageConfig.vue.d.ts +112 -0
  94. package/types/setting/page-config/index.d.ts +113 -0
  95. package/types/setting/page-config/props.d.ts +61 -0
  96. package/types/setting/provider-config/ProviderConfig.vue.d.ts +78 -0
  97. package/types/setting/provider-config/index.d.ts +79 -0
  98. package/types/setting/provider-config/props.d.ts +47 -0
  99. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  100. package/types/setting/renderer/index.d.ts +23 -0
  101. package/types/setting/renderer/props.d.ts +17 -0
  102. package/types/table/index.d.ts +1 -0
  103. package/types/table/table/Table.vue.d.ts +1644 -0
  104. package/types/table/table/index.d.ts +1644 -0
  105. package/types/table/table/props.d.ts +836 -0
  106. package/types/text/index.d.ts +5 -0
  107. package/types/text/list/List.vue.d.ts +849 -0
  108. package/types/text/list/index.d.ts +849 -0
  109. package/types/text/list/props.d.ts +441 -0
  110. package/types/text/proportion/Proportion.vue.d.ts +760 -0
  111. package/types/text/proportion/index.d.ts +760 -0
  112. package/types/text/proportion/props.d.ts +395 -0
  113. package/types/text/scroll-text/ScrollText.vue.d.ts +4 -0
  114. package/types/text/scroll-text/index.d.ts +4 -0
  115. package/types/text/text/Text.vue.d.ts +736 -0
  116. package/types/text/text/index.d.ts +736 -0
  117. package/types/text/text/props.d.ts +383 -0
  118. package/types/text/time-display/TimeDisplay.vue.d.ts +547 -0
  119. package/types/text/time-display/index.d.ts +548 -0
  120. package/types/text/time-display/props.d.ts +284 -0
@@ -0,0 +1,613 @@
1
+ import { Events } from '../../_utils/props';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ data: {
4
+ type?: undefined;
5
+ default?: undefined;
6
+ } | {
7
+ type: any;
8
+ default: string | number | boolean | Events | {
9
+ [key: string]: any;
10
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
11
+ label: string;
12
+ value: string;
13
+ };
14
+ };
15
+ value: {
16
+ type?: undefined;
17
+ default?: undefined;
18
+ } | {
19
+ type: any;
20
+ default: string | number | boolean | Events | {
21
+ [key: string]: any;
22
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
23
+ label: string;
24
+ value: string;
25
+ };
26
+ };
27
+ dataFieldNames: {
28
+ type?: undefined;
29
+ default?: undefined;
30
+ } | {
31
+ type: any;
32
+ default: string | number | boolean | Events | {
33
+ [key: string]: any;
34
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
35
+ label: string;
36
+ value: string;
37
+ };
38
+ };
39
+ id: {
40
+ type?: undefined;
41
+ default?: undefined;
42
+ } | {
43
+ type: any;
44
+ default: string | number | boolean | Events | {
45
+ [key: string]: any;
46
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
47
+ label: string;
48
+ value: string;
49
+ };
50
+ };
51
+ name: {
52
+ type?: undefined;
53
+ default?: undefined;
54
+ } | {
55
+ type: any;
56
+ default: string | number | boolean | Events | {
57
+ [key: string]: any;
58
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
59
+ label: string;
60
+ value: string;
61
+ };
62
+ };
63
+ keyName: {
64
+ type?: undefined;
65
+ default?: undefined;
66
+ } | {
67
+ type: any;
68
+ default: string | number | boolean | Events | {
69
+ [key: string]: any;
70
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
71
+ label: string;
72
+ value: string;
73
+ };
74
+ };
75
+ type: {
76
+ type?: undefined;
77
+ default?: undefined;
78
+ } | {
79
+ type: any;
80
+ default: string | number | boolean | Events | {
81
+ [key: string]: any;
82
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
83
+ label: string;
84
+ value: string;
85
+ };
86
+ };
87
+ width: {
88
+ type?: undefined;
89
+ default?: undefined;
90
+ } | {
91
+ type: any;
92
+ default: string | number | boolean | Events | {
93
+ [key: string]: any;
94
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
95
+ label: string;
96
+ value: string;
97
+ };
98
+ };
99
+ height: {
100
+ type?: undefined;
101
+ default?: undefined;
102
+ } | {
103
+ type: any;
104
+ default: string | number | boolean | Events | {
105
+ [key: string]: any;
106
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
107
+ label: string;
108
+ value: string;
109
+ };
110
+ };
111
+ position: {
112
+ type?: undefined;
113
+ default?: undefined;
114
+ } | {
115
+ type: any;
116
+ default: string | number | boolean | Events | {
117
+ [key: string]: any;
118
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
119
+ label: string;
120
+ value: string;
121
+ };
122
+ };
123
+ top: {
124
+ type?: undefined;
125
+ default?: undefined;
126
+ } | {
127
+ type: any;
128
+ default: string | number | boolean | Events | {
129
+ [key: string]: any;
130
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
131
+ label: string;
132
+ value: string;
133
+ };
134
+ };
135
+ left: {
136
+ type?: undefined;
137
+ default?: undefined;
138
+ } | {
139
+ type: any;
140
+ default: string | number | boolean | Events | {
141
+ [key: string]: any;
142
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
143
+ label: string;
144
+ value: string;
145
+ };
146
+ };
147
+ zIndex: {
148
+ type?: undefined;
149
+ default?: undefined;
150
+ } | {
151
+ type: any;
152
+ default: string | number | boolean | Events | {
153
+ [key: string]: any;
154
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
155
+ label: string;
156
+ value: string;
157
+ };
158
+ };
159
+ rotate: {
160
+ type?: undefined;
161
+ default?: undefined;
162
+ } | {
163
+ type: any;
164
+ default: string | number | boolean | Events | {
165
+ [key: string]: any;
166
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
167
+ label: string;
168
+ value: string;
169
+ };
170
+ };
171
+ isShow: {
172
+ type?: undefined;
173
+ default?: undefined;
174
+ } | {
175
+ type: any;
176
+ default: string | number | boolean | Events | {
177
+ [key: string]: any;
178
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
179
+ label: string;
180
+ value: string;
181
+ };
182
+ };
183
+ isRender: {
184
+ type?: undefined;
185
+ default?: undefined;
186
+ } | {
187
+ type: any;
188
+ default: string | number | boolean | Events | {
189
+ [key: string]: any;
190
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
191
+ label: string;
192
+ value: string;
193
+ };
194
+ };
195
+ events: {
196
+ type?: undefined;
197
+ default?: undefined;
198
+ } | {
199
+ type: any;
200
+ default: string | number | boolean | Events | {
201
+ [key: string]: any;
202
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
203
+ label: string;
204
+ value: string;
205
+ };
206
+ };
207
+ requestUrl: {
208
+ type?: undefined;
209
+ default?: undefined;
210
+ } | {
211
+ type: any;
212
+ default: string | number | boolean | Events | {
213
+ [key: string]: any;
214
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
215
+ label: string;
216
+ value: string;
217
+ };
218
+ };
219
+ requestMethod: {
220
+ type?: undefined;
221
+ default?: undefined;
222
+ } | {
223
+ type: any;
224
+ default: string | number | boolean | Events | {
225
+ [key: string]: any;
226
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
227
+ label: string;
228
+ value: string;
229
+ };
230
+ };
231
+ requestHeaders: {
232
+ type?: undefined;
233
+ default?: undefined;
234
+ } | {
235
+ type: any;
236
+ default: string | number | boolean | Events | {
237
+ [key: string]: any;
238
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
239
+ label: string;
240
+ value: string;
241
+ };
242
+ };
243
+ isOpenRequestTimer: {
244
+ type?: undefined;
245
+ default?: undefined;
246
+ } | {
247
+ type: any;
248
+ default: string | number | boolean | Events | {
249
+ [key: string]: any;
250
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
251
+ label: string;
252
+ value: string;
253
+ };
254
+ };
255
+ requestInterval: {
256
+ type?: undefined;
257
+ default?: undefined;
258
+ } | {
259
+ type: any;
260
+ default: string | number | boolean | Events | {
261
+ [key: string]: any;
262
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
263
+ label: string;
264
+ value: string;
265
+ };
266
+ };
267
+ requestParams: {
268
+ type?: undefined;
269
+ default?: undefined;
270
+ } | {
271
+ type: any;
272
+ default: string | number | boolean | Events | {
273
+ [key: string]: any;
274
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
275
+ label: string;
276
+ value: string;
277
+ };
278
+ };
279
+ requestSort: {
280
+ type?: undefined;
281
+ default?: undefined;
282
+ } | {
283
+ type: any;
284
+ default: string | number | boolean | Events | {
285
+ [key: string]: any;
286
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
287
+ label: string;
288
+ value: string;
289
+ };
290
+ };
291
+ dataType: {
292
+ type?: undefined;
293
+ default?: undefined;
294
+ } | {
295
+ type: any;
296
+ default: string | number | boolean | Events | {
297
+ [key: string]: any;
298
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
299
+ label: string;
300
+ value: string;
301
+ };
302
+ };
303
+ }, {
304
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
305
+ getPopupContainer: () => HTMLElement;
306
+ myValue: any;
307
+ selectChange: () => void;
308
+ options: import("vue").Ref<{
309
+ [x: string]: any;
310
+ }[]>;
311
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
312
+ data: {
313
+ type?: undefined;
314
+ default?: undefined;
315
+ } | {
316
+ type: any;
317
+ default: string | number | boolean | Events | {
318
+ [key: string]: any;
319
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
320
+ label: string;
321
+ value: string;
322
+ };
323
+ };
324
+ value: {
325
+ type?: undefined;
326
+ default?: undefined;
327
+ } | {
328
+ type: any;
329
+ default: string | number | boolean | Events | {
330
+ [key: string]: any;
331
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
332
+ label: string;
333
+ value: string;
334
+ };
335
+ };
336
+ dataFieldNames: {
337
+ type?: undefined;
338
+ default?: undefined;
339
+ } | {
340
+ type: any;
341
+ default: string | number | boolean | Events | {
342
+ [key: string]: any;
343
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
344
+ label: string;
345
+ value: string;
346
+ };
347
+ };
348
+ id: {
349
+ type?: undefined;
350
+ default?: undefined;
351
+ } | {
352
+ type: any;
353
+ default: string | number | boolean | Events | {
354
+ [key: string]: any;
355
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
356
+ label: string;
357
+ value: string;
358
+ };
359
+ };
360
+ name: {
361
+ type?: undefined;
362
+ default?: undefined;
363
+ } | {
364
+ type: any;
365
+ default: string | number | boolean | Events | {
366
+ [key: string]: any;
367
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
368
+ label: string;
369
+ value: string;
370
+ };
371
+ };
372
+ keyName: {
373
+ type?: undefined;
374
+ default?: undefined;
375
+ } | {
376
+ type: any;
377
+ default: string | number | boolean | Events | {
378
+ [key: string]: any;
379
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
380
+ label: string;
381
+ value: string;
382
+ };
383
+ };
384
+ type: {
385
+ type?: undefined;
386
+ default?: undefined;
387
+ } | {
388
+ type: any;
389
+ default: string | number | boolean | Events | {
390
+ [key: string]: any;
391
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
392
+ label: string;
393
+ value: string;
394
+ };
395
+ };
396
+ width: {
397
+ type?: undefined;
398
+ default?: undefined;
399
+ } | {
400
+ type: any;
401
+ default: string | number | boolean | Events | {
402
+ [key: string]: any;
403
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
404
+ label: string;
405
+ value: string;
406
+ };
407
+ };
408
+ height: {
409
+ type?: undefined;
410
+ default?: undefined;
411
+ } | {
412
+ type: any;
413
+ default: string | number | boolean | Events | {
414
+ [key: string]: any;
415
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
416
+ label: string;
417
+ value: string;
418
+ };
419
+ };
420
+ position: {
421
+ type?: undefined;
422
+ default?: undefined;
423
+ } | {
424
+ type: any;
425
+ default: string | number | boolean | Events | {
426
+ [key: string]: any;
427
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
428
+ label: string;
429
+ value: string;
430
+ };
431
+ };
432
+ top: {
433
+ type?: undefined;
434
+ default?: undefined;
435
+ } | {
436
+ type: any;
437
+ default: string | number | boolean | Events | {
438
+ [key: string]: any;
439
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
440
+ label: string;
441
+ value: string;
442
+ };
443
+ };
444
+ left: {
445
+ type?: undefined;
446
+ default?: undefined;
447
+ } | {
448
+ type: any;
449
+ default: string | number | boolean | Events | {
450
+ [key: string]: any;
451
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
452
+ label: string;
453
+ value: string;
454
+ };
455
+ };
456
+ zIndex: {
457
+ type?: undefined;
458
+ default?: undefined;
459
+ } | {
460
+ type: any;
461
+ default: string | number | boolean | Events | {
462
+ [key: string]: any;
463
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
464
+ label: string;
465
+ value: string;
466
+ };
467
+ };
468
+ rotate: {
469
+ type?: undefined;
470
+ default?: undefined;
471
+ } | {
472
+ type: any;
473
+ default: string | number | boolean | Events | {
474
+ [key: string]: any;
475
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
476
+ label: string;
477
+ value: string;
478
+ };
479
+ };
480
+ isShow: {
481
+ type?: undefined;
482
+ default?: undefined;
483
+ } | {
484
+ type: any;
485
+ default: string | number | boolean | Events | {
486
+ [key: string]: any;
487
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
488
+ label: string;
489
+ value: string;
490
+ };
491
+ };
492
+ isRender: {
493
+ type?: undefined;
494
+ default?: undefined;
495
+ } | {
496
+ type: any;
497
+ default: string | number | boolean | Events | {
498
+ [key: string]: any;
499
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
500
+ label: string;
501
+ value: string;
502
+ };
503
+ };
504
+ events: {
505
+ type?: undefined;
506
+ default?: undefined;
507
+ } | {
508
+ type: any;
509
+ default: string | number | boolean | Events | {
510
+ [key: string]: any;
511
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
512
+ label: string;
513
+ value: string;
514
+ };
515
+ };
516
+ requestUrl: {
517
+ type?: undefined;
518
+ default?: undefined;
519
+ } | {
520
+ type: any;
521
+ default: string | number | boolean | Events | {
522
+ [key: string]: any;
523
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
524
+ label: string;
525
+ value: string;
526
+ };
527
+ };
528
+ requestMethod: {
529
+ type?: undefined;
530
+ default?: undefined;
531
+ } | {
532
+ type: any;
533
+ default: string | number | boolean | Events | {
534
+ [key: string]: any;
535
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
536
+ label: string;
537
+ value: string;
538
+ };
539
+ };
540
+ requestHeaders: {
541
+ type?: undefined;
542
+ default?: undefined;
543
+ } | {
544
+ type: any;
545
+ default: string | number | boolean | Events | {
546
+ [key: string]: any;
547
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
548
+ label: string;
549
+ value: string;
550
+ };
551
+ };
552
+ isOpenRequestTimer: {
553
+ type?: undefined;
554
+ default?: undefined;
555
+ } | {
556
+ type: any;
557
+ default: string | number | boolean | Events | {
558
+ [key: string]: any;
559
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
560
+ label: string;
561
+ value: string;
562
+ };
563
+ };
564
+ requestInterval: {
565
+ type?: undefined;
566
+ default?: undefined;
567
+ } | {
568
+ type: any;
569
+ default: string | number | boolean | Events | {
570
+ [key: string]: any;
571
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
572
+ label: string;
573
+ value: string;
574
+ };
575
+ };
576
+ requestParams: {
577
+ type?: undefined;
578
+ default?: undefined;
579
+ } | {
580
+ type: any;
581
+ default: string | number | boolean | Events | {
582
+ [key: string]: any;
583
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
584
+ label: string;
585
+ value: string;
586
+ };
587
+ };
588
+ requestSort: {
589
+ type?: undefined;
590
+ default?: undefined;
591
+ } | {
592
+ type: any;
593
+ default: string | number | boolean | Events | {
594
+ [key: string]: any;
595
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
596
+ label: string;
597
+ value: string;
598
+ };
599
+ };
600
+ dataType: {
601
+ type?: undefined;
602
+ default?: undefined;
603
+ } | {
604
+ type: any;
605
+ default: string | number | boolean | Events | {
606
+ [key: string]: any;
607
+ } | import('../../_utils/props').RequestParams | import("./props").SelectOptions | {
608
+ label: string;
609
+ value: string;
610
+ };
611
+ };
612
+ }>>, {}>;
613
+ export default _sfc_main;