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