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