@ecan-bi/datav 1.0.49 → 1.0.52
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 +305 -234
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +304 -233
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +63 -54
- package/package.json +1 -1
- package/types/_utils/hooks/useValueFormatter.d.ts +1 -1
- package/types/_utils/hooks/useVariablesInText.d.ts +1 -1
- package/types/container/border/Border.vue.d.ts +0 -1
- package/types/container/border/index.d.ts +0 -1
- package/types/container/border/props.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/button/Button.vue.d.ts +36 -0
- package/types/control/button/index.d.ts +36 -0
- package/types/control/button/props.d.ts +20 -0
- package/types/control/index.d.ts +0 -1
- package/types/graph/bar/Bar.vue.d.ts +194 -129
- package/types/graph/bar/index.d.ts +65 -0
- package/types/graph/bar/props.d.ts +30 -0
- package/types/table/table/Table.vue.d.ts +351 -0
- package/types/table/table/index.d.ts +351 -0
- package/types/table/table/props.d.ts +181 -0
|
@@ -18,6 +18,13 @@ 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
|
+
}[];
|
|
26
|
+
fontSize: string;
|
|
27
|
+
fontWeight: number;
|
|
21
28
|
graphicConfig: {
|
|
22
29
|
[key: string]: any;
|
|
23
30
|
chartType: 'table';
|
|
@@ -43,6 +50,8 @@ export declare const tableComponentProps: {
|
|
|
43
50
|
layer: '1';
|
|
44
51
|
} | {
|
|
45
52
|
[key: string]: any;
|
|
53
|
+
}[] | {
|
|
54
|
+
[key: string]: any;
|
|
46
55
|
}[];
|
|
47
56
|
};
|
|
48
57
|
data: {
|
|
@@ -61,6 +70,8 @@ export declare const tableComponentProps: {
|
|
|
61
70
|
layer: '1';
|
|
62
71
|
} | {
|
|
63
72
|
[key: string]: any;
|
|
73
|
+
}[] | {
|
|
74
|
+
[key: string]: any;
|
|
64
75
|
}[];
|
|
65
76
|
};
|
|
66
77
|
bordered: {
|
|
@@ -79,6 +90,8 @@ export declare const tableComponentProps: {
|
|
|
79
90
|
layer: '1';
|
|
80
91
|
} | {
|
|
81
92
|
[key: string]: any;
|
|
93
|
+
}[] | {
|
|
94
|
+
[key: string]: any;
|
|
82
95
|
}[];
|
|
83
96
|
};
|
|
84
97
|
size: {
|
|
@@ -97,6 +110,8 @@ export declare const tableComponentProps: {
|
|
|
97
110
|
layer: '1';
|
|
98
111
|
} | {
|
|
99
112
|
[key: string]: any;
|
|
113
|
+
}[] | {
|
|
114
|
+
[key: string]: any;
|
|
100
115
|
}[];
|
|
101
116
|
};
|
|
102
117
|
isUseSeq: {
|
|
@@ -115,6 +130,8 @@ export declare const tableComponentProps: {
|
|
|
115
130
|
layer: '1';
|
|
116
131
|
} | {
|
|
117
132
|
[key: string]: any;
|
|
133
|
+
}[] | {
|
|
134
|
+
[key: string]: any;
|
|
118
135
|
}[];
|
|
119
136
|
};
|
|
120
137
|
columnsFixedNum: {
|
|
@@ -133,6 +150,8 @@ export declare const tableComponentProps: {
|
|
|
133
150
|
layer: '1';
|
|
134
151
|
} | {
|
|
135
152
|
[key: string]: any;
|
|
153
|
+
}[] | {
|
|
154
|
+
[key: string]: any;
|
|
136
155
|
}[];
|
|
137
156
|
};
|
|
138
157
|
scrollX: {
|
|
@@ -151,6 +170,8 @@ export declare const tableComponentProps: {
|
|
|
151
170
|
layer: '1';
|
|
152
171
|
} | {
|
|
153
172
|
[key: string]: any;
|
|
173
|
+
}[] | {
|
|
174
|
+
[key: string]: any;
|
|
154
175
|
}[];
|
|
155
176
|
};
|
|
156
177
|
paginationShow: {
|
|
@@ -169,6 +190,8 @@ export declare const tableComponentProps: {
|
|
|
169
190
|
layer: '1';
|
|
170
191
|
} | {
|
|
171
192
|
[key: string]: any;
|
|
193
|
+
}[] | {
|
|
194
|
+
[key: string]: any;
|
|
172
195
|
}[];
|
|
173
196
|
};
|
|
174
197
|
paginationPosition: {
|
|
@@ -187,6 +210,8 @@ export declare const tableComponentProps: {
|
|
|
187
210
|
layer: '1';
|
|
188
211
|
} | {
|
|
189
212
|
[key: string]: any;
|
|
213
|
+
}[] | {
|
|
214
|
+
[key: string]: any;
|
|
190
215
|
}[];
|
|
191
216
|
};
|
|
192
217
|
simple: {
|
|
@@ -205,6 +230,8 @@ export declare const tableComponentProps: {
|
|
|
205
230
|
layer: '1';
|
|
206
231
|
} | {
|
|
207
232
|
[key: string]: any;
|
|
233
|
+
}[] | {
|
|
234
|
+
[key: string]: any;
|
|
208
235
|
}[];
|
|
209
236
|
};
|
|
210
237
|
headerCellBackgroundColor: {
|
|
@@ -223,6 +250,8 @@ export declare const tableComponentProps: {
|
|
|
223
250
|
layer: '1';
|
|
224
251
|
} | {
|
|
225
252
|
[key: string]: any;
|
|
253
|
+
}[] | {
|
|
254
|
+
[key: string]: any;
|
|
226
255
|
}[];
|
|
227
256
|
};
|
|
228
257
|
cellBackgroundColor: {
|
|
@@ -241,6 +270,8 @@ export declare const tableComponentProps: {
|
|
|
241
270
|
layer: '1';
|
|
242
271
|
} | {
|
|
243
272
|
[key: string]: any;
|
|
273
|
+
}[] | {
|
|
274
|
+
[key: string]: any;
|
|
244
275
|
}[];
|
|
245
276
|
};
|
|
246
277
|
borderColor: {
|
|
@@ -259,6 +290,8 @@ export declare const tableComponentProps: {
|
|
|
259
290
|
layer: '1';
|
|
260
291
|
} | {
|
|
261
292
|
[key: string]: any;
|
|
293
|
+
}[] | {
|
|
294
|
+
[key: string]: any;
|
|
262
295
|
}[];
|
|
263
296
|
};
|
|
264
297
|
paginationPageSize: {
|
|
@@ -277,6 +310,108 @@ export declare const tableComponentProps: {
|
|
|
277
310
|
layer: '1';
|
|
278
311
|
} | {
|
|
279
312
|
[key: string]: any;
|
|
313
|
+
}[] | {
|
|
314
|
+
[key: string]: any;
|
|
315
|
+
}[];
|
|
316
|
+
};
|
|
317
|
+
isUseAction: {
|
|
318
|
+
type?: undefined;
|
|
319
|
+
default?: undefined;
|
|
320
|
+
} | {
|
|
321
|
+
type: any;
|
|
322
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
323
|
+
[key: string]: any;
|
|
324
|
+
} | import('../../_utils/props').RequestParams | {
|
|
325
|
+
[key: string]: any;
|
|
326
|
+
}[] | {
|
|
327
|
+
[key: string]: any;
|
|
328
|
+
chartType: 'table';
|
|
329
|
+
plugin: '1';
|
|
330
|
+
layer: '1';
|
|
331
|
+
} | {
|
|
332
|
+
[key: string]: any;
|
|
333
|
+
}[] | {
|
|
334
|
+
[key: string]: any;
|
|
335
|
+
}[];
|
|
336
|
+
};
|
|
337
|
+
actionColumnWidth: {
|
|
338
|
+
type?: undefined;
|
|
339
|
+
default?: undefined;
|
|
340
|
+
} | {
|
|
341
|
+
type: any;
|
|
342
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
343
|
+
[key: string]: any;
|
|
344
|
+
} | import('../../_utils/props').RequestParams | {
|
|
345
|
+
[key: string]: any;
|
|
346
|
+
}[] | {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
chartType: 'table';
|
|
349
|
+
plugin: '1';
|
|
350
|
+
layer: '1';
|
|
351
|
+
} | {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
}[] | {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
}[];
|
|
356
|
+
};
|
|
357
|
+
actionList: {
|
|
358
|
+
type?: undefined;
|
|
359
|
+
default?: undefined;
|
|
360
|
+
} | {
|
|
361
|
+
type: any;
|
|
362
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
363
|
+
[key: string]: any;
|
|
364
|
+
} | import('../../_utils/props').RequestParams | {
|
|
365
|
+
[key: string]: any;
|
|
366
|
+
}[] | {
|
|
367
|
+
[key: string]: any;
|
|
368
|
+
chartType: 'table';
|
|
369
|
+
plugin: '1';
|
|
370
|
+
layer: '1';
|
|
371
|
+
} | {
|
|
372
|
+
[key: string]: any;
|
|
373
|
+
}[] | {
|
|
374
|
+
[key: string]: any;
|
|
375
|
+
}[];
|
|
376
|
+
};
|
|
377
|
+
fontSize: {
|
|
378
|
+
type?: undefined;
|
|
379
|
+
default?: undefined;
|
|
380
|
+
} | {
|
|
381
|
+
type: any;
|
|
382
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
383
|
+
[key: string]: any;
|
|
384
|
+
} | import('../../_utils/props').RequestParams | {
|
|
385
|
+
[key: string]: any;
|
|
386
|
+
}[] | {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
chartType: 'table';
|
|
389
|
+
plugin: '1';
|
|
390
|
+
layer: '1';
|
|
391
|
+
} | {
|
|
392
|
+
[key: string]: any;
|
|
393
|
+
}[] | {
|
|
394
|
+
[key: string]: any;
|
|
395
|
+
}[];
|
|
396
|
+
};
|
|
397
|
+
fontWeight: {
|
|
398
|
+
type?: undefined;
|
|
399
|
+
default?: undefined;
|
|
400
|
+
} | {
|
|
401
|
+
type: any;
|
|
402
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
} | import('../../_utils/props').RequestParams | {
|
|
405
|
+
[key: string]: any;
|
|
406
|
+
}[] | {
|
|
407
|
+
[key: string]: any;
|
|
408
|
+
chartType: 'table';
|
|
409
|
+
plugin: '1';
|
|
410
|
+
layer: '1';
|
|
411
|
+
} | {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
}[] | {
|
|
414
|
+
[key: string]: any;
|
|
280
415
|
}[];
|
|
281
416
|
};
|
|
282
417
|
graphicConfig: {
|
|
@@ -295,6 +430,8 @@ export declare const tableComponentProps: {
|
|
|
295
430
|
layer: '1';
|
|
296
431
|
} | {
|
|
297
432
|
[key: string]: any;
|
|
433
|
+
}[] | {
|
|
434
|
+
[key: string]: any;
|
|
298
435
|
}[];
|
|
299
436
|
};
|
|
300
437
|
id: {
|
|
@@ -313,6 +450,8 @@ export declare const tableComponentProps: {
|
|
|
313
450
|
layer: '1';
|
|
314
451
|
} | {
|
|
315
452
|
[key: string]: any;
|
|
453
|
+
}[] | {
|
|
454
|
+
[key: string]: any;
|
|
316
455
|
}[];
|
|
317
456
|
};
|
|
318
457
|
name: {
|
|
@@ -331,6 +470,8 @@ export declare const tableComponentProps: {
|
|
|
331
470
|
layer: '1';
|
|
332
471
|
} | {
|
|
333
472
|
[key: string]: any;
|
|
473
|
+
}[] | {
|
|
474
|
+
[key: string]: any;
|
|
334
475
|
}[];
|
|
335
476
|
};
|
|
336
477
|
keyName: {
|
|
@@ -349,6 +490,8 @@ export declare const tableComponentProps: {
|
|
|
349
490
|
layer: '1';
|
|
350
491
|
} | {
|
|
351
492
|
[key: string]: any;
|
|
493
|
+
}[] | {
|
|
494
|
+
[key: string]: any;
|
|
352
495
|
}[];
|
|
353
496
|
};
|
|
354
497
|
type: {
|
|
@@ -367,6 +510,8 @@ export declare const tableComponentProps: {
|
|
|
367
510
|
layer: '1';
|
|
368
511
|
} | {
|
|
369
512
|
[key: string]: any;
|
|
513
|
+
}[] | {
|
|
514
|
+
[key: string]: any;
|
|
370
515
|
}[];
|
|
371
516
|
};
|
|
372
517
|
width: {
|
|
@@ -385,6 +530,8 @@ export declare const tableComponentProps: {
|
|
|
385
530
|
layer: '1';
|
|
386
531
|
} | {
|
|
387
532
|
[key: string]: any;
|
|
533
|
+
}[] | {
|
|
534
|
+
[key: string]: any;
|
|
388
535
|
}[];
|
|
389
536
|
};
|
|
390
537
|
height: {
|
|
@@ -403,6 +550,8 @@ export declare const tableComponentProps: {
|
|
|
403
550
|
layer: '1';
|
|
404
551
|
} | {
|
|
405
552
|
[key: string]: any;
|
|
553
|
+
}[] | {
|
|
554
|
+
[key: string]: any;
|
|
406
555
|
}[];
|
|
407
556
|
};
|
|
408
557
|
position: {
|
|
@@ -421,6 +570,8 @@ export declare const tableComponentProps: {
|
|
|
421
570
|
layer: '1';
|
|
422
571
|
} | {
|
|
423
572
|
[key: string]: any;
|
|
573
|
+
}[] | {
|
|
574
|
+
[key: string]: any;
|
|
424
575
|
}[];
|
|
425
576
|
};
|
|
426
577
|
top: {
|
|
@@ -439,6 +590,8 @@ export declare const tableComponentProps: {
|
|
|
439
590
|
layer: '1';
|
|
440
591
|
} | {
|
|
441
592
|
[key: string]: any;
|
|
593
|
+
}[] | {
|
|
594
|
+
[key: string]: any;
|
|
442
595
|
}[];
|
|
443
596
|
};
|
|
444
597
|
left: {
|
|
@@ -457,6 +610,8 @@ export declare const tableComponentProps: {
|
|
|
457
610
|
layer: '1';
|
|
458
611
|
} | {
|
|
459
612
|
[key: string]: any;
|
|
613
|
+
}[] | {
|
|
614
|
+
[key: string]: any;
|
|
460
615
|
}[];
|
|
461
616
|
};
|
|
462
617
|
zIndex: {
|
|
@@ -475,6 +630,8 @@ export declare const tableComponentProps: {
|
|
|
475
630
|
layer: '1';
|
|
476
631
|
} | {
|
|
477
632
|
[key: string]: any;
|
|
633
|
+
}[] | {
|
|
634
|
+
[key: string]: any;
|
|
478
635
|
}[];
|
|
479
636
|
};
|
|
480
637
|
rotate: {
|
|
@@ -493,6 +650,8 @@ export declare const tableComponentProps: {
|
|
|
493
650
|
layer: '1';
|
|
494
651
|
} | {
|
|
495
652
|
[key: string]: any;
|
|
653
|
+
}[] | {
|
|
654
|
+
[key: string]: any;
|
|
496
655
|
}[];
|
|
497
656
|
};
|
|
498
657
|
isShow: {
|
|
@@ -511,6 +670,8 @@ export declare const tableComponentProps: {
|
|
|
511
670
|
layer: '1';
|
|
512
671
|
} | {
|
|
513
672
|
[key: string]: any;
|
|
673
|
+
}[] | {
|
|
674
|
+
[key: string]: any;
|
|
514
675
|
}[];
|
|
515
676
|
};
|
|
516
677
|
isRender: {
|
|
@@ -529,6 +690,8 @@ export declare const tableComponentProps: {
|
|
|
529
690
|
layer: '1';
|
|
530
691
|
} | {
|
|
531
692
|
[key: string]: any;
|
|
693
|
+
}[] | {
|
|
694
|
+
[key: string]: any;
|
|
532
695
|
}[];
|
|
533
696
|
};
|
|
534
697
|
events: {
|
|
@@ -547,6 +710,8 @@ export declare const tableComponentProps: {
|
|
|
547
710
|
layer: '1';
|
|
548
711
|
} | {
|
|
549
712
|
[key: string]: any;
|
|
713
|
+
}[] | {
|
|
714
|
+
[key: string]: any;
|
|
550
715
|
}[];
|
|
551
716
|
};
|
|
552
717
|
requestUrl: {
|
|
@@ -565,6 +730,8 @@ export declare const tableComponentProps: {
|
|
|
565
730
|
layer: '1';
|
|
566
731
|
} | {
|
|
567
732
|
[key: string]: any;
|
|
733
|
+
}[] | {
|
|
734
|
+
[key: string]: any;
|
|
568
735
|
}[];
|
|
569
736
|
};
|
|
570
737
|
requestMethod: {
|
|
@@ -583,6 +750,8 @@ export declare const tableComponentProps: {
|
|
|
583
750
|
layer: '1';
|
|
584
751
|
} | {
|
|
585
752
|
[key: string]: any;
|
|
753
|
+
}[] | {
|
|
754
|
+
[key: string]: any;
|
|
586
755
|
}[];
|
|
587
756
|
};
|
|
588
757
|
requestHeaders: {
|
|
@@ -601,6 +770,8 @@ export declare const tableComponentProps: {
|
|
|
601
770
|
layer: '1';
|
|
602
771
|
} | {
|
|
603
772
|
[key: string]: any;
|
|
773
|
+
}[] | {
|
|
774
|
+
[key: string]: any;
|
|
604
775
|
}[];
|
|
605
776
|
};
|
|
606
777
|
isOpenRequestTimer: {
|
|
@@ -619,6 +790,8 @@ export declare const tableComponentProps: {
|
|
|
619
790
|
layer: '1';
|
|
620
791
|
} | {
|
|
621
792
|
[key: string]: any;
|
|
793
|
+
}[] | {
|
|
794
|
+
[key: string]: any;
|
|
622
795
|
}[];
|
|
623
796
|
};
|
|
624
797
|
requestInterval: {
|
|
@@ -637,6 +810,8 @@ export declare const tableComponentProps: {
|
|
|
637
810
|
layer: '1';
|
|
638
811
|
} | {
|
|
639
812
|
[key: string]: any;
|
|
813
|
+
}[] | {
|
|
814
|
+
[key: string]: any;
|
|
640
815
|
}[];
|
|
641
816
|
};
|
|
642
817
|
requestParams: {
|
|
@@ -655,6 +830,8 @@ export declare const tableComponentProps: {
|
|
|
655
830
|
layer: '1';
|
|
656
831
|
} | {
|
|
657
832
|
[key: string]: any;
|
|
833
|
+
}[] | {
|
|
834
|
+
[key: string]: any;
|
|
658
835
|
}[];
|
|
659
836
|
};
|
|
660
837
|
requestSort: {
|
|
@@ -673,6 +850,8 @@ export declare const tableComponentProps: {
|
|
|
673
850
|
layer: '1';
|
|
674
851
|
} | {
|
|
675
852
|
[key: string]: any;
|
|
853
|
+
}[] | {
|
|
854
|
+
[key: string]: any;
|
|
676
855
|
}[];
|
|
677
856
|
};
|
|
678
857
|
dataType: {
|
|
@@ -691,6 +870,8 @@ export declare const tableComponentProps: {
|
|
|
691
870
|
layer: '1';
|
|
692
871
|
} | {
|
|
693
872
|
[key: string]: any;
|
|
873
|
+
}[] | {
|
|
874
|
+
[key: string]: any;
|
|
694
875
|
}[];
|
|
695
876
|
};
|
|
696
877
|
};
|