@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,849 @@
1
+ export declare const EcanList: import("../../_utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
2
+ data: {
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
+ [key: string]: any;
13
+ }[];
14
+ };
15
+ columns: {
16
+ type?: undefined;
17
+ default?: undefined;
18
+ } | {
19
+ type: any;
20
+ default: string | number | boolean | import("../../_utils/props").Events | {
21
+ [key: string]: any;
22
+ } | import("../../_utils/props").RequestParams | {
23
+ [key: string]: any;
24
+ }[] | {
25
+ [key: string]: any;
26
+ }[];
27
+ };
28
+ sliceCount: {
29
+ type?: undefined;
30
+ default?: undefined;
31
+ } | {
32
+ type: any;
33
+ default: string | number | boolean | import("../../_utils/props").Events | {
34
+ [key: string]: any;
35
+ } | import("../../_utils/props").RequestParams | {
36
+ [key: string]: any;
37
+ }[] | {
38
+ [key: string]: any;
39
+ }[];
40
+ };
41
+ backgroundColor: {
42
+ type?: undefined;
43
+ default?: undefined;
44
+ } | {
45
+ type: any;
46
+ default: string | number | boolean | import("../../_utils/props").Events | {
47
+ [key: string]: any;
48
+ } | import("../../_utils/props").RequestParams | {
49
+ [key: string]: any;
50
+ }[] | {
51
+ [key: string]: any;
52
+ }[];
53
+ };
54
+ useRanking: {
55
+ type?: undefined;
56
+ default?: undefined;
57
+ } | {
58
+ type: any;
59
+ default: string | number | boolean | import("../../_utils/props").Events | {
60
+ [key: string]: any;
61
+ } | import("../../_utils/props").RequestParams | {
62
+ [key: string]: any;
63
+ }[] | {
64
+ [key: string]: any;
65
+ }[];
66
+ };
67
+ useTitle: {
68
+ type?: undefined;
69
+ default?: undefined;
70
+ } | {
71
+ type: any;
72
+ default: string | number | boolean | import("../../_utils/props").Events | {
73
+ [key: string]: any;
74
+ } | import("../../_utils/props").RequestParams | {
75
+ [key: string]: any;
76
+ }[] | {
77
+ [key: string]: any;
78
+ }[];
79
+ };
80
+ columnCount: {
81
+ type?: undefined;
82
+ default?: undefined;
83
+ } | {
84
+ type: any;
85
+ default: string | number | boolean | import("../../_utils/props").Events | {
86
+ [key: string]: any;
87
+ } | import("../../_utils/props").RequestParams | {
88
+ [key: string]: any;
89
+ }[] | {
90
+ [key: string]: any;
91
+ }[];
92
+ };
93
+ itemHeight: {
94
+ type?: undefined;
95
+ default?: undefined;
96
+ } | {
97
+ type: any;
98
+ default: string | number | boolean | import("../../_utils/props").Events | {
99
+ [key: string]: any;
100
+ } | import("../../_utils/props").RequestParams | {
101
+ [key: string]: any;
102
+ }[] | {
103
+ [key: string]: any;
104
+ }[];
105
+ };
106
+ itemColSpan: {
107
+ type?: undefined;
108
+ default?: undefined;
109
+ } | {
110
+ type: any;
111
+ default: string | number | boolean | import("../../_utils/props").Events | {
112
+ [key: string]: any;
113
+ } | import("../../_utils/props").RequestParams | {
114
+ [key: string]: any;
115
+ }[] | {
116
+ [key: string]: any;
117
+ }[];
118
+ };
119
+ itemRowSpan: {
120
+ type?: undefined;
121
+ default?: undefined;
122
+ } | {
123
+ type: any;
124
+ default: string | number | boolean | import("../../_utils/props").Events | {
125
+ [key: string]: any;
126
+ } | import("../../_utils/props").RequestParams | {
127
+ [key: string]: any;
128
+ }[] | {
129
+ [key: string]: any;
130
+ }[];
131
+ };
132
+ id: {
133
+ type?: undefined;
134
+ default?: undefined;
135
+ } | {
136
+ type: any;
137
+ default: string | number | boolean | import("../../_utils/props").Events | {
138
+ [key: string]: any;
139
+ } | import("../../_utils/props").RequestParams | {
140
+ [key: string]: any;
141
+ }[] | {
142
+ [key: string]: any;
143
+ }[];
144
+ };
145
+ name: {
146
+ type?: undefined;
147
+ default?: undefined;
148
+ } | {
149
+ type: any;
150
+ default: string | number | boolean | import("../../_utils/props").Events | {
151
+ [key: string]: any;
152
+ } | import("../../_utils/props").RequestParams | {
153
+ [key: string]: any;
154
+ }[] | {
155
+ [key: string]: any;
156
+ }[];
157
+ };
158
+ keyName: {
159
+ type?: undefined;
160
+ default?: undefined;
161
+ } | {
162
+ type: any;
163
+ default: string | number | boolean | import("../../_utils/props").Events | {
164
+ [key: string]: any;
165
+ } | import("../../_utils/props").RequestParams | {
166
+ [key: string]: any;
167
+ }[] | {
168
+ [key: string]: any;
169
+ }[];
170
+ };
171
+ type: {
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
+ [key: string]: any;
182
+ }[];
183
+ };
184
+ width: {
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
+ [key: string]: any;
195
+ }[];
196
+ };
197
+ height: {
198
+ type?: undefined;
199
+ default?: undefined;
200
+ } | {
201
+ type: any;
202
+ default: string | number | boolean | import("../../_utils/props").Events | {
203
+ [key: string]: any;
204
+ } | import("../../_utils/props").RequestParams | {
205
+ [key: string]: any;
206
+ }[] | {
207
+ [key: string]: any;
208
+ }[];
209
+ };
210
+ position: {
211
+ type?: undefined;
212
+ default?: undefined;
213
+ } | {
214
+ type: any;
215
+ default: string | number | boolean | import("../../_utils/props").Events | {
216
+ [key: string]: any;
217
+ } | import("../../_utils/props").RequestParams | {
218
+ [key: string]: any;
219
+ }[] | {
220
+ [key: string]: any;
221
+ }[];
222
+ };
223
+ top: {
224
+ type?: undefined;
225
+ default?: undefined;
226
+ } | {
227
+ type: any;
228
+ default: string | number | boolean | import("../../_utils/props").Events | {
229
+ [key: string]: any;
230
+ } | import("../../_utils/props").RequestParams | {
231
+ [key: string]: any;
232
+ }[] | {
233
+ [key: string]: any;
234
+ }[];
235
+ };
236
+ left: {
237
+ type?: undefined;
238
+ default?: undefined;
239
+ } | {
240
+ type: any;
241
+ default: string | number | boolean | import("../../_utils/props").Events | {
242
+ [key: string]: any;
243
+ } | import("../../_utils/props").RequestParams | {
244
+ [key: string]: any;
245
+ }[] | {
246
+ [key: string]: any;
247
+ }[];
248
+ };
249
+ zIndex: {
250
+ type?: undefined;
251
+ default?: undefined;
252
+ } | {
253
+ type: any;
254
+ default: string | number | boolean | import("../../_utils/props").Events | {
255
+ [key: string]: any;
256
+ } | import("../../_utils/props").RequestParams | {
257
+ [key: string]: any;
258
+ }[] | {
259
+ [key: string]: any;
260
+ }[];
261
+ };
262
+ rotate: {
263
+ type?: undefined;
264
+ default?: undefined;
265
+ } | {
266
+ type: any;
267
+ default: string | number | boolean | import("../../_utils/props").Events | {
268
+ [key: string]: any;
269
+ } | import("../../_utils/props").RequestParams | {
270
+ [key: string]: any;
271
+ }[] | {
272
+ [key: string]: any;
273
+ }[];
274
+ };
275
+ isShow: {
276
+ type?: undefined;
277
+ default?: undefined;
278
+ } | {
279
+ type: any;
280
+ default: string | number | boolean | import("../../_utils/props").Events | {
281
+ [key: string]: any;
282
+ } | import("../../_utils/props").RequestParams | {
283
+ [key: string]: any;
284
+ }[] | {
285
+ [key: string]: any;
286
+ }[];
287
+ };
288
+ isRender: {
289
+ type?: undefined;
290
+ default?: undefined;
291
+ } | {
292
+ type: any;
293
+ default: string | number | boolean | import("../../_utils/props").Events | {
294
+ [key: string]: any;
295
+ } | import("../../_utils/props").RequestParams | {
296
+ [key: string]: any;
297
+ }[] | {
298
+ [key: string]: any;
299
+ }[];
300
+ };
301
+ events: {
302
+ type?: undefined;
303
+ default?: undefined;
304
+ } | {
305
+ type: any;
306
+ default: string | number | boolean | import("../../_utils/props").Events | {
307
+ [key: string]: any;
308
+ } | import("../../_utils/props").RequestParams | {
309
+ [key: string]: any;
310
+ }[] | {
311
+ [key: string]: any;
312
+ }[];
313
+ };
314
+ requestUrl: {
315
+ type?: undefined;
316
+ default?: undefined;
317
+ } | {
318
+ type: any;
319
+ default: string | number | boolean | import("../../_utils/props").Events | {
320
+ [key: string]: any;
321
+ } | import("../../_utils/props").RequestParams | {
322
+ [key: string]: any;
323
+ }[] | {
324
+ [key: string]: any;
325
+ }[];
326
+ };
327
+ requestMethod: {
328
+ type?: undefined;
329
+ default?: undefined;
330
+ } | {
331
+ type: any;
332
+ default: string | number | boolean | import("../../_utils/props").Events | {
333
+ [key: string]: any;
334
+ } | import("../../_utils/props").RequestParams | {
335
+ [key: string]: any;
336
+ }[] | {
337
+ [key: string]: any;
338
+ }[];
339
+ };
340
+ requestHeaders: {
341
+ type?: undefined;
342
+ default?: undefined;
343
+ } | {
344
+ type: any;
345
+ default: string | number | boolean | import("../../_utils/props").Events | {
346
+ [key: string]: any;
347
+ } | import("../../_utils/props").RequestParams | {
348
+ [key: string]: any;
349
+ }[] | {
350
+ [key: string]: any;
351
+ }[];
352
+ };
353
+ isOpenRequestTimer: {
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
+ [key: string]: any;
364
+ }[];
365
+ };
366
+ requestInterval: {
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
+ [key: string]: any;
377
+ }[];
378
+ };
379
+ requestParams: {
380
+ type?: undefined;
381
+ default?: undefined;
382
+ } | {
383
+ type: any;
384
+ default: string | number | boolean | import("../../_utils/props").Events | {
385
+ [key: string]: any;
386
+ } | import("../../_utils/props").RequestParams | {
387
+ [key: string]: any;
388
+ }[] | {
389
+ [key: string]: any;
390
+ }[];
391
+ };
392
+ requestSort: {
393
+ type?: undefined;
394
+ default?: undefined;
395
+ } | {
396
+ type: any;
397
+ default: string | number | boolean | import("../../_utils/props").Events | {
398
+ [key: string]: any;
399
+ } | import("../../_utils/props").RequestParams | {
400
+ [key: string]: any;
401
+ }[] | {
402
+ [key: string]: any;
403
+ }[];
404
+ };
405
+ dataType: {
406
+ type?: undefined;
407
+ default?: undefined;
408
+ } | {
409
+ type: any;
410
+ default: string | number | boolean | import("../../_utils/props").Events | {
411
+ [key: string]: any;
412
+ } | import("../../_utils/props").RequestParams | {
413
+ [key: string]: any;
414
+ }[] | {
415
+ [key: string]: any;
416
+ }[];
417
+ };
418
+ }, {
419
+ style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
420
+ formatFn: (value: string | number, format?: "" | "money" | "percentage" | "contrast") => string | number;
421
+ columnStyle: import("vue").ComputedRef<{
422
+ textAlign: string;
423
+ }>;
424
+ contrastClass: (value: string | number, format: "" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
425
+ dataSource: import("vue").Ref<{
426
+ [x: string]: any;
427
+ }[]>;
428
+ loading: import("vue").Ref<boolean>;
429
+ click: () => void;
430
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
431
+ data: {
432
+ type?: undefined;
433
+ default?: undefined;
434
+ } | {
435
+ type: any;
436
+ default: string | number | boolean | import("../../_utils/props").Events | {
437
+ [key: string]: any;
438
+ } | import("../../_utils/props").RequestParams | {
439
+ [key: string]: any;
440
+ }[] | {
441
+ [key: string]: any;
442
+ }[];
443
+ };
444
+ columns: {
445
+ type?: undefined;
446
+ default?: undefined;
447
+ } | {
448
+ type: any;
449
+ default: string | number | boolean | import("../../_utils/props").Events | {
450
+ [key: string]: any;
451
+ } | import("../../_utils/props").RequestParams | {
452
+ [key: string]: any;
453
+ }[] | {
454
+ [key: string]: any;
455
+ }[];
456
+ };
457
+ sliceCount: {
458
+ type?: undefined;
459
+ default?: undefined;
460
+ } | {
461
+ type: any;
462
+ default: string | number | boolean | import("../../_utils/props").Events | {
463
+ [key: string]: any;
464
+ } | import("../../_utils/props").RequestParams | {
465
+ [key: string]: any;
466
+ }[] | {
467
+ [key: string]: any;
468
+ }[];
469
+ };
470
+ backgroundColor: {
471
+ type?: undefined;
472
+ default?: undefined;
473
+ } | {
474
+ type: any;
475
+ default: string | number | boolean | import("../../_utils/props").Events | {
476
+ [key: string]: any;
477
+ } | import("../../_utils/props").RequestParams | {
478
+ [key: string]: any;
479
+ }[] | {
480
+ [key: string]: any;
481
+ }[];
482
+ };
483
+ useRanking: {
484
+ type?: undefined;
485
+ default?: undefined;
486
+ } | {
487
+ type: any;
488
+ default: string | number | boolean | import("../../_utils/props").Events | {
489
+ [key: string]: any;
490
+ } | import("../../_utils/props").RequestParams | {
491
+ [key: string]: any;
492
+ }[] | {
493
+ [key: string]: any;
494
+ }[];
495
+ };
496
+ useTitle: {
497
+ type?: undefined;
498
+ default?: undefined;
499
+ } | {
500
+ type: any;
501
+ default: string | number | boolean | import("../../_utils/props").Events | {
502
+ [key: string]: any;
503
+ } | import("../../_utils/props").RequestParams | {
504
+ [key: string]: any;
505
+ }[] | {
506
+ [key: string]: any;
507
+ }[];
508
+ };
509
+ columnCount: {
510
+ type?: undefined;
511
+ default?: undefined;
512
+ } | {
513
+ type: any;
514
+ default: string | number | boolean | import("../../_utils/props").Events | {
515
+ [key: string]: any;
516
+ } | import("../../_utils/props").RequestParams | {
517
+ [key: string]: any;
518
+ }[] | {
519
+ [key: string]: any;
520
+ }[];
521
+ };
522
+ itemHeight: {
523
+ type?: undefined;
524
+ default?: undefined;
525
+ } | {
526
+ type: any;
527
+ default: string | number | boolean | import("../../_utils/props").Events | {
528
+ [key: string]: any;
529
+ } | import("../../_utils/props").RequestParams | {
530
+ [key: string]: any;
531
+ }[] | {
532
+ [key: string]: any;
533
+ }[];
534
+ };
535
+ itemColSpan: {
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
+ [key: string]: any;
546
+ }[];
547
+ };
548
+ itemRowSpan: {
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
+ [key: string]: any;
559
+ }[];
560
+ };
561
+ id: {
562
+ type?: undefined;
563
+ default?: undefined;
564
+ } | {
565
+ type: any;
566
+ default: string | number | boolean | import("../../_utils/props").Events | {
567
+ [key: string]: any;
568
+ } | import("../../_utils/props").RequestParams | {
569
+ [key: string]: any;
570
+ }[] | {
571
+ [key: string]: any;
572
+ }[];
573
+ };
574
+ name: {
575
+ type?: undefined;
576
+ default?: undefined;
577
+ } | {
578
+ type: any;
579
+ default: string | number | boolean | import("../../_utils/props").Events | {
580
+ [key: string]: any;
581
+ } | import("../../_utils/props").RequestParams | {
582
+ [key: string]: any;
583
+ }[] | {
584
+ [key: string]: any;
585
+ }[];
586
+ };
587
+ keyName: {
588
+ type?: undefined;
589
+ default?: undefined;
590
+ } | {
591
+ type: any;
592
+ default: string | number | boolean | import("../../_utils/props").Events | {
593
+ [key: string]: any;
594
+ } | import("../../_utils/props").RequestParams | {
595
+ [key: string]: any;
596
+ }[] | {
597
+ [key: string]: any;
598
+ }[];
599
+ };
600
+ type: {
601
+ type?: undefined;
602
+ default?: undefined;
603
+ } | {
604
+ type: any;
605
+ default: string | number | boolean | import("../../_utils/props").Events | {
606
+ [key: string]: any;
607
+ } | import("../../_utils/props").RequestParams | {
608
+ [key: string]: any;
609
+ }[] | {
610
+ [key: string]: any;
611
+ }[];
612
+ };
613
+ width: {
614
+ type?: undefined;
615
+ default?: undefined;
616
+ } | {
617
+ type: any;
618
+ default: string | number | boolean | import("../../_utils/props").Events | {
619
+ [key: string]: any;
620
+ } | import("../../_utils/props").RequestParams | {
621
+ [key: string]: any;
622
+ }[] | {
623
+ [key: string]: any;
624
+ }[];
625
+ };
626
+ height: {
627
+ type?: undefined;
628
+ default?: undefined;
629
+ } | {
630
+ type: any;
631
+ default: string | number | boolean | import("../../_utils/props").Events | {
632
+ [key: string]: any;
633
+ } | import("../../_utils/props").RequestParams | {
634
+ [key: string]: any;
635
+ }[] | {
636
+ [key: string]: any;
637
+ }[];
638
+ };
639
+ position: {
640
+ type?: undefined;
641
+ default?: undefined;
642
+ } | {
643
+ type: any;
644
+ default: string | number | boolean | import("../../_utils/props").Events | {
645
+ [key: string]: any;
646
+ } | import("../../_utils/props").RequestParams | {
647
+ [key: string]: any;
648
+ }[] | {
649
+ [key: string]: any;
650
+ }[];
651
+ };
652
+ top: {
653
+ type?: undefined;
654
+ default?: undefined;
655
+ } | {
656
+ type: any;
657
+ default: string | number | boolean | import("../../_utils/props").Events | {
658
+ [key: string]: any;
659
+ } | import("../../_utils/props").RequestParams | {
660
+ [key: string]: any;
661
+ }[] | {
662
+ [key: string]: any;
663
+ }[];
664
+ };
665
+ left: {
666
+ type?: undefined;
667
+ default?: undefined;
668
+ } | {
669
+ type: any;
670
+ default: string | number | boolean | import("../../_utils/props").Events | {
671
+ [key: string]: any;
672
+ } | import("../../_utils/props").RequestParams | {
673
+ [key: string]: any;
674
+ }[] | {
675
+ [key: string]: any;
676
+ }[];
677
+ };
678
+ zIndex: {
679
+ type?: undefined;
680
+ default?: undefined;
681
+ } | {
682
+ type: any;
683
+ default: string | number | boolean | import("../../_utils/props").Events | {
684
+ [key: string]: any;
685
+ } | import("../../_utils/props").RequestParams | {
686
+ [key: string]: any;
687
+ }[] | {
688
+ [key: string]: any;
689
+ }[];
690
+ };
691
+ rotate: {
692
+ type?: undefined;
693
+ default?: undefined;
694
+ } | {
695
+ type: any;
696
+ default: string | number | boolean | import("../../_utils/props").Events | {
697
+ [key: string]: any;
698
+ } | import("../../_utils/props").RequestParams | {
699
+ [key: string]: any;
700
+ }[] | {
701
+ [key: string]: any;
702
+ }[];
703
+ };
704
+ isShow: {
705
+ type?: undefined;
706
+ default?: undefined;
707
+ } | {
708
+ type: any;
709
+ default: string | number | boolean | import("../../_utils/props").Events | {
710
+ [key: string]: any;
711
+ } | import("../../_utils/props").RequestParams | {
712
+ [key: string]: any;
713
+ }[] | {
714
+ [key: string]: any;
715
+ }[];
716
+ };
717
+ isRender: {
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
+ [key: string]: any;
728
+ }[];
729
+ };
730
+ events: {
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
+ [key: string]: any;
741
+ }[];
742
+ };
743
+ requestUrl: {
744
+ type?: undefined;
745
+ default?: undefined;
746
+ } | {
747
+ type: any;
748
+ default: string | number | boolean | import("../../_utils/props").Events | {
749
+ [key: string]: any;
750
+ } | import("../../_utils/props").RequestParams | {
751
+ [key: string]: any;
752
+ }[] | {
753
+ [key: string]: any;
754
+ }[];
755
+ };
756
+ requestMethod: {
757
+ type?: undefined;
758
+ default?: undefined;
759
+ } | {
760
+ type: any;
761
+ default: string | number | boolean | import("../../_utils/props").Events | {
762
+ [key: string]: any;
763
+ } | import("../../_utils/props").RequestParams | {
764
+ [key: string]: any;
765
+ }[] | {
766
+ [key: string]: any;
767
+ }[];
768
+ };
769
+ requestHeaders: {
770
+ type?: undefined;
771
+ default?: undefined;
772
+ } | {
773
+ type: any;
774
+ default: string | number | boolean | import("../../_utils/props").Events | {
775
+ [key: string]: any;
776
+ } | import("../../_utils/props").RequestParams | {
777
+ [key: string]: any;
778
+ }[] | {
779
+ [key: string]: any;
780
+ }[];
781
+ };
782
+ isOpenRequestTimer: {
783
+ type?: undefined;
784
+ default?: undefined;
785
+ } | {
786
+ type: any;
787
+ default: string | number | boolean | import("../../_utils/props").Events | {
788
+ [key: string]: any;
789
+ } | import("../../_utils/props").RequestParams | {
790
+ [key: string]: any;
791
+ }[] | {
792
+ [key: string]: any;
793
+ }[];
794
+ };
795
+ requestInterval: {
796
+ type?: undefined;
797
+ default?: undefined;
798
+ } | {
799
+ type: any;
800
+ default: string | number | boolean | import("../../_utils/props").Events | {
801
+ [key: string]: any;
802
+ } | import("../../_utils/props").RequestParams | {
803
+ [key: string]: any;
804
+ }[] | {
805
+ [key: string]: any;
806
+ }[];
807
+ };
808
+ requestParams: {
809
+ type?: undefined;
810
+ default?: undefined;
811
+ } | {
812
+ type: any;
813
+ default: string | number | boolean | import("../../_utils/props").Events | {
814
+ [key: string]: any;
815
+ } | import("../../_utils/props").RequestParams | {
816
+ [key: string]: any;
817
+ }[] | {
818
+ [key: string]: any;
819
+ }[];
820
+ };
821
+ requestSort: {
822
+ type?: undefined;
823
+ default?: undefined;
824
+ } | {
825
+ type: any;
826
+ default: string | number | boolean | import("../../_utils/props").Events | {
827
+ [key: string]: any;
828
+ } | import("../../_utils/props").RequestParams | {
829
+ [key: string]: any;
830
+ }[] | {
831
+ [key: string]: any;
832
+ }[];
833
+ };
834
+ dataType: {
835
+ type?: undefined;
836
+ default?: undefined;
837
+ } | {
838
+ type: any;
839
+ default: string | number | boolean | import("../../_utils/props").Events | {
840
+ [key: string]: any;
841
+ } | import("../../_utils/props").RequestParams | {
842
+ [key: string]: any;
843
+ }[] | {
844
+ [key: string]: any;
845
+ }[];
846
+ };
847
+ }>>, {}>> & Record<string, any>;
848
+ export default EcanList;
849
+ export * from './props';