@ecan-bi/datav 1.0.48 → 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.
- package/dist/index.es.js +238 -206
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +237 -205
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +41 -34
- package/package.json +1 -1
- package/types/_utils/hooks/useVariablesInText.d.ts +1 -1
- package/types/container/index.d.ts +1 -0
- package/types/{control → container}/tabs/Tabs.vue.d.ts +0 -0
- package/types/{control → container}/tabs/index.d.ts +0 -0
- package/types/{control → container}/tabs/props.d.ts +0 -0
- package/types/control/index.d.ts +0 -1
- package/types/table/table/Table.vue.d.ts +271 -0
- package/types/table/table/index.d.ts +271 -0
- package/types/table/table/props.d.ts +139 -0
|
@@ -18,6 +18,11 @@ export interface TableProps extends Props {
|
|
|
18
18
|
cellBackgroundColor: string;
|
|
19
19
|
borderColor: string;
|
|
20
20
|
paginationPageSize: number;
|
|
21
|
+
isUseAction: boolean;
|
|
22
|
+
actionColumnWidth: number;
|
|
23
|
+
actionList: {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}[];
|
|
21
26
|
graphicConfig: {
|
|
22
27
|
[key: string]: any;
|
|
23
28
|
chartType: 'table';
|
|
@@ -43,6 +48,8 @@ export declare const tableComponentProps: {
|
|
|
43
48
|
layer: '1';
|
|
44
49
|
} | {
|
|
45
50
|
[key: string]: any;
|
|
51
|
+
}[] | {
|
|
52
|
+
[key: string]: any;
|
|
46
53
|
}[];
|
|
47
54
|
};
|
|
48
55
|
data: {
|
|
@@ -61,6 +68,8 @@ export declare const tableComponentProps: {
|
|
|
61
68
|
layer: '1';
|
|
62
69
|
} | {
|
|
63
70
|
[key: string]: any;
|
|
71
|
+
}[] | {
|
|
72
|
+
[key: string]: any;
|
|
64
73
|
}[];
|
|
65
74
|
};
|
|
66
75
|
bordered: {
|
|
@@ -79,6 +88,8 @@ export declare const tableComponentProps: {
|
|
|
79
88
|
layer: '1';
|
|
80
89
|
} | {
|
|
81
90
|
[key: string]: any;
|
|
91
|
+
}[] | {
|
|
92
|
+
[key: string]: any;
|
|
82
93
|
}[];
|
|
83
94
|
};
|
|
84
95
|
size: {
|
|
@@ -97,6 +108,8 @@ export declare const tableComponentProps: {
|
|
|
97
108
|
layer: '1';
|
|
98
109
|
} | {
|
|
99
110
|
[key: string]: any;
|
|
111
|
+
}[] | {
|
|
112
|
+
[key: string]: any;
|
|
100
113
|
}[];
|
|
101
114
|
};
|
|
102
115
|
isUseSeq: {
|
|
@@ -115,6 +128,8 @@ export declare const tableComponentProps: {
|
|
|
115
128
|
layer: '1';
|
|
116
129
|
} | {
|
|
117
130
|
[key: string]: any;
|
|
131
|
+
}[] | {
|
|
132
|
+
[key: string]: any;
|
|
118
133
|
}[];
|
|
119
134
|
};
|
|
120
135
|
columnsFixedNum: {
|
|
@@ -133,6 +148,8 @@ export declare const tableComponentProps: {
|
|
|
133
148
|
layer: '1';
|
|
134
149
|
} | {
|
|
135
150
|
[key: string]: any;
|
|
151
|
+
}[] | {
|
|
152
|
+
[key: string]: any;
|
|
136
153
|
}[];
|
|
137
154
|
};
|
|
138
155
|
scrollX: {
|
|
@@ -151,6 +168,8 @@ export declare const tableComponentProps: {
|
|
|
151
168
|
layer: '1';
|
|
152
169
|
} | {
|
|
153
170
|
[key: string]: any;
|
|
171
|
+
}[] | {
|
|
172
|
+
[key: string]: any;
|
|
154
173
|
}[];
|
|
155
174
|
};
|
|
156
175
|
paginationShow: {
|
|
@@ -169,6 +188,8 @@ export declare const tableComponentProps: {
|
|
|
169
188
|
layer: '1';
|
|
170
189
|
} | {
|
|
171
190
|
[key: string]: any;
|
|
191
|
+
}[] | {
|
|
192
|
+
[key: string]: any;
|
|
172
193
|
}[];
|
|
173
194
|
};
|
|
174
195
|
paginationPosition: {
|
|
@@ -187,6 +208,8 @@ export declare const tableComponentProps: {
|
|
|
187
208
|
layer: '1';
|
|
188
209
|
} | {
|
|
189
210
|
[key: string]: any;
|
|
211
|
+
}[] | {
|
|
212
|
+
[key: string]: any;
|
|
190
213
|
}[];
|
|
191
214
|
};
|
|
192
215
|
simple: {
|
|
@@ -205,6 +228,8 @@ export declare const tableComponentProps: {
|
|
|
205
228
|
layer: '1';
|
|
206
229
|
} | {
|
|
207
230
|
[key: string]: any;
|
|
231
|
+
}[] | {
|
|
232
|
+
[key: string]: any;
|
|
208
233
|
}[];
|
|
209
234
|
};
|
|
210
235
|
headerCellBackgroundColor: {
|
|
@@ -223,6 +248,8 @@ export declare const tableComponentProps: {
|
|
|
223
248
|
layer: '1';
|
|
224
249
|
} | {
|
|
225
250
|
[key: string]: any;
|
|
251
|
+
}[] | {
|
|
252
|
+
[key: string]: any;
|
|
226
253
|
}[];
|
|
227
254
|
};
|
|
228
255
|
cellBackgroundColor: {
|
|
@@ -241,6 +268,8 @@ export declare const tableComponentProps: {
|
|
|
241
268
|
layer: '1';
|
|
242
269
|
} | {
|
|
243
270
|
[key: string]: any;
|
|
271
|
+
}[] | {
|
|
272
|
+
[key: string]: any;
|
|
244
273
|
}[];
|
|
245
274
|
};
|
|
246
275
|
borderColor: {
|
|
@@ -259,6 +288,8 @@ export declare const tableComponentProps: {
|
|
|
259
288
|
layer: '1';
|
|
260
289
|
} | {
|
|
261
290
|
[key: string]: any;
|
|
291
|
+
}[] | {
|
|
292
|
+
[key: string]: any;
|
|
262
293
|
}[];
|
|
263
294
|
};
|
|
264
295
|
paginationPageSize: {
|
|
@@ -277,6 +308,68 @@ export declare const tableComponentProps: {
|
|
|
277
308
|
layer: '1';
|
|
278
309
|
} | {
|
|
279
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;
|
|
280
373
|
}[];
|
|
281
374
|
};
|
|
282
375
|
graphicConfig: {
|
|
@@ -295,6 +388,8 @@ export declare const tableComponentProps: {
|
|
|
295
388
|
layer: '1';
|
|
296
389
|
} | {
|
|
297
390
|
[key: string]: any;
|
|
391
|
+
}[] | {
|
|
392
|
+
[key: string]: any;
|
|
298
393
|
}[];
|
|
299
394
|
};
|
|
300
395
|
id: {
|
|
@@ -313,6 +408,8 @@ export declare const tableComponentProps: {
|
|
|
313
408
|
layer: '1';
|
|
314
409
|
} | {
|
|
315
410
|
[key: string]: any;
|
|
411
|
+
}[] | {
|
|
412
|
+
[key: string]: any;
|
|
316
413
|
}[];
|
|
317
414
|
};
|
|
318
415
|
name: {
|
|
@@ -331,6 +428,8 @@ export declare const tableComponentProps: {
|
|
|
331
428
|
layer: '1';
|
|
332
429
|
} | {
|
|
333
430
|
[key: string]: any;
|
|
431
|
+
}[] | {
|
|
432
|
+
[key: string]: any;
|
|
334
433
|
}[];
|
|
335
434
|
};
|
|
336
435
|
keyName: {
|
|
@@ -349,6 +448,8 @@ export declare const tableComponentProps: {
|
|
|
349
448
|
layer: '1';
|
|
350
449
|
} | {
|
|
351
450
|
[key: string]: any;
|
|
451
|
+
}[] | {
|
|
452
|
+
[key: string]: any;
|
|
352
453
|
}[];
|
|
353
454
|
};
|
|
354
455
|
type: {
|
|
@@ -367,6 +468,8 @@ export declare const tableComponentProps: {
|
|
|
367
468
|
layer: '1';
|
|
368
469
|
} | {
|
|
369
470
|
[key: string]: any;
|
|
471
|
+
}[] | {
|
|
472
|
+
[key: string]: any;
|
|
370
473
|
}[];
|
|
371
474
|
};
|
|
372
475
|
width: {
|
|
@@ -385,6 +488,8 @@ export declare const tableComponentProps: {
|
|
|
385
488
|
layer: '1';
|
|
386
489
|
} | {
|
|
387
490
|
[key: string]: any;
|
|
491
|
+
}[] | {
|
|
492
|
+
[key: string]: any;
|
|
388
493
|
}[];
|
|
389
494
|
};
|
|
390
495
|
height: {
|
|
@@ -403,6 +508,8 @@ export declare const tableComponentProps: {
|
|
|
403
508
|
layer: '1';
|
|
404
509
|
} | {
|
|
405
510
|
[key: string]: any;
|
|
511
|
+
}[] | {
|
|
512
|
+
[key: string]: any;
|
|
406
513
|
}[];
|
|
407
514
|
};
|
|
408
515
|
position: {
|
|
@@ -421,6 +528,8 @@ export declare const tableComponentProps: {
|
|
|
421
528
|
layer: '1';
|
|
422
529
|
} | {
|
|
423
530
|
[key: string]: any;
|
|
531
|
+
}[] | {
|
|
532
|
+
[key: string]: any;
|
|
424
533
|
}[];
|
|
425
534
|
};
|
|
426
535
|
top: {
|
|
@@ -439,6 +548,8 @@ export declare const tableComponentProps: {
|
|
|
439
548
|
layer: '1';
|
|
440
549
|
} | {
|
|
441
550
|
[key: string]: any;
|
|
551
|
+
}[] | {
|
|
552
|
+
[key: string]: any;
|
|
442
553
|
}[];
|
|
443
554
|
};
|
|
444
555
|
left: {
|
|
@@ -457,6 +568,8 @@ export declare const tableComponentProps: {
|
|
|
457
568
|
layer: '1';
|
|
458
569
|
} | {
|
|
459
570
|
[key: string]: any;
|
|
571
|
+
}[] | {
|
|
572
|
+
[key: string]: any;
|
|
460
573
|
}[];
|
|
461
574
|
};
|
|
462
575
|
zIndex: {
|
|
@@ -475,6 +588,8 @@ export declare const tableComponentProps: {
|
|
|
475
588
|
layer: '1';
|
|
476
589
|
} | {
|
|
477
590
|
[key: string]: any;
|
|
591
|
+
}[] | {
|
|
592
|
+
[key: string]: any;
|
|
478
593
|
}[];
|
|
479
594
|
};
|
|
480
595
|
rotate: {
|
|
@@ -493,6 +608,8 @@ export declare const tableComponentProps: {
|
|
|
493
608
|
layer: '1';
|
|
494
609
|
} | {
|
|
495
610
|
[key: string]: any;
|
|
611
|
+
}[] | {
|
|
612
|
+
[key: string]: any;
|
|
496
613
|
}[];
|
|
497
614
|
};
|
|
498
615
|
isShow: {
|
|
@@ -511,6 +628,8 @@ export declare const tableComponentProps: {
|
|
|
511
628
|
layer: '1';
|
|
512
629
|
} | {
|
|
513
630
|
[key: string]: any;
|
|
631
|
+
}[] | {
|
|
632
|
+
[key: string]: any;
|
|
514
633
|
}[];
|
|
515
634
|
};
|
|
516
635
|
isRender: {
|
|
@@ -529,6 +648,8 @@ export declare const tableComponentProps: {
|
|
|
529
648
|
layer: '1';
|
|
530
649
|
} | {
|
|
531
650
|
[key: string]: any;
|
|
651
|
+
}[] | {
|
|
652
|
+
[key: string]: any;
|
|
532
653
|
}[];
|
|
533
654
|
};
|
|
534
655
|
events: {
|
|
@@ -547,6 +668,8 @@ export declare const tableComponentProps: {
|
|
|
547
668
|
layer: '1';
|
|
548
669
|
} | {
|
|
549
670
|
[key: string]: any;
|
|
671
|
+
}[] | {
|
|
672
|
+
[key: string]: any;
|
|
550
673
|
}[];
|
|
551
674
|
};
|
|
552
675
|
requestUrl: {
|
|
@@ -565,6 +688,8 @@ export declare const tableComponentProps: {
|
|
|
565
688
|
layer: '1';
|
|
566
689
|
} | {
|
|
567
690
|
[key: string]: any;
|
|
691
|
+
}[] | {
|
|
692
|
+
[key: string]: any;
|
|
568
693
|
}[];
|
|
569
694
|
};
|
|
570
695
|
requestMethod: {
|
|
@@ -583,6 +708,8 @@ export declare const tableComponentProps: {
|
|
|
583
708
|
layer: '1';
|
|
584
709
|
} | {
|
|
585
710
|
[key: string]: any;
|
|
711
|
+
}[] | {
|
|
712
|
+
[key: string]: any;
|
|
586
713
|
}[];
|
|
587
714
|
};
|
|
588
715
|
requestHeaders: {
|
|
@@ -601,6 +728,8 @@ export declare const tableComponentProps: {
|
|
|
601
728
|
layer: '1';
|
|
602
729
|
} | {
|
|
603
730
|
[key: string]: any;
|
|
731
|
+
}[] | {
|
|
732
|
+
[key: string]: any;
|
|
604
733
|
}[];
|
|
605
734
|
};
|
|
606
735
|
isOpenRequestTimer: {
|
|
@@ -619,6 +748,8 @@ export declare const tableComponentProps: {
|
|
|
619
748
|
layer: '1';
|
|
620
749
|
} | {
|
|
621
750
|
[key: string]: any;
|
|
751
|
+
}[] | {
|
|
752
|
+
[key: string]: any;
|
|
622
753
|
}[];
|
|
623
754
|
};
|
|
624
755
|
requestInterval: {
|
|
@@ -637,6 +768,8 @@ export declare const tableComponentProps: {
|
|
|
637
768
|
layer: '1';
|
|
638
769
|
} | {
|
|
639
770
|
[key: string]: any;
|
|
771
|
+
}[] | {
|
|
772
|
+
[key: string]: any;
|
|
640
773
|
}[];
|
|
641
774
|
};
|
|
642
775
|
requestParams: {
|
|
@@ -655,6 +788,8 @@ export declare const tableComponentProps: {
|
|
|
655
788
|
layer: '1';
|
|
656
789
|
} | {
|
|
657
790
|
[key: string]: any;
|
|
791
|
+
}[] | {
|
|
792
|
+
[key: string]: any;
|
|
658
793
|
}[];
|
|
659
794
|
};
|
|
660
795
|
requestSort: {
|
|
@@ -673,6 +808,8 @@ export declare const tableComponentProps: {
|
|
|
673
808
|
layer: '1';
|
|
674
809
|
} | {
|
|
675
810
|
[key: string]: any;
|
|
811
|
+
}[] | {
|
|
812
|
+
[key: string]: any;
|
|
676
813
|
}[];
|
|
677
814
|
};
|
|
678
815
|
dataType: {
|
|
@@ -691,6 +828,8 @@ export declare const tableComponentProps: {
|
|
|
691
828
|
layer: '1';
|
|
692
829
|
} | {
|
|
693
830
|
[key: string]: any;
|
|
831
|
+
}[] | {
|
|
832
|
+
[key: string]: any;
|
|
694
833
|
}[];
|
|
695
834
|
};
|
|
696
835
|
};
|