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