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