@ecan-bi/datav 1.2.21 → 1.2.23
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 +2336 -2232
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +24 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +35 -0
- package/types/graph/bar/index.d.ts +35 -0
- package/types/graph/bar/props.d.ts +20 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +51 -0
- package/types/graph/combo-graph/index.d.ts +51 -0
- package/types/graph/combo-graph/props.d.ts +30 -0
- package/types/graph/line/Line.vue.d.ts +52 -0
- package/types/graph/line/index.d.ts +52 -0
- package/types/graph/line/props.d.ts +36 -0
- package/types/graph/scatter/Scatter.vue.d.ts +18 -0
- package/types/graph/scatter/index.d.ts +18 -0
- package/types/graph/scatter/props.d.ts +10 -0
- package/types/table/table/Table.vue.d.ts +18 -0
- package/types/table/table/index.d.ts +18 -0
- package/types/table/table/props.d.ts +10 -0
- package/types/text/proportion/Proportion.vue.d.ts +37 -4
- package/types/text/proportion/index.d.ts +37 -4
- package/types/text/proportion/props.d.ts +23 -3
|
@@ -127,6 +127,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
127
127
|
type?: import("vue").PropType<string>;
|
|
128
128
|
default?: string;
|
|
129
129
|
};
|
|
130
|
+
xAxisLineShow: {
|
|
131
|
+
type?: import("vue").PropType<boolean>;
|
|
132
|
+
default?: boolean;
|
|
133
|
+
};
|
|
130
134
|
xAxisLineStyleColor: {
|
|
131
135
|
type?: import("vue").PropType<string>;
|
|
132
136
|
default?: string;
|
|
@@ -285,6 +289,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
285
289
|
type?: import("vue").PropType<number>;
|
|
286
290
|
default?: number;
|
|
287
291
|
};
|
|
292
|
+
areaGradientShow: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
296
|
+
areaGradientColor: {
|
|
297
|
+
type?: import("vue").PropType<string>;
|
|
298
|
+
default?: string;
|
|
299
|
+
};
|
|
300
|
+
isBoundaryGap: {
|
|
301
|
+
type?: import("vue").PropType<boolean>;
|
|
302
|
+
default?: boolean;
|
|
303
|
+
};
|
|
304
|
+
yAxisLabelShow: {
|
|
305
|
+
type?: import("vue").PropType<boolean>;
|
|
306
|
+
default?: boolean;
|
|
307
|
+
};
|
|
308
|
+
yAxisSplitLineType: {
|
|
309
|
+
type?: import("vue").PropType<string>;
|
|
310
|
+
default?: string;
|
|
311
|
+
};
|
|
288
312
|
position: {
|
|
289
313
|
type?: import("vue").PropType<string>;
|
|
290
314
|
default?: string;
|
|
@@ -393,6 +417,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
393
417
|
};
|
|
394
418
|
xAxis: {
|
|
395
419
|
type: string;
|
|
420
|
+
boundaryGap: boolean;
|
|
396
421
|
data: {}[];
|
|
397
422
|
minInterval: number;
|
|
398
423
|
splitLine: {
|
|
@@ -414,6 +439,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
414
439
|
formatter(value: string): string;
|
|
415
440
|
};
|
|
416
441
|
axisLine: {
|
|
442
|
+
show: boolean;
|
|
417
443
|
lineStyle: {
|
|
418
444
|
color: string;
|
|
419
445
|
};
|
|
@@ -429,12 +455,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
429
455
|
show: boolean;
|
|
430
456
|
lineStyle: {
|
|
431
457
|
color: string;
|
|
458
|
+
type: string;
|
|
432
459
|
};
|
|
433
460
|
};
|
|
434
461
|
splitArea: {
|
|
435
462
|
show: boolean;
|
|
436
463
|
};
|
|
437
464
|
axisLabel: {
|
|
465
|
+
show: boolean;
|
|
438
466
|
fontSize: number;
|
|
439
467
|
color: string;
|
|
440
468
|
formatter(value: string): string;
|
|
@@ -597,6 +625,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
597
625
|
type?: import("vue").PropType<string>;
|
|
598
626
|
default?: string;
|
|
599
627
|
};
|
|
628
|
+
xAxisLineShow: {
|
|
629
|
+
type?: import("vue").PropType<boolean>;
|
|
630
|
+
default?: boolean;
|
|
631
|
+
};
|
|
600
632
|
xAxisLineStyleColor: {
|
|
601
633
|
type?: import("vue").PropType<string>;
|
|
602
634
|
default?: string;
|
|
@@ -755,6 +787,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
755
787
|
type?: import("vue").PropType<number>;
|
|
756
788
|
default?: number;
|
|
757
789
|
};
|
|
790
|
+
areaGradientShow: {
|
|
791
|
+
type?: import("vue").PropType<boolean>;
|
|
792
|
+
default?: boolean;
|
|
793
|
+
};
|
|
794
|
+
areaGradientColor: {
|
|
795
|
+
type?: import("vue").PropType<string>;
|
|
796
|
+
default?: string;
|
|
797
|
+
};
|
|
798
|
+
isBoundaryGap: {
|
|
799
|
+
type?: import("vue").PropType<boolean>;
|
|
800
|
+
default?: boolean;
|
|
801
|
+
};
|
|
802
|
+
yAxisLabelShow: {
|
|
803
|
+
type?: import("vue").PropType<boolean>;
|
|
804
|
+
default?: boolean;
|
|
805
|
+
};
|
|
806
|
+
yAxisSplitLineType: {
|
|
807
|
+
type?: import("vue").PropType<string>;
|
|
808
|
+
default?: string;
|
|
809
|
+
};
|
|
758
810
|
position: {
|
|
759
811
|
type?: import("vue").PropType<string>;
|
|
760
812
|
default?: string;
|
|
@@ -127,6 +127,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
127
127
|
type?: import("vue").PropType<string>;
|
|
128
128
|
default?: string;
|
|
129
129
|
};
|
|
130
|
+
xAxisLineShow: {
|
|
131
|
+
type?: import("vue").PropType<boolean>;
|
|
132
|
+
default?: boolean;
|
|
133
|
+
};
|
|
130
134
|
xAxisLineStyleColor: {
|
|
131
135
|
type?: import("vue").PropType<string>;
|
|
132
136
|
default?: string;
|
|
@@ -285,6 +289,26 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
285
289
|
type?: import("vue").PropType<number>;
|
|
286
290
|
default?: number;
|
|
287
291
|
};
|
|
292
|
+
areaGradientShow: {
|
|
293
|
+
type?: import("vue").PropType<boolean>;
|
|
294
|
+
default?: boolean;
|
|
295
|
+
};
|
|
296
|
+
areaGradientColor: {
|
|
297
|
+
type?: import("vue").PropType<string>;
|
|
298
|
+
default?: string;
|
|
299
|
+
};
|
|
300
|
+
isBoundaryGap: {
|
|
301
|
+
type?: import("vue").PropType<boolean>;
|
|
302
|
+
default?: boolean;
|
|
303
|
+
};
|
|
304
|
+
yAxisLabelShow: {
|
|
305
|
+
type?: import("vue").PropType<boolean>;
|
|
306
|
+
default?: boolean;
|
|
307
|
+
};
|
|
308
|
+
yAxisSplitLineType: {
|
|
309
|
+
type?: import("vue").PropType<string>;
|
|
310
|
+
default?: string;
|
|
311
|
+
};
|
|
288
312
|
position: {
|
|
289
313
|
type?: import("vue").PropType<string>;
|
|
290
314
|
default?: string;
|
|
@@ -393,6 +417,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
393
417
|
};
|
|
394
418
|
xAxis: {
|
|
395
419
|
type: string;
|
|
420
|
+
boundaryGap: boolean;
|
|
396
421
|
data: {}[];
|
|
397
422
|
minInterval: number;
|
|
398
423
|
splitLine: {
|
|
@@ -414,6 +439,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
414
439
|
formatter(value: string): string;
|
|
415
440
|
};
|
|
416
441
|
axisLine: {
|
|
442
|
+
show: boolean;
|
|
417
443
|
lineStyle: {
|
|
418
444
|
color: string;
|
|
419
445
|
};
|
|
@@ -429,12 +455,14 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
429
455
|
show: boolean;
|
|
430
456
|
lineStyle: {
|
|
431
457
|
color: string;
|
|
458
|
+
type: string;
|
|
432
459
|
};
|
|
433
460
|
};
|
|
434
461
|
splitArea: {
|
|
435
462
|
show: boolean;
|
|
436
463
|
};
|
|
437
464
|
axisLabel: {
|
|
465
|
+
show: boolean;
|
|
438
466
|
fontSize: number;
|
|
439
467
|
color: string;
|
|
440
468
|
formatter(value: string): string;
|
|
@@ -597,6 +625,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
597
625
|
type?: import("vue").PropType<string>;
|
|
598
626
|
default?: string;
|
|
599
627
|
};
|
|
628
|
+
xAxisLineShow: {
|
|
629
|
+
type?: import("vue").PropType<boolean>;
|
|
630
|
+
default?: boolean;
|
|
631
|
+
};
|
|
600
632
|
xAxisLineStyleColor: {
|
|
601
633
|
type?: import("vue").PropType<string>;
|
|
602
634
|
default?: string;
|
|
@@ -755,6 +787,26 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
755
787
|
type?: import("vue").PropType<number>;
|
|
756
788
|
default?: number;
|
|
757
789
|
};
|
|
790
|
+
areaGradientShow: {
|
|
791
|
+
type?: import("vue").PropType<boolean>;
|
|
792
|
+
default?: boolean;
|
|
793
|
+
};
|
|
794
|
+
areaGradientColor: {
|
|
795
|
+
type?: import("vue").PropType<string>;
|
|
796
|
+
default?: string;
|
|
797
|
+
};
|
|
798
|
+
isBoundaryGap: {
|
|
799
|
+
type?: import("vue").PropType<boolean>;
|
|
800
|
+
default?: boolean;
|
|
801
|
+
};
|
|
802
|
+
yAxisLabelShow: {
|
|
803
|
+
type?: import("vue").PropType<boolean>;
|
|
804
|
+
default?: boolean;
|
|
805
|
+
};
|
|
806
|
+
yAxisSplitLineType: {
|
|
807
|
+
type?: import("vue").PropType<string>;
|
|
808
|
+
default?: string;
|
|
809
|
+
};
|
|
758
810
|
position: {
|
|
759
811
|
type?: import("vue").PropType<string>;
|
|
760
812
|
default?: string;
|
|
@@ -17,6 +17,7 @@ export interface LineProps extends Props {
|
|
|
17
17
|
xAxisSplitAreaShow: boolean;
|
|
18
18
|
xAxisSplitLineInterval: number;
|
|
19
19
|
xAxisLabelColor: string;
|
|
20
|
+
xAxisLineShow: boolean;
|
|
20
21
|
xAxisLineStyleColor: string;
|
|
21
22
|
xAxisSplitLineStyleColor: string;
|
|
22
23
|
xAxisTickShow: boolean;
|
|
@@ -61,6 +62,11 @@ export interface LineProps extends Props {
|
|
|
61
62
|
toolboxDownloadUrl: string;
|
|
62
63
|
toolboxInfoText: string;
|
|
63
64
|
areaStyleOpacity: number;
|
|
65
|
+
areaGradientShow: boolean;
|
|
66
|
+
areaGradientColor: string;
|
|
67
|
+
isBoundaryGap: boolean;
|
|
68
|
+
yAxisLabelShow: boolean;
|
|
69
|
+
yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
|
|
64
70
|
}
|
|
65
71
|
export declare const lineProps: {
|
|
66
72
|
id: string;
|
|
@@ -97,6 +103,7 @@ export declare const lineProps: {
|
|
|
97
103
|
xAxisSplitLineInterval: number;
|
|
98
104
|
xAxisSplitLineStyleColor: string;
|
|
99
105
|
xAxisLabelColor: string;
|
|
106
|
+
xAxisLineShow: boolean;
|
|
100
107
|
xAxisLineStyleColor: string;
|
|
101
108
|
xAxisTickShow: boolean;
|
|
102
109
|
xAxisLabelFormatter: string;
|
|
@@ -140,6 +147,11 @@ export declare const lineProps: {
|
|
|
140
147
|
toolboxDownloadUrl: string;
|
|
141
148
|
toolboxInfoText: string;
|
|
142
149
|
areaStyleOpacity: number;
|
|
150
|
+
areaGradientShow: boolean;
|
|
151
|
+
areaGradientColor: string;
|
|
152
|
+
isBoundaryGap: boolean;
|
|
153
|
+
yAxisLabelShow: boolean;
|
|
154
|
+
yAxisSplitLineType: string;
|
|
143
155
|
position: string;
|
|
144
156
|
zIndex: number;
|
|
145
157
|
isShow: boolean;
|
|
@@ -285,6 +297,10 @@ export declare const lineComponentProps: {
|
|
|
285
297
|
type?: import("vue").PropType<string>;
|
|
286
298
|
default?: string;
|
|
287
299
|
};
|
|
300
|
+
xAxisLineShow: {
|
|
301
|
+
type?: import("vue").PropType<boolean>;
|
|
302
|
+
default?: boolean;
|
|
303
|
+
};
|
|
288
304
|
xAxisLineStyleColor: {
|
|
289
305
|
type?: import("vue").PropType<string>;
|
|
290
306
|
default?: string;
|
|
@@ -443,6 +459,26 @@ export declare const lineComponentProps: {
|
|
|
443
459
|
type?: import("vue").PropType<number>;
|
|
444
460
|
default?: number;
|
|
445
461
|
};
|
|
462
|
+
areaGradientShow: {
|
|
463
|
+
type?: import("vue").PropType<boolean>;
|
|
464
|
+
default?: boolean;
|
|
465
|
+
};
|
|
466
|
+
areaGradientColor: {
|
|
467
|
+
type?: import("vue").PropType<string>;
|
|
468
|
+
default?: string;
|
|
469
|
+
};
|
|
470
|
+
isBoundaryGap: {
|
|
471
|
+
type?: import("vue").PropType<boolean>;
|
|
472
|
+
default?: boolean;
|
|
473
|
+
};
|
|
474
|
+
yAxisLabelShow: {
|
|
475
|
+
type?: import("vue").PropType<boolean>;
|
|
476
|
+
default?: boolean;
|
|
477
|
+
};
|
|
478
|
+
yAxisSplitLineType: {
|
|
479
|
+
type?: import("vue").PropType<string>;
|
|
480
|
+
default?: string;
|
|
481
|
+
};
|
|
446
482
|
position: {
|
|
447
483
|
type?: import("vue").PropType<string>;
|
|
448
484
|
default?: string;
|
|
@@ -209,6 +209,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
209
209
|
type?: import("vue").PropType<string>;
|
|
210
210
|
default?: string;
|
|
211
211
|
};
|
|
212
|
+
yAxisLabelShow: {
|
|
213
|
+
type?: import("vue").PropType<boolean>;
|
|
214
|
+
default?: boolean;
|
|
215
|
+
};
|
|
216
|
+
yAxisSplitLineType: {
|
|
217
|
+
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
218
|
+
default?: "dashed" | "dotted" | "solid";
|
|
219
|
+
};
|
|
212
220
|
id: {
|
|
213
221
|
type?: import("vue").PropType<string>;
|
|
214
222
|
default?: string;
|
|
@@ -377,12 +385,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
377
385
|
show: boolean;
|
|
378
386
|
lineStyle: {
|
|
379
387
|
color: string;
|
|
388
|
+
type: "dashed" | "dotted" | "solid";
|
|
380
389
|
};
|
|
381
390
|
};
|
|
382
391
|
splitArea: {
|
|
383
392
|
show: boolean;
|
|
384
393
|
};
|
|
385
394
|
axisLabel: {
|
|
395
|
+
show: boolean;
|
|
386
396
|
fontSize: number;
|
|
387
397
|
color: string;
|
|
388
398
|
formatter(value: string): string;
|
|
@@ -638,6 +648,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
638
648
|
type?: import("vue").PropType<string>;
|
|
639
649
|
default?: string;
|
|
640
650
|
};
|
|
651
|
+
yAxisLabelShow: {
|
|
652
|
+
type?: import("vue").PropType<boolean>;
|
|
653
|
+
default?: boolean;
|
|
654
|
+
};
|
|
655
|
+
yAxisSplitLineType: {
|
|
656
|
+
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
657
|
+
default?: "dashed" | "dotted" | "solid";
|
|
658
|
+
};
|
|
641
659
|
id: {
|
|
642
660
|
type?: import("vue").PropType<string>;
|
|
643
661
|
default?: string;
|
|
@@ -209,6 +209,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
209
209
|
type?: import("vue").PropType<string>;
|
|
210
210
|
default?: string;
|
|
211
211
|
};
|
|
212
|
+
yAxisLabelShow: {
|
|
213
|
+
type?: import("vue").PropType<boolean>;
|
|
214
|
+
default?: boolean;
|
|
215
|
+
};
|
|
216
|
+
yAxisSplitLineType: {
|
|
217
|
+
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
218
|
+
default?: "dashed" | "dotted" | "solid";
|
|
219
|
+
};
|
|
212
220
|
id: {
|
|
213
221
|
type?: import("vue").PropType<string>;
|
|
214
222
|
default?: string;
|
|
@@ -377,12 +385,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
377
385
|
show: boolean;
|
|
378
386
|
lineStyle: {
|
|
379
387
|
color: string;
|
|
388
|
+
type: "dashed" | "dotted" | "solid";
|
|
380
389
|
};
|
|
381
390
|
};
|
|
382
391
|
splitArea: {
|
|
383
392
|
show: boolean;
|
|
384
393
|
};
|
|
385
394
|
axisLabel: {
|
|
395
|
+
show: boolean;
|
|
386
396
|
fontSize: number;
|
|
387
397
|
color: string;
|
|
388
398
|
formatter(value: string): string;
|
|
@@ -638,6 +648,14 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
638
648
|
type?: import("vue").PropType<string>;
|
|
639
649
|
default?: string;
|
|
640
650
|
};
|
|
651
|
+
yAxisLabelShow: {
|
|
652
|
+
type?: import("vue").PropType<boolean>;
|
|
653
|
+
default?: boolean;
|
|
654
|
+
};
|
|
655
|
+
yAxisSplitLineType: {
|
|
656
|
+
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
657
|
+
default?: "dashed" | "dotted" | "solid";
|
|
658
|
+
};
|
|
641
659
|
id: {
|
|
642
660
|
type?: import("vue").PropType<string>;
|
|
643
661
|
default?: string;
|
|
@@ -55,6 +55,8 @@ export interface ScatterProps extends Props {
|
|
|
55
55
|
toolboxIconStyleBorderColor: string;
|
|
56
56
|
toolboxDownloadUrl: string;
|
|
57
57
|
toolboxInfoText: string;
|
|
58
|
+
yAxisLabelShow: boolean;
|
|
59
|
+
yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
|
|
58
60
|
}
|
|
59
61
|
export declare const scatterProps: ScatterProps;
|
|
60
62
|
export declare const scatterComponentProps: {
|
|
@@ -268,6 +270,14 @@ export declare const scatterComponentProps: {
|
|
|
268
270
|
type?: import("vue").PropType<string>;
|
|
269
271
|
default?: string;
|
|
270
272
|
};
|
|
273
|
+
yAxisLabelShow: {
|
|
274
|
+
type?: import("vue").PropType<boolean>;
|
|
275
|
+
default?: boolean;
|
|
276
|
+
};
|
|
277
|
+
yAxisSplitLineType: {
|
|
278
|
+
type?: import("vue").PropType<"dashed" | "dotted" | "solid">;
|
|
279
|
+
default?: "dashed" | "dotted" | "solid";
|
|
280
|
+
};
|
|
271
281
|
id: {
|
|
272
282
|
type?: import("vue").PropType<string>;
|
|
273
283
|
default?: string;
|
|
@@ -119,6 +119,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
119
|
[key: string]: any;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
headerBackgroundColor: {
|
|
123
|
+
type?: import("vue").PropType<string>;
|
|
124
|
+
default?: string;
|
|
125
|
+
};
|
|
126
|
+
stripedShow: {
|
|
127
|
+
type?: import("vue").PropType<boolean>;
|
|
128
|
+
default?: boolean;
|
|
129
|
+
};
|
|
122
130
|
id: {
|
|
123
131
|
type?: import("vue").PropType<string>;
|
|
124
132
|
default?: string;
|
|
@@ -256,6 +264,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
256
264
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
257
265
|
pageSize: import("vue").Ref<number>;
|
|
258
266
|
tableRef: import("vue").Ref<any>;
|
|
267
|
+
headerBgColor: import("vue").ComputedRef<string>;
|
|
268
|
+
rowClassName: (_record: any, index: number) => any;
|
|
259
269
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
270
|
columns: {
|
|
261
271
|
type?: import("vue").PropType<{
|
|
@@ -377,6 +387,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
377
387
|
[key: string]: any;
|
|
378
388
|
};
|
|
379
389
|
};
|
|
390
|
+
headerBackgroundColor: {
|
|
391
|
+
type?: import("vue").PropType<string>;
|
|
392
|
+
default?: string;
|
|
393
|
+
};
|
|
394
|
+
stripedShow: {
|
|
395
|
+
type?: import("vue").PropType<boolean>;
|
|
396
|
+
default?: boolean;
|
|
397
|
+
};
|
|
380
398
|
id: {
|
|
381
399
|
type?: import("vue").PropType<string>;
|
|
382
400
|
default?: string;
|
|
@@ -119,6 +119,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
119
119
|
[key: string]: any;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
headerBackgroundColor: {
|
|
123
|
+
type?: import("vue").PropType<string>;
|
|
124
|
+
default?: string;
|
|
125
|
+
};
|
|
126
|
+
stripedShow: {
|
|
127
|
+
type?: import("vue").PropType<boolean>;
|
|
128
|
+
default?: boolean;
|
|
129
|
+
};
|
|
122
130
|
id: {
|
|
123
131
|
type?: import("vue").PropType<string>;
|
|
124
132
|
default?: string;
|
|
@@ -256,6 +264,8 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
256
264
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
257
265
|
pageSize: import("vue").Ref<number>;
|
|
258
266
|
tableRef: import("vue").Ref<any>;
|
|
267
|
+
headerBgColor: import("vue").ComputedRef<string>;
|
|
268
|
+
rowClassName: (_record: any, index: number) => any;
|
|
259
269
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
270
|
columns: {
|
|
261
271
|
type?: import("vue").PropType<{
|
|
@@ -377,6 +387,14 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
377
387
|
[key: string]: any;
|
|
378
388
|
};
|
|
379
389
|
};
|
|
390
|
+
headerBackgroundColor: {
|
|
391
|
+
type?: import("vue").PropType<string>;
|
|
392
|
+
default?: string;
|
|
393
|
+
};
|
|
394
|
+
stripedShow: {
|
|
395
|
+
type?: import("vue").PropType<boolean>;
|
|
396
|
+
default?: boolean;
|
|
397
|
+
};
|
|
380
398
|
id: {
|
|
381
399
|
type?: import("vue").PropType<string>;
|
|
382
400
|
default?: string;
|
|
@@ -34,6 +34,8 @@ export interface TableProps extends Props {
|
|
|
34
34
|
graphicConfig: {
|
|
35
35
|
[key: string]: any;
|
|
36
36
|
};
|
|
37
|
+
headerBackgroundColor: string;
|
|
38
|
+
stripedShow: boolean;
|
|
37
39
|
}
|
|
38
40
|
export declare const tableProps: TableProps;
|
|
39
41
|
export declare const tableComponentProps: {
|
|
@@ -157,6 +159,14 @@ export declare const tableComponentProps: {
|
|
|
157
159
|
[key: string]: any;
|
|
158
160
|
};
|
|
159
161
|
};
|
|
162
|
+
headerBackgroundColor: {
|
|
163
|
+
type?: import("vue").PropType<string>;
|
|
164
|
+
default?: string;
|
|
165
|
+
};
|
|
166
|
+
stripedShow: {
|
|
167
|
+
type?: import("vue").PropType<boolean>;
|
|
168
|
+
default?: boolean;
|
|
169
|
+
};
|
|
160
170
|
id: {
|
|
161
171
|
type?: import("vue").PropType<string>;
|
|
162
172
|
default?: string;
|
|
@@ -12,8 +12,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
14
|
strokeType: {
|
|
15
|
-
type?: import("vue").PropType<"circle" | "dashboard">;
|
|
16
|
-
default?: "circle" | "dashboard";
|
|
15
|
+
type?: import("vue").PropType<"line" | "circle" | "dashboard">;
|
|
16
|
+
default?: "line" | "circle" | "dashboard";
|
|
17
17
|
};
|
|
18
18
|
data: {
|
|
19
19
|
type?: import("vue").PropType<{
|
|
@@ -59,6 +59,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
59
59
|
type?: import("vue").PropType<string>;
|
|
60
60
|
default?: string;
|
|
61
61
|
};
|
|
62
|
+
strokeTextShow: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
66
|
+
gradientShow: {
|
|
67
|
+
type?: import("vue").PropType<boolean>;
|
|
68
|
+
default?: boolean;
|
|
69
|
+
};
|
|
70
|
+
gradientColor: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
74
|
+
gradientOffset: {
|
|
75
|
+
type?: import("vue").PropType<number>;
|
|
76
|
+
default?: number;
|
|
77
|
+
};
|
|
62
78
|
id: {
|
|
63
79
|
type?: import("vue").PropType<string>;
|
|
64
80
|
default?: string;
|
|
@@ -158,6 +174,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
174
|
myValue: import("vue").ComputedRef<any>;
|
|
159
175
|
loading: import("vue").Ref<boolean>;
|
|
160
176
|
click: () => void;
|
|
177
|
+
customStrokeColor: import("vue").ComputedRef<any>;
|
|
161
178
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
162
179
|
strokeColor: {
|
|
163
180
|
type?: import("vue").PropType<string>;
|
|
@@ -172,8 +189,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
172
189
|
default?: string;
|
|
173
190
|
};
|
|
174
191
|
strokeType: {
|
|
175
|
-
type?: import("vue").PropType<"circle" | "dashboard">;
|
|
176
|
-
default?: "circle" | "dashboard";
|
|
192
|
+
type?: import("vue").PropType<"line" | "circle" | "dashboard">;
|
|
193
|
+
default?: "line" | "circle" | "dashboard";
|
|
177
194
|
};
|
|
178
195
|
data: {
|
|
179
196
|
type?: import("vue").PropType<{
|
|
@@ -219,6 +236,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
219
236
|
type?: import("vue").PropType<string>;
|
|
220
237
|
default?: string;
|
|
221
238
|
};
|
|
239
|
+
strokeTextShow: {
|
|
240
|
+
type?: import("vue").PropType<boolean>;
|
|
241
|
+
default?: boolean;
|
|
242
|
+
};
|
|
243
|
+
gradientShow: {
|
|
244
|
+
type?: import("vue").PropType<boolean>;
|
|
245
|
+
default?: boolean;
|
|
246
|
+
};
|
|
247
|
+
gradientColor: {
|
|
248
|
+
type?: import("vue").PropType<string>;
|
|
249
|
+
default?: string;
|
|
250
|
+
};
|
|
251
|
+
gradientOffset: {
|
|
252
|
+
type?: import("vue").PropType<number>;
|
|
253
|
+
default?: number;
|
|
254
|
+
};
|
|
222
255
|
id: {
|
|
223
256
|
type?: import("vue").PropType<string>;
|
|
224
257
|
default?: string;
|
|
@@ -12,8 +12,8 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
|
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
14
|
strokeType: {
|
|
15
|
-
type?: import("vue").PropType<"circle" | "dashboard">;
|
|
16
|
-
default?: "circle" | "dashboard";
|
|
15
|
+
type?: import("vue").PropType<"line" | "circle" | "dashboard">;
|
|
16
|
+
default?: "line" | "circle" | "dashboard";
|
|
17
17
|
};
|
|
18
18
|
data: {
|
|
19
19
|
type?: import("vue").PropType<{
|
|
@@ -59,6 +59,22 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
|
|
|
59
59
|
type?: import("vue").PropType<string>;
|
|
60
60
|
default?: string;
|
|
61
61
|
};
|
|
62
|
+
strokeTextShow: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
66
|
+
gradientShow: {
|
|
67
|
+
type?: import("vue").PropType<boolean>;
|
|
68
|
+
default?: boolean;
|
|
69
|
+
};
|
|
70
|
+
gradientColor: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
74
|
+
gradientOffset: {
|
|
75
|
+
type?: import("vue").PropType<number>;
|
|
76
|
+
default?: number;
|
|
77
|
+
};
|
|
62
78
|
id: {
|
|
63
79
|
type?: import("vue").PropType<string>;
|
|
64
80
|
default?: string;
|
|
@@ -158,6 +174,7 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
|
|
|
158
174
|
myValue: import("vue").ComputedRef<any>;
|
|
159
175
|
loading: import("vue").Ref<boolean>;
|
|
160
176
|
click: () => void;
|
|
177
|
+
customStrokeColor: import("vue").ComputedRef<any>;
|
|
161
178
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
162
179
|
strokeColor: {
|
|
163
180
|
type?: import("vue").PropType<string>;
|
|
@@ -172,8 +189,8 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
|
|
|
172
189
|
default?: string;
|
|
173
190
|
};
|
|
174
191
|
strokeType: {
|
|
175
|
-
type?: import("vue").PropType<"circle" | "dashboard">;
|
|
176
|
-
default?: "circle" | "dashboard";
|
|
192
|
+
type?: import("vue").PropType<"line" | "circle" | "dashboard">;
|
|
193
|
+
default?: "line" | "circle" | "dashboard";
|
|
177
194
|
};
|
|
178
195
|
data: {
|
|
179
196
|
type?: import("vue").PropType<{
|
|
@@ -219,6 +236,22 @@ export declare const EcanProportion: import('../../utils/withInstall').SFCWithIn
|
|
|
219
236
|
type?: import("vue").PropType<string>;
|
|
220
237
|
default?: string;
|
|
221
238
|
};
|
|
239
|
+
strokeTextShow: {
|
|
240
|
+
type?: import("vue").PropType<boolean>;
|
|
241
|
+
default?: boolean;
|
|
242
|
+
};
|
|
243
|
+
gradientShow: {
|
|
244
|
+
type?: import("vue").PropType<boolean>;
|
|
245
|
+
default?: boolean;
|
|
246
|
+
};
|
|
247
|
+
gradientColor: {
|
|
248
|
+
type?: import("vue").PropType<string>;
|
|
249
|
+
default?: string;
|
|
250
|
+
};
|
|
251
|
+
gradientOffset: {
|
|
252
|
+
type?: import("vue").PropType<number>;
|
|
253
|
+
default?: number;
|
|
254
|
+
};
|
|
222
255
|
id: {
|
|
223
256
|
type?: import("vue").PropType<string>;
|
|
224
257
|
default?: string;
|