@ecan-bi/datav 1.2.31 → 1.2.33
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 +2940 -2727
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +31 -31
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/checkbox/Checkbox.vue.d.ts +16 -0
- package/types/control/checkbox/index.d.ts +16 -0
- package/types/control/checkbox/props.d.ts +11 -0
- package/types/control/radio/Radio.vue.d.ts +16 -0
- package/types/control/radio/index.d.ts +16 -0
- package/types/control/radio/props.d.ts +11 -0
- package/types/control/select/Select.vue.d.ts +16 -0
- package/types/control/select/index.d.ts +16 -0
- package/types/control/select/props.d.ts +11 -0
- package/types/graph/pie/Pie.vue.d.ts +9 -12
- package/types/graph/pie/index.d.ts +9 -12
- package/types/graph/pie/props.d.ts +5 -0
- package/types/text/proportion/Proportion.vue.d.ts +16 -0
- package/types/text/proportion/index.d.ts +16 -0
- package/types/text/proportion/props.d.ts +11 -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 +11 -0
|
@@ -115,6 +115,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
115
115
|
type?: import("vue").PropType<string>;
|
|
116
116
|
default?: string;
|
|
117
117
|
};
|
|
118
|
+
graphicConfig: {
|
|
119
|
+
type?: import("vue").PropType<{
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
}>;
|
|
122
|
+
default?: {
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
118
126
|
id: {
|
|
119
127
|
type?: import("vue").PropType<string>;
|
|
120
128
|
default?: string;
|
|
@@ -331,6 +339,14 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
331
339
|
type?: import("vue").PropType<string>;
|
|
332
340
|
default?: string;
|
|
333
341
|
};
|
|
342
|
+
graphicConfig: {
|
|
343
|
+
type?: import("vue").PropType<{
|
|
344
|
+
[key: string]: any;
|
|
345
|
+
}>;
|
|
346
|
+
default?: {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
334
350
|
id: {
|
|
335
351
|
type?: import("vue").PropType<string>;
|
|
336
352
|
default?: string;
|
|
@@ -30,6 +30,9 @@ export interface TextProps extends Props {
|
|
|
30
30
|
unitColor: string;
|
|
31
31
|
unitTop: string;
|
|
32
32
|
unitLeft: string;
|
|
33
|
+
graphicConfig: {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
};
|
|
33
36
|
}
|
|
34
37
|
export declare const textProps: TextProps;
|
|
35
38
|
export declare const textComponentProps: {
|
|
@@ -149,6 +152,14 @@ export declare const textComponentProps: {
|
|
|
149
152
|
type?: import("vue").PropType<string>;
|
|
150
153
|
default?: string;
|
|
151
154
|
};
|
|
155
|
+
graphicConfig: {
|
|
156
|
+
type?: import("vue").PropType<{
|
|
157
|
+
[key: string]: any;
|
|
158
|
+
}>;
|
|
159
|
+
default?: {
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
152
163
|
id: {
|
|
153
164
|
type?: import("vue").PropType<string>;
|
|
154
165
|
default?: string;
|