@ecan-bi/datav 1.2.23 → 1.2.24
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 +2177 -2112
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +25 -25
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +33 -4
- package/types/container/border/index.d.ts +33 -4
- package/types/container/border/props.d.ts +18 -3
- package/types/control/button/Button.vue.d.ts +3 -0
- package/types/control/button/index.d.ts +3 -0
- package/types/graph/bar/Bar.vue.d.ts +56 -6
- package/types/graph/bar/index.d.ts +56 -6
- package/types/graph/bar/props.d.ts +29 -4
- package/types/graph/line/Line.vue.d.ts +39 -0
- package/types/graph/line/index.d.ts +39 -0
- package/types/graph/line/props.d.ts +24 -0
- package/types/graph/pie/Pie.vue.d.ts +27 -0
- package/types/graph/pie/index.d.ts +27 -0
- package/types/graph/pie/props.d.ts +15 -0
- package/types/setting/page-config/PageConfig.vue.d.ts +2 -2
- package/types/setting/page-config/index.d.ts +2 -2
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +16 -0
- package/types/setting/provider-config/index.d.ts +16 -0
- package/types/setting/provider-config/props.d.ts +10 -0
- package/types/text/text/Text.vue.d.ts +16 -0
- package/types/text/text/index.d.ts +16 -0
- package/types/text/text/props.d.ts +10 -0
|
@@ -309,6 +309,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
309
309
|
type?: import("vue").PropType<string>;
|
|
310
310
|
default?: string;
|
|
311
311
|
};
|
|
312
|
+
legendItemGap: {
|
|
313
|
+
type?: import("vue").PropType<number>;
|
|
314
|
+
default?: number;
|
|
315
|
+
};
|
|
316
|
+
legendItemWidth: {
|
|
317
|
+
type?: import("vue").PropType<number>;
|
|
318
|
+
default?: number;
|
|
319
|
+
};
|
|
320
|
+
legendItemHeight: {
|
|
321
|
+
type?: import("vue").PropType<number>;
|
|
322
|
+
default?: number;
|
|
323
|
+
};
|
|
324
|
+
legendType: {
|
|
325
|
+
type?: import("vue").PropType<string>;
|
|
326
|
+
default?: string;
|
|
327
|
+
};
|
|
312
328
|
position: {
|
|
313
329
|
type?: import("vue").PropType<string>;
|
|
314
330
|
default?: string;
|
|
@@ -482,6 +498,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
482
498
|
textStyle: {
|
|
483
499
|
fontSize: number;
|
|
484
500
|
};
|
|
501
|
+
itemHeight: number;
|
|
502
|
+
itemWidth: number;
|
|
503
|
+
itemGap: number;
|
|
504
|
+
data: {
|
|
505
|
+
name: any;
|
|
506
|
+
icon: string;
|
|
507
|
+
}[];
|
|
485
508
|
};
|
|
486
509
|
series: {
|
|
487
510
|
[x: string]: any;
|
|
@@ -807,6 +830,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
807
830
|
type?: import("vue").PropType<string>;
|
|
808
831
|
default?: string;
|
|
809
832
|
};
|
|
833
|
+
legendItemGap: {
|
|
834
|
+
type?: import("vue").PropType<number>;
|
|
835
|
+
default?: number;
|
|
836
|
+
};
|
|
837
|
+
legendItemWidth: {
|
|
838
|
+
type?: import("vue").PropType<number>;
|
|
839
|
+
default?: number;
|
|
840
|
+
};
|
|
841
|
+
legendItemHeight: {
|
|
842
|
+
type?: import("vue").PropType<number>;
|
|
843
|
+
default?: number;
|
|
844
|
+
};
|
|
845
|
+
legendType: {
|
|
846
|
+
type?: import("vue").PropType<string>;
|
|
847
|
+
default?: string;
|
|
848
|
+
};
|
|
810
849
|
position: {
|
|
811
850
|
type?: import("vue").PropType<string>;
|
|
812
851
|
default?: string;
|
|
@@ -309,6 +309,22 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
309
309
|
type?: import("vue").PropType<string>;
|
|
310
310
|
default?: string;
|
|
311
311
|
};
|
|
312
|
+
legendItemGap: {
|
|
313
|
+
type?: import("vue").PropType<number>;
|
|
314
|
+
default?: number;
|
|
315
|
+
};
|
|
316
|
+
legendItemWidth: {
|
|
317
|
+
type?: import("vue").PropType<number>;
|
|
318
|
+
default?: number;
|
|
319
|
+
};
|
|
320
|
+
legendItemHeight: {
|
|
321
|
+
type?: import("vue").PropType<number>;
|
|
322
|
+
default?: number;
|
|
323
|
+
};
|
|
324
|
+
legendType: {
|
|
325
|
+
type?: import("vue").PropType<string>;
|
|
326
|
+
default?: string;
|
|
327
|
+
};
|
|
312
328
|
position: {
|
|
313
329
|
type?: import("vue").PropType<string>;
|
|
314
330
|
default?: string;
|
|
@@ -482,6 +498,13 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
482
498
|
textStyle: {
|
|
483
499
|
fontSize: number;
|
|
484
500
|
};
|
|
501
|
+
itemHeight: number;
|
|
502
|
+
itemWidth: number;
|
|
503
|
+
itemGap: number;
|
|
504
|
+
data: {
|
|
505
|
+
name: any;
|
|
506
|
+
icon: string;
|
|
507
|
+
}[];
|
|
485
508
|
};
|
|
486
509
|
series: {
|
|
487
510
|
[x: string]: any;
|
|
@@ -807,6 +830,22 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
807
830
|
type?: import("vue").PropType<string>;
|
|
808
831
|
default?: string;
|
|
809
832
|
};
|
|
833
|
+
legendItemGap: {
|
|
834
|
+
type?: import("vue").PropType<number>;
|
|
835
|
+
default?: number;
|
|
836
|
+
};
|
|
837
|
+
legendItemWidth: {
|
|
838
|
+
type?: import("vue").PropType<number>;
|
|
839
|
+
default?: number;
|
|
840
|
+
};
|
|
841
|
+
legendItemHeight: {
|
|
842
|
+
type?: import("vue").PropType<number>;
|
|
843
|
+
default?: number;
|
|
844
|
+
};
|
|
845
|
+
legendType: {
|
|
846
|
+
type?: import("vue").PropType<string>;
|
|
847
|
+
default?: string;
|
|
848
|
+
};
|
|
810
849
|
position: {
|
|
811
850
|
type?: import("vue").PropType<string>;
|
|
812
851
|
default?: string;
|
|
@@ -67,6 +67,10 @@ export interface LineProps extends Props {
|
|
|
67
67
|
isBoundaryGap: boolean;
|
|
68
68
|
yAxisLabelShow: boolean;
|
|
69
69
|
yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
|
|
70
|
+
legendItemGap: number;
|
|
71
|
+
legendItemWidth: number;
|
|
72
|
+
legendItemHeight: number;
|
|
73
|
+
legendType: string;
|
|
70
74
|
}
|
|
71
75
|
export declare const lineProps: {
|
|
72
76
|
id: string;
|
|
@@ -152,6 +156,10 @@ export declare const lineProps: {
|
|
|
152
156
|
isBoundaryGap: boolean;
|
|
153
157
|
yAxisLabelShow: boolean;
|
|
154
158
|
yAxisSplitLineType: string;
|
|
159
|
+
legendItemGap: number;
|
|
160
|
+
legendItemWidth: number;
|
|
161
|
+
legendItemHeight: number;
|
|
162
|
+
legendType: string;
|
|
155
163
|
position: string;
|
|
156
164
|
zIndex: number;
|
|
157
165
|
isShow: boolean;
|
|
@@ -479,6 +487,22 @@ export declare const lineComponentProps: {
|
|
|
479
487
|
type?: import("vue").PropType<string>;
|
|
480
488
|
default?: string;
|
|
481
489
|
};
|
|
490
|
+
legendItemGap: {
|
|
491
|
+
type?: import("vue").PropType<number>;
|
|
492
|
+
default?: number;
|
|
493
|
+
};
|
|
494
|
+
legendItemWidth: {
|
|
495
|
+
type?: import("vue").PropType<number>;
|
|
496
|
+
default?: number;
|
|
497
|
+
};
|
|
498
|
+
legendItemHeight: {
|
|
499
|
+
type?: import("vue").PropType<number>;
|
|
500
|
+
default?: number;
|
|
501
|
+
};
|
|
502
|
+
legendType: {
|
|
503
|
+
type?: import("vue").PropType<string>;
|
|
504
|
+
default?: string;
|
|
505
|
+
};
|
|
482
506
|
position: {
|
|
483
507
|
type?: import("vue").PropType<string>;
|
|
484
508
|
default?: string;
|
|
@@ -204,6 +204,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
204
204
|
type?: import("vue").PropType<string>;
|
|
205
205
|
default?: string;
|
|
206
206
|
};
|
|
207
|
+
legendItemGap: {
|
|
208
|
+
type?: import("vue").PropType<number>;
|
|
209
|
+
default?: number;
|
|
210
|
+
};
|
|
211
|
+
legendItemWidth: {
|
|
212
|
+
type?: import("vue").PropType<number>;
|
|
213
|
+
default?: number;
|
|
214
|
+
};
|
|
215
|
+
legendItemHeight: {
|
|
216
|
+
type?: import("vue").PropType<number>;
|
|
217
|
+
default?: number;
|
|
218
|
+
};
|
|
207
219
|
id: {
|
|
208
220
|
type?: import("vue").PropType<string>;
|
|
209
221
|
default?: string;
|
|
@@ -354,6 +366,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
354
366
|
color: string;
|
|
355
367
|
fontSize: number;
|
|
356
368
|
};
|
|
369
|
+
itemHeight: number;
|
|
370
|
+
itemWidth: number;
|
|
371
|
+
itemGap: number;
|
|
357
372
|
};
|
|
358
373
|
color: string[];
|
|
359
374
|
series: {
|
|
@@ -596,6 +611,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
596
611
|
type?: import("vue").PropType<string>;
|
|
597
612
|
default?: string;
|
|
598
613
|
};
|
|
614
|
+
legendItemGap: {
|
|
615
|
+
type?: import("vue").PropType<number>;
|
|
616
|
+
default?: number;
|
|
617
|
+
};
|
|
618
|
+
legendItemWidth: {
|
|
619
|
+
type?: import("vue").PropType<number>;
|
|
620
|
+
default?: number;
|
|
621
|
+
};
|
|
622
|
+
legendItemHeight: {
|
|
623
|
+
type?: import("vue").PropType<number>;
|
|
624
|
+
default?: number;
|
|
625
|
+
};
|
|
599
626
|
id: {
|
|
600
627
|
type?: import("vue").PropType<string>;
|
|
601
628
|
default?: string;
|
|
@@ -203,6 +203,18 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
203
203
|
type?: import("vue").PropType<string>;
|
|
204
204
|
default?: string;
|
|
205
205
|
};
|
|
206
|
+
legendItemGap: {
|
|
207
|
+
type?: import("vue").PropType<number>;
|
|
208
|
+
default?: number;
|
|
209
|
+
};
|
|
210
|
+
legendItemWidth: {
|
|
211
|
+
type?: import("vue").PropType<number>;
|
|
212
|
+
default?: number;
|
|
213
|
+
};
|
|
214
|
+
legendItemHeight: {
|
|
215
|
+
type?: import("vue").PropType<number>;
|
|
216
|
+
default?: number;
|
|
217
|
+
};
|
|
206
218
|
id: {
|
|
207
219
|
type?: import("vue").PropType<string>;
|
|
208
220
|
default?: string;
|
|
@@ -353,6 +365,9 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
353
365
|
color: string;
|
|
354
366
|
fontSize: number;
|
|
355
367
|
};
|
|
368
|
+
itemHeight: number;
|
|
369
|
+
itemWidth: number;
|
|
370
|
+
itemGap: number;
|
|
356
371
|
};
|
|
357
372
|
color: string[];
|
|
358
373
|
series: {
|
|
@@ -595,6 +610,18 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
595
610
|
type?: import("vue").PropType<string>;
|
|
596
611
|
default?: string;
|
|
597
612
|
};
|
|
613
|
+
legendItemGap: {
|
|
614
|
+
type?: import("vue").PropType<number>;
|
|
615
|
+
default?: number;
|
|
616
|
+
};
|
|
617
|
+
legendItemWidth: {
|
|
618
|
+
type?: import("vue").PropType<number>;
|
|
619
|
+
default?: number;
|
|
620
|
+
};
|
|
621
|
+
legendItemHeight: {
|
|
622
|
+
type?: import("vue").PropType<number>;
|
|
623
|
+
default?: number;
|
|
624
|
+
};
|
|
598
625
|
id: {
|
|
599
626
|
type?: import("vue").PropType<string>;
|
|
600
627
|
default?: string;
|
|
@@ -52,6 +52,9 @@ export interface PieProps extends Props {
|
|
|
52
52
|
toolboxIconStyleBorderColor: string;
|
|
53
53
|
toolboxDownloadUrl: string;
|
|
54
54
|
toolboxInfoText: string;
|
|
55
|
+
legendItemGap: number;
|
|
56
|
+
legendItemWidth: number;
|
|
57
|
+
legendItemHeight: number;
|
|
55
58
|
}
|
|
56
59
|
export declare const pieProps: PieProps;
|
|
57
60
|
export declare const pieComponentProps: {
|
|
@@ -259,6 +262,18 @@ export declare const pieComponentProps: {
|
|
|
259
262
|
type?: import("vue").PropType<string>;
|
|
260
263
|
default?: string;
|
|
261
264
|
};
|
|
265
|
+
legendItemGap: {
|
|
266
|
+
type?: import("vue").PropType<number>;
|
|
267
|
+
default?: number;
|
|
268
|
+
};
|
|
269
|
+
legendItemWidth: {
|
|
270
|
+
type?: import("vue").PropType<number>;
|
|
271
|
+
default?: number;
|
|
272
|
+
};
|
|
273
|
+
legendItemHeight: {
|
|
274
|
+
type?: import("vue").PropType<number>;
|
|
275
|
+
default?: number;
|
|
276
|
+
};
|
|
262
277
|
id: {
|
|
263
278
|
type?: import("vue").PropType<string>;
|
|
264
279
|
default?: string;
|
|
@@ -29,8 +29,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
29
|
};
|
|
30
30
|
}, {
|
|
31
31
|
style: import("vue").ComputedRef<{
|
|
32
|
-
width:
|
|
33
|
-
height:
|
|
32
|
+
width: any;
|
|
33
|
+
height: any;
|
|
34
34
|
backgroundColor: string;
|
|
35
35
|
backgroundImage: string;
|
|
36
36
|
backgroundSize: string;
|
|
@@ -29,8 +29,8 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
29
29
|
};
|
|
30
30
|
}, {
|
|
31
31
|
style: import("vue").ComputedRef<{
|
|
32
|
-
width:
|
|
33
|
-
height:
|
|
32
|
+
width: any;
|
|
33
|
+
height: any;
|
|
34
34
|
backgroundColor: string;
|
|
35
35
|
backgroundImage: string;
|
|
36
36
|
backgroundSize: string;
|
|
@@ -23,6 +23,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
+
width: {
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
29
|
+
};
|
|
30
|
+
height: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
26
34
|
}, {
|
|
27
35
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
28
36
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -50,5 +58,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
58
|
};
|
|
51
59
|
};
|
|
52
60
|
};
|
|
61
|
+
width: {
|
|
62
|
+
type?: import("vue").PropType<string>;
|
|
63
|
+
default?: string;
|
|
64
|
+
};
|
|
65
|
+
height: {
|
|
66
|
+
type?: import("vue").PropType<string>;
|
|
67
|
+
default?: string;
|
|
68
|
+
};
|
|
53
69
|
}>>, {}>;
|
|
54
70
|
export default _sfc_main;
|
|
@@ -23,6 +23,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
+
width: {
|
|
27
|
+
type?: import("vue").PropType<string>;
|
|
28
|
+
default?: string;
|
|
29
|
+
};
|
|
30
|
+
height: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
26
34
|
}, {
|
|
27
35
|
providerConfig: import("vue").Ref<HTMLElement>;
|
|
28
36
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -50,6 +58,14 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
50
58
|
};
|
|
51
59
|
};
|
|
52
60
|
};
|
|
61
|
+
width: {
|
|
62
|
+
type?: import("vue").PropType<string>;
|
|
63
|
+
default?: string;
|
|
64
|
+
};
|
|
65
|
+
height: {
|
|
66
|
+
type?: import("vue").PropType<string>;
|
|
67
|
+
default?: string;
|
|
68
|
+
};
|
|
53
69
|
}>>, {}>> & Record<string, any>;
|
|
54
70
|
export default EcanProviderConfig;
|
|
55
71
|
export * from './props';
|
|
@@ -7,6 +7,8 @@ export interface ProviderConfig {
|
|
|
7
7
|
[key: string]: string[];
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
10
12
|
}
|
|
11
13
|
export declare const providerConfig: ProviderConfig;
|
|
12
14
|
export declare const providerConfigComponentProps: {
|
|
@@ -34,4 +36,12 @@ export declare const providerConfigComponentProps: {
|
|
|
34
36
|
};
|
|
35
37
|
};
|
|
36
38
|
};
|
|
39
|
+
width: {
|
|
40
|
+
type?: import("vue").PropType<string>;
|
|
41
|
+
default?: string;
|
|
42
|
+
};
|
|
43
|
+
height: {
|
|
44
|
+
type?: import("vue").PropType<string>;
|
|
45
|
+
default?: string;
|
|
46
|
+
};
|
|
37
47
|
};
|
|
@@ -75,6 +75,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
75
75
|
type?: import("vue").PropType<string>;
|
|
76
76
|
default?: string;
|
|
77
77
|
};
|
|
78
|
+
increaseColor: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
declineColor: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
78
86
|
id: {
|
|
79
87
|
type?: import("vue").PropType<string>;
|
|
80
88
|
default?: string;
|
|
@@ -251,6 +259,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
253
261
|
};
|
|
262
|
+
increaseColor: {
|
|
263
|
+
type?: import("vue").PropType<string>;
|
|
264
|
+
default?: string;
|
|
265
|
+
};
|
|
266
|
+
declineColor: {
|
|
267
|
+
type?: import("vue").PropType<string>;
|
|
268
|
+
default?: string;
|
|
269
|
+
};
|
|
254
270
|
id: {
|
|
255
271
|
type?: import("vue").PropType<string>;
|
|
256
272
|
default?: string;
|
|
@@ -75,6 +75,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
75
75
|
type?: import("vue").PropType<string>;
|
|
76
76
|
default?: string;
|
|
77
77
|
};
|
|
78
|
+
increaseColor: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
declineColor: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
78
86
|
id: {
|
|
79
87
|
type?: import("vue").PropType<string>;
|
|
80
88
|
default?: string;
|
|
@@ -251,6 +259,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
251
259
|
type?: import("vue").PropType<string>;
|
|
252
260
|
default?: string;
|
|
253
261
|
};
|
|
262
|
+
increaseColor: {
|
|
263
|
+
type?: import("vue").PropType<string>;
|
|
264
|
+
default?: string;
|
|
265
|
+
};
|
|
266
|
+
declineColor: {
|
|
267
|
+
type?: import("vue").PropType<string>;
|
|
268
|
+
default?: string;
|
|
269
|
+
};
|
|
254
270
|
id: {
|
|
255
271
|
type?: import("vue").PropType<string>;
|
|
256
272
|
default?: string;
|
|
@@ -20,6 +20,8 @@ export interface TextProps extends Props {
|
|
|
20
20
|
[key: string]: any;
|
|
21
21
|
};
|
|
22
22
|
percentageSide: string;
|
|
23
|
+
increaseColor: string;
|
|
24
|
+
declineColor: string;
|
|
23
25
|
}
|
|
24
26
|
export declare const textProps: TextProps;
|
|
25
27
|
export declare const textComponentProps: {
|
|
@@ -99,6 +101,14 @@ export declare const textComponentProps: {
|
|
|
99
101
|
type?: import("vue").PropType<string>;
|
|
100
102
|
default?: string;
|
|
101
103
|
};
|
|
104
|
+
increaseColor: {
|
|
105
|
+
type?: import("vue").PropType<string>;
|
|
106
|
+
default?: string;
|
|
107
|
+
};
|
|
108
|
+
declineColor: {
|
|
109
|
+
type?: import("vue").PropType<string>;
|
|
110
|
+
default?: string;
|
|
111
|
+
};
|
|
102
112
|
id: {
|
|
103
113
|
type?: import("vue").PropType<string>;
|
|
104
114
|
default?: string;
|