@ecan-bi/datav 1.2.20 → 1.2.22
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 +2963 -2872
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +29 -29
- 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 +26 -0
- package/types/graph/bar/index.d.ts +26 -0
- package/types/graph/bar/props.d.ts +15 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +42 -0
- package/types/graph/combo-graph/index.d.ts +42 -0
- package/types/graph/combo-graph/props.d.ts +25 -0
- package/types/graph/line/Line.vue.d.ts +43 -0
- package/types/graph/line/index.d.ts +43 -0
- package/types/graph/line/props.d.ts +30 -0
- package/types/graph/scatter/Scatter.vue.d.ts +9 -0
- package/types/graph/scatter/index.d.ts +9 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/table/table/Table.vue.d.ts +9 -0
- package/types/table/table/index.d.ts +9 -0
- package/types/table/table/props.d.ts +5 -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
- package/types/text/text/Text.vue.d.ts +1 -0
- package/types/text/text/index.d.ts +1 -0
|
@@ -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,22 @@ 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
|
+
};
|
|
288
308
|
position: {
|
|
289
309
|
type?: import("vue").PropType<string>;
|
|
290
310
|
default?: string;
|
|
@@ -393,6 +413,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
393
413
|
};
|
|
394
414
|
xAxis: {
|
|
395
415
|
type: string;
|
|
416
|
+
boundaryGap: boolean;
|
|
396
417
|
data: {}[];
|
|
397
418
|
minInterval: number;
|
|
398
419
|
splitLine: {
|
|
@@ -414,6 +435,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
414
435
|
formatter(value: string): string;
|
|
415
436
|
};
|
|
416
437
|
axisLine: {
|
|
438
|
+
show: boolean;
|
|
417
439
|
lineStyle: {
|
|
418
440
|
color: string;
|
|
419
441
|
};
|
|
@@ -435,6 +457,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
435
457
|
show: boolean;
|
|
436
458
|
};
|
|
437
459
|
axisLabel: {
|
|
460
|
+
show: boolean;
|
|
438
461
|
fontSize: number;
|
|
439
462
|
color: string;
|
|
440
463
|
formatter(value: string): string;
|
|
@@ -597,6 +620,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
597
620
|
type?: import("vue").PropType<string>;
|
|
598
621
|
default?: string;
|
|
599
622
|
};
|
|
623
|
+
xAxisLineShow: {
|
|
624
|
+
type?: import("vue").PropType<boolean>;
|
|
625
|
+
default?: boolean;
|
|
626
|
+
};
|
|
600
627
|
xAxisLineStyleColor: {
|
|
601
628
|
type?: import("vue").PropType<string>;
|
|
602
629
|
default?: string;
|
|
@@ -755,6 +782,22 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
755
782
|
type?: import("vue").PropType<number>;
|
|
756
783
|
default?: number;
|
|
757
784
|
};
|
|
785
|
+
areaGradientShow: {
|
|
786
|
+
type?: import("vue").PropType<boolean>;
|
|
787
|
+
default?: boolean;
|
|
788
|
+
};
|
|
789
|
+
areaGradientColor: {
|
|
790
|
+
type?: import("vue").PropType<string>;
|
|
791
|
+
default?: string;
|
|
792
|
+
};
|
|
793
|
+
isBoundaryGap: {
|
|
794
|
+
type?: import("vue").PropType<boolean>;
|
|
795
|
+
default?: boolean;
|
|
796
|
+
};
|
|
797
|
+
yAxisLabelShow: {
|
|
798
|
+
type?: import("vue").PropType<boolean>;
|
|
799
|
+
default?: boolean;
|
|
800
|
+
};
|
|
758
801
|
position: {
|
|
759
802
|
type?: import("vue").PropType<string>;
|
|
760
803
|
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,10 @@ 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;
|
|
64
69
|
}
|
|
65
70
|
export declare const lineProps: {
|
|
66
71
|
id: string;
|
|
@@ -97,6 +102,7 @@ export declare const lineProps: {
|
|
|
97
102
|
xAxisSplitLineInterval: number;
|
|
98
103
|
xAxisSplitLineStyleColor: string;
|
|
99
104
|
xAxisLabelColor: string;
|
|
105
|
+
xAxisLineShow: boolean;
|
|
100
106
|
xAxisLineStyleColor: string;
|
|
101
107
|
xAxisTickShow: boolean;
|
|
102
108
|
xAxisLabelFormatter: string;
|
|
@@ -140,6 +146,10 @@ export declare const lineProps: {
|
|
|
140
146
|
toolboxDownloadUrl: string;
|
|
141
147
|
toolboxInfoText: string;
|
|
142
148
|
areaStyleOpacity: number;
|
|
149
|
+
areaGradientShow: boolean;
|
|
150
|
+
areaGradientColor: string;
|
|
151
|
+
isBoundaryGap: boolean;
|
|
152
|
+
yAxisLabelShow: boolean;
|
|
143
153
|
position: string;
|
|
144
154
|
zIndex: number;
|
|
145
155
|
isShow: boolean;
|
|
@@ -285,6 +295,10 @@ export declare const lineComponentProps: {
|
|
|
285
295
|
type?: import("vue").PropType<string>;
|
|
286
296
|
default?: string;
|
|
287
297
|
};
|
|
298
|
+
xAxisLineShow: {
|
|
299
|
+
type?: import("vue").PropType<boolean>;
|
|
300
|
+
default?: boolean;
|
|
301
|
+
};
|
|
288
302
|
xAxisLineStyleColor: {
|
|
289
303
|
type?: import("vue").PropType<string>;
|
|
290
304
|
default?: string;
|
|
@@ -443,6 +457,22 @@ export declare const lineComponentProps: {
|
|
|
443
457
|
type?: import("vue").PropType<number>;
|
|
444
458
|
default?: number;
|
|
445
459
|
};
|
|
460
|
+
areaGradientShow: {
|
|
461
|
+
type?: import("vue").PropType<boolean>;
|
|
462
|
+
default?: boolean;
|
|
463
|
+
};
|
|
464
|
+
areaGradientColor: {
|
|
465
|
+
type?: import("vue").PropType<string>;
|
|
466
|
+
default?: string;
|
|
467
|
+
};
|
|
468
|
+
isBoundaryGap: {
|
|
469
|
+
type?: import("vue").PropType<boolean>;
|
|
470
|
+
default?: boolean;
|
|
471
|
+
};
|
|
472
|
+
yAxisLabelShow: {
|
|
473
|
+
type?: import("vue").PropType<boolean>;
|
|
474
|
+
default?: boolean;
|
|
475
|
+
};
|
|
446
476
|
position: {
|
|
447
477
|
type?: import("vue").PropType<string>;
|
|
448
478
|
default?: string;
|
|
@@ -209,6 +209,10 @@ 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
|
+
};
|
|
212
216
|
id: {
|
|
213
217
|
type?: import("vue").PropType<string>;
|
|
214
218
|
default?: string;
|
|
@@ -383,6 +387,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
383
387
|
show: boolean;
|
|
384
388
|
};
|
|
385
389
|
axisLabel: {
|
|
390
|
+
show: boolean;
|
|
386
391
|
fontSize: number;
|
|
387
392
|
color: string;
|
|
388
393
|
formatter(value: string): string;
|
|
@@ -638,6 +643,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
638
643
|
type?: import("vue").PropType<string>;
|
|
639
644
|
default?: string;
|
|
640
645
|
};
|
|
646
|
+
yAxisLabelShow: {
|
|
647
|
+
type?: import("vue").PropType<boolean>;
|
|
648
|
+
default?: boolean;
|
|
649
|
+
};
|
|
641
650
|
id: {
|
|
642
651
|
type?: import("vue").PropType<string>;
|
|
643
652
|
default?: string;
|
|
@@ -209,6 +209,10 @@ 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
|
+
};
|
|
212
216
|
id: {
|
|
213
217
|
type?: import("vue").PropType<string>;
|
|
214
218
|
default?: string;
|
|
@@ -383,6 +387,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
383
387
|
show: boolean;
|
|
384
388
|
};
|
|
385
389
|
axisLabel: {
|
|
390
|
+
show: boolean;
|
|
386
391
|
fontSize: number;
|
|
387
392
|
color: string;
|
|
388
393
|
formatter(value: string): string;
|
|
@@ -638,6 +643,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
638
643
|
type?: import("vue").PropType<string>;
|
|
639
644
|
default?: string;
|
|
640
645
|
};
|
|
646
|
+
yAxisLabelShow: {
|
|
647
|
+
type?: import("vue").PropType<boolean>;
|
|
648
|
+
default?: boolean;
|
|
649
|
+
};
|
|
641
650
|
id: {
|
|
642
651
|
type?: import("vue").PropType<string>;
|
|
643
652
|
default?: string;
|
|
@@ -55,6 +55,7 @@ export interface ScatterProps extends Props {
|
|
|
55
55
|
toolboxIconStyleBorderColor: string;
|
|
56
56
|
toolboxDownloadUrl: string;
|
|
57
57
|
toolboxInfoText: string;
|
|
58
|
+
yAxisLabelShow: boolean;
|
|
58
59
|
}
|
|
59
60
|
export declare const scatterProps: ScatterProps;
|
|
60
61
|
export declare const scatterComponentProps: {
|
|
@@ -268,6 +269,10 @@ export declare const scatterComponentProps: {
|
|
|
268
269
|
type?: import("vue").PropType<string>;
|
|
269
270
|
default?: string;
|
|
270
271
|
};
|
|
272
|
+
yAxisLabelShow: {
|
|
273
|
+
type?: import("vue").PropType<boolean>;
|
|
274
|
+
default?: boolean;
|
|
275
|
+
};
|
|
271
276
|
id: {
|
|
272
277
|
type?: import("vue").PropType<string>;
|
|
273
278
|
default?: string;
|
|
@@ -119,6 +119,10 @@ 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
|
+
};
|
|
122
126
|
id: {
|
|
123
127
|
type?: import("vue").PropType<string>;
|
|
124
128
|
default?: string;
|
|
@@ -256,6 +260,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
256
260
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
257
261
|
pageSize: import("vue").Ref<number>;
|
|
258
262
|
tableRef: import("vue").Ref<any>;
|
|
263
|
+
headerBgColor: import("vue").ComputedRef<string>;
|
|
259
264
|
}, 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
265
|
columns: {
|
|
261
266
|
type?: import("vue").PropType<{
|
|
@@ -377,6 +382,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
377
382
|
[key: string]: any;
|
|
378
383
|
};
|
|
379
384
|
};
|
|
385
|
+
headerBackgroundColor: {
|
|
386
|
+
type?: import("vue").PropType<string>;
|
|
387
|
+
default?: string;
|
|
388
|
+
};
|
|
380
389
|
id: {
|
|
381
390
|
type?: import("vue").PropType<string>;
|
|
382
391
|
default?: string;
|
|
@@ -119,6 +119,10 @@ 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
|
+
};
|
|
122
126
|
id: {
|
|
123
127
|
type?: import("vue").PropType<string>;
|
|
124
128
|
default?: string;
|
|
@@ -256,6 +260,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
256
260
|
pageSizeVisible: import("vue").Ref<boolean>;
|
|
257
261
|
pageSize: import("vue").Ref<number>;
|
|
258
262
|
tableRef: import("vue").Ref<any>;
|
|
263
|
+
headerBgColor: import("vue").ComputedRef<string>;
|
|
259
264
|
}, 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
265
|
columns: {
|
|
261
266
|
type?: import("vue").PropType<{
|
|
@@ -377,6 +382,10 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
377
382
|
[key: string]: any;
|
|
378
383
|
};
|
|
379
384
|
};
|
|
385
|
+
headerBackgroundColor: {
|
|
386
|
+
type?: import("vue").PropType<string>;
|
|
387
|
+
default?: string;
|
|
388
|
+
};
|
|
380
389
|
id: {
|
|
381
390
|
type?: import("vue").PropType<string>;
|
|
382
391
|
default?: string;
|
|
@@ -34,6 +34,7 @@ export interface TableProps extends Props {
|
|
|
34
34
|
graphicConfig: {
|
|
35
35
|
[key: string]: any;
|
|
36
36
|
};
|
|
37
|
+
headerBackgroundColor: string;
|
|
37
38
|
}
|
|
38
39
|
export declare const tableProps: TableProps;
|
|
39
40
|
export declare const tableComponentProps: {
|
|
@@ -157,6 +158,10 @@ export declare const tableComponentProps: {
|
|
|
157
158
|
[key: string]: any;
|
|
158
159
|
};
|
|
159
160
|
};
|
|
161
|
+
headerBackgroundColor: {
|
|
162
|
+
type?: import("vue").PropType<string>;
|
|
163
|
+
default?: string;
|
|
164
|
+
};
|
|
160
165
|
id: {
|
|
161
166
|
type?: import("vue").PropType<string>;
|
|
162
167
|
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;
|
|
@@ -3,7 +3,7 @@ export interface ProportionProps extends Props {
|
|
|
3
3
|
strokeColor: string;
|
|
4
4
|
strokeLinecap: 'round' | 'square';
|
|
5
5
|
trailColor: string;
|
|
6
|
-
strokeType: 'circle' | 'dashboard';
|
|
6
|
+
strokeType: 'circle' | 'dashboard' | 'line';
|
|
7
7
|
data: {
|
|
8
8
|
[key: string]: any;
|
|
9
9
|
};
|
|
@@ -16,6 +16,10 @@ export interface ProportionProps extends Props {
|
|
|
16
16
|
lineHeight: string;
|
|
17
17
|
decimalFormat: boolean;
|
|
18
18
|
variableDefaultValue: string;
|
|
19
|
+
strokeTextShow: boolean;
|
|
20
|
+
gradientShow: boolean;
|
|
21
|
+
gradientColor: string;
|
|
22
|
+
gradientOffset: number;
|
|
19
23
|
}
|
|
20
24
|
export declare const proportionProps: ProportionProps;
|
|
21
25
|
export declare const proportionComponentProps: {
|
|
@@ -32,8 +36,8 @@ export declare const proportionComponentProps: {
|
|
|
32
36
|
default?: string;
|
|
33
37
|
};
|
|
34
38
|
strokeType: {
|
|
35
|
-
type?: import("vue").PropType<"circle" | "dashboard">;
|
|
36
|
-
default?: "circle" | "dashboard";
|
|
39
|
+
type?: import("vue").PropType<"line" | "circle" | "dashboard">;
|
|
40
|
+
default?: "line" | "circle" | "dashboard";
|
|
37
41
|
};
|
|
38
42
|
data: {
|
|
39
43
|
type?: import("vue").PropType<{
|
|
@@ -79,6 +83,22 @@ export declare const proportionComponentProps: {
|
|
|
79
83
|
type?: import("vue").PropType<string>;
|
|
80
84
|
default?: string;
|
|
81
85
|
};
|
|
86
|
+
strokeTextShow: {
|
|
87
|
+
type?: import("vue").PropType<boolean>;
|
|
88
|
+
default?: boolean;
|
|
89
|
+
};
|
|
90
|
+
gradientShow: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
94
|
+
gradientColor: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
98
|
+
gradientOffset: {
|
|
99
|
+
type?: import("vue").PropType<number>;
|
|
100
|
+
default?: number;
|
|
101
|
+
};
|
|
82
102
|
id: {
|
|
83
103
|
type?: import("vue").PropType<string>;
|
|
84
104
|
default?: string;
|
|
@@ -173,6 +173,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
173
173
|
loading: import("vue").Ref<boolean>;
|
|
174
174
|
click: () => void;
|
|
175
175
|
textIndent: import("vue").ComputedRef<string>;
|
|
176
|
+
vFontSize: import("vue").ComputedRef<string>;
|
|
176
177
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
177
178
|
text: {
|
|
178
179
|
type?: import("vue").PropType<string>;
|
|
@@ -173,6 +173,7 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
173
173
|
loading: import("vue").Ref<boolean>;
|
|
174
174
|
click: () => void;
|
|
175
175
|
textIndent: import("vue").ComputedRef<string>;
|
|
176
|
+
vFontSize: import("vue").ComputedRef<string>;
|
|
176
177
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
177
178
|
text: {
|
|
178
179
|
type?: import("vue").PropType<string>;
|