@ecan-bi/datav 1.0.41 → 1.0.44

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 (62) hide show
  1. package/dist/index.es.js +906 -255
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +906 -252
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/style.css +149 -86
  6. package/package.json +1 -1
  7. package/types/_utils/constant.d.ts +3 -1
  8. package/types/_utils/hooks/index.d.ts +2 -0
  9. package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
  10. package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
  11. package/types/container/border/Border.vue.d.ts +183 -54
  12. package/types/container/border/index.d.ts +130 -1
  13. package/types/container/border/props.d.ts +115 -55
  14. package/types/container/modal/Modal.vue.d.ts +1 -1
  15. package/types/container/modal/index.d.ts +1 -1
  16. package/types/control/button/Button.vue.d.ts +110 -0
  17. package/types/control/button/index.d.ts +111 -1
  18. package/types/control/button/props.d.ts +104 -44
  19. package/types/control/date-picker/props.d.ts +52 -52
  20. package/types/control/input/props.d.ts +48 -48
  21. package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
  22. package/types/control/range-picker/props.d.ts +52 -52
  23. package/types/control/select/Select.vue.d.ts +50 -50
  24. package/types/control/select/props.d.ts +50 -50
  25. package/types/control/tabs/Tabs.vue.d.ts +42 -0
  26. package/types/control/tabs/index.d.ts +42 -0
  27. package/types/control/tabs/props.d.ts +24 -0
  28. package/types/graph/bar/Bar.vue.d.ts +128 -128
  29. package/types/graph/bar/index.d.ts +128 -128
  30. package/types/graph/bar/props.d.ts +65 -65
  31. package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
  32. package/types/graph/combo-graph/index.d.ts +155 -0
  33. package/types/graph/combo-graph/props.d.ts +72 -0
  34. package/types/graph/custom-graph/props.d.ts +48 -48
  35. package/types/graph/line/Line.vue.d.ts +155 -0
  36. package/types/graph/line/index.d.ts +155 -0
  37. package/types/graph/line/props.d.ts +72 -0
  38. package/types/graph/pie/Pie.vue.d.ts +155 -0
  39. package/types/graph/pie/index.d.ts +155 -0
  40. package/types/graph/pie/props.d.ts +72 -0
  41. package/types/graph/scatter/Scatter.vue.d.ts +155 -0
  42. package/types/graph/scatter/index.d.ts +155 -0
  43. package/types/graph/scatter/props.d.ts +72 -0
  44. package/types/map/map/props.d.ts +112 -112
  45. package/types/media/image/props.d.ts +52 -52
  46. package/types/setting/index.d.ts +1 -0
  47. package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
  48. package/types/setting/provider-config/index.d.ts +37 -7
  49. package/types/setting/provider-config/props.d.ts +21 -3
  50. package/types/setting/renderer/Renderer.vue.d.ts +22 -0
  51. package/types/setting/renderer/index.d.ts +23 -0
  52. package/types/setting/renderer/props.d.ts +17 -0
  53. package/types/table/table/Table.vue.d.ts +900 -79
  54. package/types/table/table/index.d.ts +899 -79
  55. package/types/table/table/props.d.ts +451 -39
  56. package/types/text/list/List.vue.d.ts +64 -64
  57. package/types/text/list/props.d.ts +64 -64
  58. package/types/text/proportion/Proportion.vue.d.ts +68 -68
  59. package/types/text/proportion/props.d.ts +68 -68
  60. package/types/text/text/Text.vue.d.ts +66 -66
  61. package/types/text/text/props.d.ts +66 -66
  62. package/types/text/time-display/props.d.ts +60 -60
@@ -1,265 +1,675 @@
1
+ import { Events } from '../../_utils/props';
1
2
  declare const _sfc_main: import("vue").DefineComponent<{
2
3
  columns: {
3
4
  type?: undefined;
4
5
  default?: undefined;
5
6
  } | {
6
7
  type: any;
7
- default: 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
+ }[];
8
20
  };
9
21
  data: {
10
22
  type?: undefined;
11
23
  default?: undefined;
12
24
  } | {
13
25
  type: any;
14
- default: any;
26
+ default: string | number | boolean | Events | {
27
+ [key: string]: any;
28
+ } | import('../../_utils/props').RequestParams | {
29
+ [key: string]: any;
30
+ }[] | {
31
+ [key: string]: any;
32
+ chartType: "table";
33
+ plugin: "1";
34
+ layer: "1";
35
+ } | {
36
+ [key: string]: any;
37
+ }[];
15
38
  };
16
39
  bordered: {
17
40
  type?: undefined;
18
41
  default?: undefined;
19
42
  } | {
20
43
  type: any;
21
- default: any;
44
+ default: string | number | boolean | Events | {
45
+ [key: string]: any;
46
+ } | import('../../_utils/props').RequestParams | {
47
+ [key: string]: any;
48
+ }[] | {
49
+ [key: string]: any;
50
+ chartType: "table";
51
+ plugin: "1";
52
+ layer: "1";
53
+ } | {
54
+ [key: string]: any;
55
+ }[];
22
56
  };
23
57
  size: {
24
58
  type?: undefined;
25
59
  default?: undefined;
26
60
  } | {
27
61
  type: any;
28
- default: any;
62
+ default: string | number | boolean | 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
+ }[];
29
74
  };
30
75
  isUseSeq: {
31
76
  type?: undefined;
32
77
  default?: undefined;
33
78
  } | {
34
79
  type: any;
35
- default: any;
80
+ default: string | number | boolean | 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
+ }[];
36
92
  };
37
93
  columnsFixedNum: {
38
94
  type?: undefined;
39
95
  default?: undefined;
40
96
  } | {
41
97
  type: any;
42
- default: any;
98
+ default: string | number | boolean | Events | {
99
+ [key: string]: any;
100
+ } | import('../../_utils/props').RequestParams | {
101
+ [key: string]: any;
102
+ }[] | {
103
+ [key: string]: any;
104
+ chartType: "table";
105
+ plugin: "1";
106
+ layer: "1";
107
+ } | {
108
+ [key: string]: any;
109
+ }[];
43
110
  };
44
111
  scrollX: {
45
112
  type?: undefined;
46
113
  default?: undefined;
47
114
  } | {
48
115
  type: any;
49
- default: any;
116
+ default: string | number | boolean | Events | {
117
+ [key: string]: any;
118
+ } | import('../../_utils/props').RequestParams | {
119
+ [key: string]: any;
120
+ }[] | {
121
+ [key: string]: any;
122
+ chartType: "table";
123
+ plugin: "1";
124
+ layer: "1";
125
+ } | {
126
+ [key: string]: any;
127
+ }[];
50
128
  };
51
129
  paginationShow: {
52
130
  type?: undefined;
53
131
  default?: undefined;
54
132
  } | {
55
133
  type: any;
56
- default: any;
134
+ default: string | number | boolean | Events | {
135
+ [key: string]: any;
136
+ } | import('../../_utils/props').RequestParams | {
137
+ [key: string]: any;
138
+ }[] | {
139
+ [key: string]: any;
140
+ chartType: "table";
141
+ plugin: "1";
142
+ layer: "1";
143
+ } | {
144
+ [key: string]: any;
145
+ }[];
57
146
  };
58
147
  paginationPosition: {
59
148
  type?: undefined;
60
149
  default?: undefined;
61
150
  } | {
62
151
  type: any;
63
- default: any;
152
+ default: string | number | boolean | Events | {
153
+ [key: string]: any;
154
+ } | import('../../_utils/props').RequestParams | {
155
+ [key: string]: any;
156
+ }[] | {
157
+ [key: string]: any;
158
+ chartType: "table";
159
+ plugin: "1";
160
+ layer: "1";
161
+ } | {
162
+ [key: string]: any;
163
+ }[];
64
164
  };
65
165
  simple: {
66
166
  type?: undefined;
67
167
  default?: undefined;
68
168
  } | {
69
169
  type: any;
70
- default: any;
170
+ default: string | number | boolean | Events | {
171
+ [key: string]: any;
172
+ } | import('../../_utils/props').RequestParams | {
173
+ [key: string]: any;
174
+ }[] | {
175
+ [key: string]: any;
176
+ chartType: "table";
177
+ plugin: "1";
178
+ layer: "1";
179
+ } | {
180
+ [key: string]: any;
181
+ }[];
71
182
  };
72
183
  headerCellBackgroundColor: {
73
184
  type?: undefined;
74
185
  default?: undefined;
75
186
  } | {
76
187
  type: any;
77
- default: 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
+ }[];
78
200
  };
79
201
  cellBackgroundColor: {
80
202
  type?: undefined;
81
203
  default?: undefined;
82
204
  } | {
83
205
  type: any;
84
- default: any;
206
+ default: string | number | boolean | Events | {
207
+ [key: string]: any;
208
+ } | import('../../_utils/props').RequestParams | {
209
+ [key: string]: any;
210
+ }[] | {
211
+ [key: string]: any;
212
+ chartType: "table";
213
+ plugin: "1";
214
+ layer: "1";
215
+ } | {
216
+ [key: string]: any;
217
+ }[];
85
218
  };
86
219
  borderColor: {
87
220
  type?: undefined;
88
221
  default?: undefined;
89
222
  } | {
90
223
  type: any;
91
- default: any;
224
+ default: string | number | boolean | Events | {
225
+ [key: string]: any;
226
+ } | import('../../_utils/props').RequestParams | {
227
+ [key: string]: any;
228
+ }[] | {
229
+ [key: string]: any;
230
+ chartType: "table";
231
+ plugin: "1";
232
+ layer: "1";
233
+ } | {
234
+ [key: string]: any;
235
+ }[];
92
236
  };
93
237
  paginationPageSize: {
94
238
  type?: undefined;
95
239
  default?: undefined;
96
240
  } | {
97
241
  type: any;
98
- default: any;
242
+ default: string | number | boolean | 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
+ }[];
99
254
  };
100
- graphicConfig?: {
255
+ graphicConfig: {
101
256
  type?: undefined;
102
257
  default?: undefined;
103
258
  } | {
104
259
  type: any;
105
- default: any;
260
+ default: string | number | boolean | 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
+ }[];
106
272
  };
107
273
  id: {
108
274
  type?: undefined;
109
275
  default?: undefined;
110
276
  } | {
111
277
  type: any;
112
- default: any;
278
+ default: string | number | boolean | Events | {
279
+ [key: string]: any;
280
+ } | import('../../_utils/props').RequestParams | {
281
+ [key: string]: any;
282
+ }[] | {
283
+ [key: string]: any;
284
+ chartType: "table";
285
+ plugin: "1";
286
+ layer: "1";
287
+ } | {
288
+ [key: string]: any;
289
+ }[];
113
290
  };
114
291
  name: {
115
292
  type?: undefined;
116
293
  default?: undefined;
117
294
  } | {
118
295
  type: any;
119
- default: any;
296
+ default: string | number | boolean | Events | {
297
+ [key: string]: any;
298
+ } | import('../../_utils/props').RequestParams | {
299
+ [key: string]: any;
300
+ }[] | {
301
+ [key: string]: any;
302
+ chartType: "table";
303
+ plugin: "1";
304
+ layer: "1";
305
+ } | {
306
+ [key: string]: any;
307
+ }[];
120
308
  };
121
309
  keyName: {
122
310
  type?: undefined;
123
311
  default?: undefined;
124
312
  } | {
125
313
  type: any;
126
- default: any;
314
+ default: string | number | boolean | Events | {
315
+ [key: string]: any;
316
+ } | import('../../_utils/props').RequestParams | {
317
+ [key: string]: any;
318
+ }[] | {
319
+ [key: string]: any;
320
+ chartType: "table";
321
+ plugin: "1";
322
+ layer: "1";
323
+ } | {
324
+ [key: string]: any;
325
+ }[];
127
326
  };
128
327
  type: {
129
328
  type?: undefined;
130
329
  default?: undefined;
131
330
  } | {
132
331
  type: any;
133
- default: any;
332
+ default: string | number | boolean | Events | {
333
+ [key: string]: any;
334
+ } | import('../../_utils/props').RequestParams | {
335
+ [key: string]: any;
336
+ }[] | {
337
+ [key: string]: any;
338
+ chartType: "table";
339
+ plugin: "1";
340
+ layer: "1";
341
+ } | {
342
+ [key: string]: any;
343
+ }[];
134
344
  };
135
345
  width: {
136
346
  type?: undefined;
137
347
  default?: undefined;
138
348
  } | {
139
349
  type: any;
140
- default: any;
350
+ default: string | number | boolean | Events | {
351
+ [key: string]: any;
352
+ } | import('../../_utils/props').RequestParams | {
353
+ [key: string]: any;
354
+ }[] | {
355
+ [key: string]: any;
356
+ chartType: "table";
357
+ plugin: "1";
358
+ layer: "1";
359
+ } | {
360
+ [key: string]: any;
361
+ }[];
141
362
  };
142
363
  height: {
143
364
  type?: undefined;
144
365
  default?: undefined;
145
366
  } | {
146
367
  type: any;
147
- default: 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
+ }[];
148
380
  };
149
381
  position: {
150
382
  type?: undefined;
151
383
  default?: undefined;
152
384
  } | {
153
385
  type: any;
154
- default: any;
386
+ default: string | number | boolean | Events | {
387
+ [key: string]: any;
388
+ } | import('../../_utils/props').RequestParams | {
389
+ [key: string]: any;
390
+ }[] | {
391
+ [key: string]: any;
392
+ chartType: "table";
393
+ plugin: "1";
394
+ layer: "1";
395
+ } | {
396
+ [key: string]: any;
397
+ }[];
155
398
  };
156
399
  top: {
157
400
  type?: undefined;
158
401
  default?: undefined;
159
402
  } | {
160
403
  type: any;
161
- default: any;
404
+ default: string | number | boolean | Events | {
405
+ [key: string]: any;
406
+ } | import('../../_utils/props').RequestParams | {
407
+ [key: string]: any;
408
+ }[] | {
409
+ [key: string]: any;
410
+ chartType: "table";
411
+ plugin: "1";
412
+ layer: "1";
413
+ } | {
414
+ [key: string]: any;
415
+ }[];
162
416
  };
163
417
  left: {
164
418
  type?: undefined;
165
419
  default?: undefined;
166
420
  } | {
167
421
  type: any;
168
- default: any;
422
+ default: string | number | boolean | 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
+ }[];
169
434
  };
170
435
  zIndex: {
171
436
  type?: undefined;
172
437
  default?: undefined;
173
438
  } | {
174
439
  type: any;
175
- default: any;
440
+ default: string | number | boolean | 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
+ }[];
176
452
  };
177
453
  rotate: {
178
454
  type?: undefined;
179
455
  default?: undefined;
180
456
  } | {
181
457
  type: any;
182
- default: any;
458
+ default: string | number | boolean | Events | {
459
+ [key: string]: any;
460
+ } | import('../../_utils/props').RequestParams | {
461
+ [key: string]: any;
462
+ }[] | {
463
+ [key: string]: any;
464
+ chartType: "table";
465
+ plugin: "1";
466
+ layer: "1";
467
+ } | {
468
+ [key: string]: any;
469
+ }[];
183
470
  };
184
471
  isShow: {
185
472
  type?: undefined;
186
473
  default?: undefined;
187
474
  } | {
188
475
  type: any;
189
- default: any;
476
+ default: string | number | boolean | Events | {
477
+ [key: string]: any;
478
+ } | import('../../_utils/props').RequestParams | {
479
+ [key: string]: any;
480
+ }[] | {
481
+ [key: string]: any;
482
+ chartType: "table";
483
+ plugin: "1";
484
+ layer: "1";
485
+ } | {
486
+ [key: string]: any;
487
+ }[];
190
488
  };
191
489
  isRender: {
192
490
  type?: undefined;
193
491
  default?: undefined;
194
492
  } | {
195
493
  type: any;
196
- default: any;
494
+ default: string | number | boolean | Events | {
495
+ [key: string]: any;
496
+ } | import('../../_utils/props').RequestParams | {
497
+ [key: string]: any;
498
+ }[] | {
499
+ [key: string]: any;
500
+ chartType: "table";
501
+ plugin: "1";
502
+ layer: "1";
503
+ } | {
504
+ [key: string]: any;
505
+ }[];
197
506
  };
198
507
  events: {
199
508
  type?: undefined;
200
509
  default?: undefined;
201
510
  } | {
202
511
  type: any;
203
- default: any;
512
+ default: string | number | boolean | Events | {
513
+ [key: string]: any;
514
+ } | import('../../_utils/props').RequestParams | {
515
+ [key: string]: any;
516
+ }[] | {
517
+ [key: string]: any;
518
+ chartType: "table";
519
+ plugin: "1";
520
+ layer: "1";
521
+ } | {
522
+ [key: string]: any;
523
+ }[];
204
524
  };
205
525
  requestUrl: {
206
526
  type?: undefined;
207
527
  default?: undefined;
208
528
  } | {
209
529
  type: any;
210
- default: any;
530
+ default: string | number | boolean | Events | {
531
+ [key: string]: any;
532
+ } | import('../../_utils/props').RequestParams | {
533
+ [key: string]: any;
534
+ }[] | {
535
+ [key: string]: any;
536
+ chartType: "table";
537
+ plugin: "1";
538
+ layer: "1";
539
+ } | {
540
+ [key: string]: any;
541
+ }[];
211
542
  };
212
543
  requestMethod: {
213
544
  type?: undefined;
214
545
  default?: undefined;
215
546
  } | {
216
547
  type: any;
217
- default: 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
+ }[];
218
560
  };
219
561
  requestHeaders: {
220
562
  type?: undefined;
221
563
  default?: undefined;
222
564
  } | {
223
565
  type: any;
224
- default: any;
566
+ default: string | number | boolean | Events | {
567
+ [key: string]: any;
568
+ } | import('../../_utils/props').RequestParams | {
569
+ [key: string]: any;
570
+ }[] | {
571
+ [key: string]: any;
572
+ chartType: "table";
573
+ plugin: "1";
574
+ layer: "1";
575
+ } | {
576
+ [key: string]: any;
577
+ }[];
225
578
  };
226
579
  isOpenRequestTimer: {
227
580
  type?: undefined;
228
581
  default?: undefined;
229
582
  } | {
230
583
  type: any;
231
- default: any;
584
+ default: string | number | boolean | Events | {
585
+ [key: string]: any;
586
+ } | import('../../_utils/props').RequestParams | {
587
+ [key: string]: any;
588
+ }[] | {
589
+ [key: string]: any;
590
+ chartType: "table";
591
+ plugin: "1";
592
+ layer: "1";
593
+ } | {
594
+ [key: string]: any;
595
+ }[];
232
596
  };
233
597
  requestInterval: {
234
598
  type?: undefined;
235
599
  default?: undefined;
236
600
  } | {
237
601
  type: any;
238
- default: any;
602
+ default: string | number | boolean | 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
+ }[];
239
614
  };
240
615
  requestParams: {
241
616
  type?: undefined;
242
617
  default?: undefined;
243
618
  } | {
244
619
  type: any;
245
- default: any;
620
+ default: string | number | boolean | 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
+ }[];
246
632
  };
247
633
  requestSort: {
248
634
  type?: undefined;
249
635
  default?: undefined;
250
636
  } | {
251
637
  type: any;
252
- default: any;
638
+ default: string | number | boolean | Events | {
639
+ [key: string]: any;
640
+ } | import('../../_utils/props').RequestParams | {
641
+ [key: string]: any;
642
+ }[] | {
643
+ [key: string]: any;
644
+ chartType: "table";
645
+ plugin: "1";
646
+ layer: "1";
647
+ } | {
648
+ [key: string]: any;
649
+ }[];
253
650
  };
254
651
  dataType: {
255
652
  type?: undefined;
256
653
  default?: undefined;
257
654
  } | {
258
655
  type: any;
259
- default: any;
656
+ default: string | number | boolean | Events | {
657
+ [key: string]: any;
658
+ } | import('../../_utils/props').RequestParams | {
659
+ [key: string]: any;
660
+ }[] | {
661
+ [key: string]: any;
662
+ chartType: "table";
663
+ plugin: "1";
664
+ layer: "1";
665
+ } | {
666
+ [key: string]: any;
667
+ }[];
260
668
  };
261
669
  }, {
262
- x: import("vue").ComputedRef<any>;
670
+ x: import("vue").ComputedRef<string | number | boolean | {
671
+ [key: string]: any;
672
+ }>;
263
673
  y: import("vue").ComputedRef<number>;
264
674
  myColumns: import("vue").ComputedRef<{
265
675
  [key: string]: any;
@@ -269,8 +679,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
269
679
  onClick: () => void;
270
680
  };
271
681
  pagination: import("vue").ComputedRef<{
272
- simple: any;
273
- position: any[];
682
+ simple: string | number | boolean | {
683
+ [key: string]: any;
684
+ };
685
+ position: (string | number | boolean | {
686
+ [key: string]: any;
687
+ })[];
274
688
  total: number;
275
689
  current: number;
276
690
  pageSize: number;
@@ -294,259 +708,666 @@ declare const _sfc_main: import("vue").DefineComponent<{
294
708
  default?: undefined;
295
709
  } | {
296
710
  type: any;
297
- default: any;
711
+ default: string | number | boolean | Events | {
712
+ [key: string]: any;
713
+ } | import('../../_utils/props').RequestParams | {
714
+ [key: string]: any;
715
+ }[] | {
716
+ [key: string]: any;
717
+ chartType: "table";
718
+ plugin: "1";
719
+ layer: "1";
720
+ } | {
721
+ [key: string]: any;
722
+ }[];
298
723
  };
299
724
  data: {
300
725
  type?: undefined;
301
726
  default?: undefined;
302
727
  } | {
303
728
  type: any;
304
- default: any;
729
+ default: string | number | boolean | Events | {
730
+ [key: string]: any;
731
+ } | import('../../_utils/props').RequestParams | {
732
+ [key: string]: any;
733
+ }[] | {
734
+ [key: string]: any;
735
+ chartType: "table";
736
+ plugin: "1";
737
+ layer: "1";
738
+ } | {
739
+ [key: string]: any;
740
+ }[];
305
741
  };
306
742
  bordered: {
307
743
  type?: undefined;
308
744
  default?: undefined;
309
745
  } | {
310
746
  type: any;
311
- default: any;
747
+ default: string | number | boolean | Events | {
748
+ [key: string]: any;
749
+ } | import('../../_utils/props').RequestParams | {
750
+ [key: string]: any;
751
+ }[] | {
752
+ [key: string]: any;
753
+ chartType: "table";
754
+ plugin: "1";
755
+ layer: "1";
756
+ } | {
757
+ [key: string]: any;
758
+ }[];
312
759
  };
313
760
  size: {
314
761
  type?: undefined;
315
762
  default?: undefined;
316
763
  } | {
317
764
  type: any;
318
- default: any;
765
+ default: string | number | boolean | Events | {
766
+ [key: string]: any;
767
+ } | import('../../_utils/props').RequestParams | {
768
+ [key: string]: any;
769
+ }[] | {
770
+ [key: string]: any;
771
+ chartType: "table";
772
+ plugin: "1";
773
+ layer: "1";
774
+ } | {
775
+ [key: string]: any;
776
+ }[];
319
777
  };
320
778
  isUseSeq: {
321
779
  type?: undefined;
322
780
  default?: undefined;
323
781
  } | {
324
782
  type: any;
325
- default: any;
783
+ default: string | number | boolean | Events | {
784
+ [key: string]: any;
785
+ } | import('../../_utils/props').RequestParams | {
786
+ [key: string]: any;
787
+ }[] | {
788
+ [key: string]: any;
789
+ chartType: "table";
790
+ plugin: "1";
791
+ layer: "1";
792
+ } | {
793
+ [key: string]: any;
794
+ }[];
326
795
  };
327
796
  columnsFixedNum: {
328
797
  type?: undefined;
329
798
  default?: undefined;
330
799
  } | {
331
800
  type: any;
332
- default: any;
801
+ default: string | number | boolean | Events | {
802
+ [key: string]: any;
803
+ } | import('../../_utils/props').RequestParams | {
804
+ [key: string]: any;
805
+ }[] | {
806
+ [key: string]: any;
807
+ chartType: "table";
808
+ plugin: "1";
809
+ layer: "1";
810
+ } | {
811
+ [key: string]: any;
812
+ }[];
333
813
  };
334
814
  scrollX: {
335
815
  type?: undefined;
336
816
  default?: undefined;
337
817
  } | {
338
818
  type: any;
339
- default: any;
819
+ default: string | number | boolean | Events | {
820
+ [key: string]: any;
821
+ } | import('../../_utils/props').RequestParams | {
822
+ [key: string]: any;
823
+ }[] | {
824
+ [key: string]: any;
825
+ chartType: "table";
826
+ plugin: "1";
827
+ layer: "1";
828
+ } | {
829
+ [key: string]: any;
830
+ }[];
340
831
  };
341
832
  paginationShow: {
342
833
  type?: undefined;
343
834
  default?: undefined;
344
835
  } | {
345
836
  type: any;
346
- default: any;
837
+ default: string | number | boolean | Events | {
838
+ [key: string]: any;
839
+ } | import('../../_utils/props').RequestParams | {
840
+ [key: string]: any;
841
+ }[] | {
842
+ [key: string]: any;
843
+ chartType: "table";
844
+ plugin: "1";
845
+ layer: "1";
846
+ } | {
847
+ [key: string]: any;
848
+ }[];
347
849
  };
348
850
  paginationPosition: {
349
851
  type?: undefined;
350
852
  default?: undefined;
351
853
  } | {
352
854
  type: any;
353
- default: any;
855
+ default: string | number | boolean | Events | {
856
+ [key: string]: any;
857
+ } | import('../../_utils/props').RequestParams | {
858
+ [key: string]: any;
859
+ }[] | {
860
+ [key: string]: any;
861
+ chartType: "table";
862
+ plugin: "1";
863
+ layer: "1";
864
+ } | {
865
+ [key: string]: any;
866
+ }[];
354
867
  };
355
868
  simple: {
356
869
  type?: undefined;
357
870
  default?: undefined;
358
871
  } | {
359
872
  type: any;
360
- default: any;
873
+ default: string | number | boolean | Events | {
874
+ [key: string]: any;
875
+ } | import('../../_utils/props').RequestParams | {
876
+ [key: string]: any;
877
+ }[] | {
878
+ [key: string]: any;
879
+ chartType: "table";
880
+ plugin: "1";
881
+ layer: "1";
882
+ } | {
883
+ [key: string]: any;
884
+ }[];
361
885
  };
362
886
  headerCellBackgroundColor: {
363
887
  type?: undefined;
364
888
  default?: undefined;
365
889
  } | {
366
890
  type: any;
367
- default: any;
891
+ default: string | number | boolean | Events | {
892
+ [key: string]: any;
893
+ } | import('../../_utils/props').RequestParams | {
894
+ [key: string]: any;
895
+ }[] | {
896
+ [key: string]: any;
897
+ chartType: "table";
898
+ plugin: "1";
899
+ layer: "1";
900
+ } | {
901
+ [key: string]: any;
902
+ }[];
368
903
  };
369
904
  cellBackgroundColor: {
370
905
  type?: undefined;
371
906
  default?: undefined;
372
907
  } | {
373
908
  type: any;
374
- default: any;
909
+ default: string | number | boolean | Events | {
910
+ [key: string]: any;
911
+ } | import('../../_utils/props').RequestParams | {
912
+ [key: string]: any;
913
+ }[] | {
914
+ [key: string]: any;
915
+ chartType: "table";
916
+ plugin: "1";
917
+ layer: "1";
918
+ } | {
919
+ [key: string]: any;
920
+ }[];
375
921
  };
376
922
  borderColor: {
377
923
  type?: undefined;
378
924
  default?: undefined;
379
925
  } | {
380
926
  type: any;
381
- default: any;
927
+ default: string | number | boolean | Events | {
928
+ [key: string]: any;
929
+ } | import('../../_utils/props').RequestParams | {
930
+ [key: string]: any;
931
+ }[] | {
932
+ [key: string]: any;
933
+ chartType: "table";
934
+ plugin: "1";
935
+ layer: "1";
936
+ } | {
937
+ [key: string]: any;
938
+ }[];
382
939
  };
383
940
  paginationPageSize: {
384
941
  type?: undefined;
385
942
  default?: undefined;
386
943
  } | {
387
944
  type: any;
388
- default: any;
945
+ default: string | number | boolean | Events | {
946
+ [key: string]: any;
947
+ } | import('../../_utils/props').RequestParams | {
948
+ [key: string]: any;
949
+ }[] | {
950
+ [key: string]: any;
951
+ chartType: "table";
952
+ plugin: "1";
953
+ layer: "1";
954
+ } | {
955
+ [key: string]: any;
956
+ }[];
389
957
  };
390
- graphicConfig?: {
958
+ graphicConfig: {
391
959
  type?: undefined;
392
960
  default?: undefined;
393
961
  } | {
394
962
  type: any;
395
- default: any;
963
+ default: string | number | boolean | Events | {
964
+ [key: string]: any;
965
+ } | import('../../_utils/props').RequestParams | {
966
+ [key: string]: any;
967
+ }[] | {
968
+ [key: string]: any;
969
+ chartType: "table";
970
+ plugin: "1";
971
+ layer: "1";
972
+ } | {
973
+ [key: string]: any;
974
+ }[];
396
975
  };
397
976
  id: {
398
977
  type?: undefined;
399
978
  default?: undefined;
400
979
  } | {
401
980
  type: any;
402
- default: any;
981
+ default: string | number | boolean | Events | {
982
+ [key: string]: any;
983
+ } | import('../../_utils/props').RequestParams | {
984
+ [key: string]: any;
985
+ }[] | {
986
+ [key: string]: any;
987
+ chartType: "table";
988
+ plugin: "1";
989
+ layer: "1";
990
+ } | {
991
+ [key: string]: any;
992
+ }[];
403
993
  };
404
994
  name: {
405
995
  type?: undefined;
406
996
  default?: undefined;
407
997
  } | {
408
998
  type: any;
409
- default: any;
999
+ default: string | number | boolean | Events | {
1000
+ [key: string]: any;
1001
+ } | import('../../_utils/props').RequestParams | {
1002
+ [key: string]: any;
1003
+ }[] | {
1004
+ [key: string]: any;
1005
+ chartType: "table";
1006
+ plugin: "1";
1007
+ layer: "1";
1008
+ } | {
1009
+ [key: string]: any;
1010
+ }[];
410
1011
  };
411
1012
  keyName: {
412
1013
  type?: undefined;
413
1014
  default?: undefined;
414
1015
  } | {
415
1016
  type: any;
416
- default: any;
1017
+ default: string | number | boolean | Events | {
1018
+ [key: string]: any;
1019
+ } | import('../../_utils/props').RequestParams | {
1020
+ [key: string]: any;
1021
+ }[] | {
1022
+ [key: string]: any;
1023
+ chartType: "table";
1024
+ plugin: "1";
1025
+ layer: "1";
1026
+ } | {
1027
+ [key: string]: any;
1028
+ }[];
417
1029
  };
418
1030
  type: {
419
1031
  type?: undefined;
420
1032
  default?: undefined;
421
1033
  } | {
422
1034
  type: any;
423
- default: any;
1035
+ default: string | number | boolean | Events | {
1036
+ [key: string]: any;
1037
+ } | import('../../_utils/props').RequestParams | {
1038
+ [key: string]: any;
1039
+ }[] | {
1040
+ [key: string]: any;
1041
+ chartType: "table";
1042
+ plugin: "1";
1043
+ layer: "1";
1044
+ } | {
1045
+ [key: string]: any;
1046
+ }[];
424
1047
  };
425
1048
  width: {
426
1049
  type?: undefined;
427
1050
  default?: undefined;
428
1051
  } | {
429
1052
  type: any;
430
- default: any;
1053
+ default: string | number | boolean | Events | {
1054
+ [key: string]: any;
1055
+ } | import('../../_utils/props').RequestParams | {
1056
+ [key: string]: any;
1057
+ }[] | {
1058
+ [key: string]: any;
1059
+ chartType: "table";
1060
+ plugin: "1";
1061
+ layer: "1";
1062
+ } | {
1063
+ [key: string]: any;
1064
+ }[];
431
1065
  };
432
1066
  height: {
433
1067
  type?: undefined;
434
1068
  default?: undefined;
435
1069
  } | {
436
1070
  type: any;
437
- default: any;
1071
+ default: string | number | boolean | Events | {
1072
+ [key: string]: any;
1073
+ } | import('../../_utils/props').RequestParams | {
1074
+ [key: string]: any;
1075
+ }[] | {
1076
+ [key: string]: any;
1077
+ chartType: "table";
1078
+ plugin: "1";
1079
+ layer: "1";
1080
+ } | {
1081
+ [key: string]: any;
1082
+ }[];
438
1083
  };
439
1084
  position: {
440
1085
  type?: undefined;
441
1086
  default?: undefined;
442
1087
  } | {
443
1088
  type: any;
444
- default: any;
1089
+ default: string | number | boolean | Events | {
1090
+ [key: string]: any;
1091
+ } | import('../../_utils/props').RequestParams | {
1092
+ [key: string]: any;
1093
+ }[] | {
1094
+ [key: string]: any;
1095
+ chartType: "table";
1096
+ plugin: "1";
1097
+ layer: "1";
1098
+ } | {
1099
+ [key: string]: any;
1100
+ }[];
445
1101
  };
446
1102
  top: {
447
1103
  type?: undefined;
448
1104
  default?: undefined;
449
1105
  } | {
450
1106
  type: any;
451
- default: any;
1107
+ default: string | number | boolean | Events | {
1108
+ [key: string]: any;
1109
+ } | import('../../_utils/props').RequestParams | {
1110
+ [key: string]: any;
1111
+ }[] | {
1112
+ [key: string]: any;
1113
+ chartType: "table";
1114
+ plugin: "1";
1115
+ layer: "1";
1116
+ } | {
1117
+ [key: string]: any;
1118
+ }[];
452
1119
  };
453
1120
  left: {
454
1121
  type?: undefined;
455
1122
  default?: undefined;
456
1123
  } | {
457
1124
  type: any;
458
- default: any;
1125
+ default: string | number | boolean | Events | {
1126
+ [key: string]: any;
1127
+ } | import('../../_utils/props').RequestParams | {
1128
+ [key: string]: any;
1129
+ }[] | {
1130
+ [key: string]: any;
1131
+ chartType: "table";
1132
+ plugin: "1";
1133
+ layer: "1";
1134
+ } | {
1135
+ [key: string]: any;
1136
+ }[];
459
1137
  };
460
1138
  zIndex: {
461
1139
  type?: undefined;
462
1140
  default?: undefined;
463
1141
  } | {
464
1142
  type: any;
465
- default: any;
1143
+ default: string | number | boolean | Events | {
1144
+ [key: string]: any;
1145
+ } | import('../../_utils/props').RequestParams | {
1146
+ [key: string]: any;
1147
+ }[] | {
1148
+ [key: string]: any;
1149
+ chartType: "table";
1150
+ plugin: "1";
1151
+ layer: "1";
1152
+ } | {
1153
+ [key: string]: any;
1154
+ }[];
466
1155
  };
467
1156
  rotate: {
468
1157
  type?: undefined;
469
1158
  default?: undefined;
470
1159
  } | {
471
1160
  type: any;
472
- default: any;
1161
+ default: string | number | boolean | Events | {
1162
+ [key: string]: any;
1163
+ } | import('../../_utils/props').RequestParams | {
1164
+ [key: string]: any;
1165
+ }[] | {
1166
+ [key: string]: any;
1167
+ chartType: "table";
1168
+ plugin: "1";
1169
+ layer: "1";
1170
+ } | {
1171
+ [key: string]: any;
1172
+ }[];
473
1173
  };
474
1174
  isShow: {
475
1175
  type?: undefined;
476
1176
  default?: undefined;
477
1177
  } | {
478
1178
  type: any;
479
- default: any;
1179
+ default: string | number | boolean | Events | {
1180
+ [key: string]: any;
1181
+ } | import('../../_utils/props').RequestParams | {
1182
+ [key: string]: any;
1183
+ }[] | {
1184
+ [key: string]: any;
1185
+ chartType: "table";
1186
+ plugin: "1";
1187
+ layer: "1";
1188
+ } | {
1189
+ [key: string]: any;
1190
+ }[];
480
1191
  };
481
1192
  isRender: {
482
1193
  type?: undefined;
483
1194
  default?: undefined;
484
1195
  } | {
485
1196
  type: any;
486
- default: any;
1197
+ default: string | number | boolean | Events | {
1198
+ [key: string]: any;
1199
+ } | import('../../_utils/props').RequestParams | {
1200
+ [key: string]: any;
1201
+ }[] | {
1202
+ [key: string]: any;
1203
+ chartType: "table";
1204
+ plugin: "1";
1205
+ layer: "1";
1206
+ } | {
1207
+ [key: string]: any;
1208
+ }[];
487
1209
  };
488
1210
  events: {
489
1211
  type?: undefined;
490
1212
  default?: undefined;
491
1213
  } | {
492
1214
  type: any;
493
- default: any;
1215
+ default: string | number | boolean | Events | {
1216
+ [key: string]: any;
1217
+ } | import('../../_utils/props').RequestParams | {
1218
+ [key: string]: any;
1219
+ }[] | {
1220
+ [key: string]: any;
1221
+ chartType: "table";
1222
+ plugin: "1";
1223
+ layer: "1";
1224
+ } | {
1225
+ [key: string]: any;
1226
+ }[];
494
1227
  };
495
1228
  requestUrl: {
496
1229
  type?: undefined;
497
1230
  default?: undefined;
498
1231
  } | {
499
1232
  type: any;
500
- default: any;
1233
+ default: string | number | boolean | Events | {
1234
+ [key: string]: any;
1235
+ } | import('../../_utils/props').RequestParams | {
1236
+ [key: string]: any;
1237
+ }[] | {
1238
+ [key: string]: any;
1239
+ chartType: "table";
1240
+ plugin: "1";
1241
+ layer: "1";
1242
+ } | {
1243
+ [key: string]: any;
1244
+ }[];
501
1245
  };
502
1246
  requestMethod: {
503
1247
  type?: undefined;
504
1248
  default?: undefined;
505
1249
  } | {
506
1250
  type: any;
507
- default: any;
1251
+ default: string | number | boolean | Events | {
1252
+ [key: string]: any;
1253
+ } | import('../../_utils/props').RequestParams | {
1254
+ [key: string]: any;
1255
+ }[] | {
1256
+ [key: string]: any;
1257
+ chartType: "table";
1258
+ plugin: "1";
1259
+ layer: "1";
1260
+ } | {
1261
+ [key: string]: any;
1262
+ }[];
508
1263
  };
509
1264
  requestHeaders: {
510
1265
  type?: undefined;
511
1266
  default?: undefined;
512
1267
  } | {
513
1268
  type: any;
514
- default: any;
1269
+ default: string | number | boolean | Events | {
1270
+ [key: string]: any;
1271
+ } | import('../../_utils/props').RequestParams | {
1272
+ [key: string]: any;
1273
+ }[] | {
1274
+ [key: string]: any;
1275
+ chartType: "table";
1276
+ plugin: "1";
1277
+ layer: "1";
1278
+ } | {
1279
+ [key: string]: any;
1280
+ }[];
515
1281
  };
516
1282
  isOpenRequestTimer: {
517
1283
  type?: undefined;
518
1284
  default?: undefined;
519
1285
  } | {
520
1286
  type: any;
521
- default: any;
1287
+ default: string | number | boolean | Events | {
1288
+ [key: string]: any;
1289
+ } | import('../../_utils/props').RequestParams | {
1290
+ [key: string]: any;
1291
+ }[] | {
1292
+ [key: string]: any;
1293
+ chartType: "table";
1294
+ plugin: "1";
1295
+ layer: "1";
1296
+ } | {
1297
+ [key: string]: any;
1298
+ }[];
522
1299
  };
523
1300
  requestInterval: {
524
1301
  type?: undefined;
525
1302
  default?: undefined;
526
1303
  } | {
527
1304
  type: any;
528
- default: any;
1305
+ default: string | number | boolean | Events | {
1306
+ [key: string]: any;
1307
+ } | import('../../_utils/props').RequestParams | {
1308
+ [key: string]: any;
1309
+ }[] | {
1310
+ [key: string]: any;
1311
+ chartType: "table";
1312
+ plugin: "1";
1313
+ layer: "1";
1314
+ } | {
1315
+ [key: string]: any;
1316
+ }[];
529
1317
  };
530
1318
  requestParams: {
531
1319
  type?: undefined;
532
1320
  default?: undefined;
533
1321
  } | {
534
1322
  type: any;
535
- default: any;
1323
+ default: string | number | boolean | Events | {
1324
+ [key: string]: any;
1325
+ } | import('../../_utils/props').RequestParams | {
1326
+ [key: string]: any;
1327
+ }[] | {
1328
+ [key: string]: any;
1329
+ chartType: "table";
1330
+ plugin: "1";
1331
+ layer: "1";
1332
+ } | {
1333
+ [key: string]: any;
1334
+ }[];
536
1335
  };
537
1336
  requestSort: {
538
1337
  type?: undefined;
539
1338
  default?: undefined;
540
1339
  } | {
541
1340
  type: any;
542
- default: any;
1341
+ default: string | number | boolean | Events | {
1342
+ [key: string]: any;
1343
+ } | import('../../_utils/props').RequestParams | {
1344
+ [key: string]: any;
1345
+ }[] | {
1346
+ [key: string]: any;
1347
+ chartType: "table";
1348
+ plugin: "1";
1349
+ layer: "1";
1350
+ } | {
1351
+ [key: string]: any;
1352
+ }[];
543
1353
  };
544
1354
  dataType: {
545
1355
  type?: undefined;
546
1356
  default?: undefined;
547
1357
  } | {
548
1358
  type: any;
549
- default: any;
1359
+ default: string | number | boolean | Events | {
1360
+ [key: string]: any;
1361
+ } | import('../../_utils/props').RequestParams | {
1362
+ [key: string]: any;
1363
+ }[] | {
1364
+ [key: string]: any;
1365
+ chartType: "table";
1366
+ plugin: "1";
1367
+ layer: "1";
1368
+ } | {
1369
+ [key: string]: any;
1370
+ }[];
550
1371
  };
551
1372
  }>>, {}>;
552
1373
  export default _sfc_main;