@ecan-bi/datav 1.2.32 → 1.2.34
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 +3555 -3359
- 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/container/border/Border.vue.d.ts +10 -0
- package/types/container/border/index.d.ts +10 -0
- package/types/container/border/props.d.ts +5 -0
- 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/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
|
@@ -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;
|