@ecan-bi/datav 1.3.63 → 1.3.65
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 +19473 -8951
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +50 -38
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +4 -2
- package/types/control/date-picker/DatePicker.vue.d.ts +12 -3
- package/types/control/date-picker/index.d.ts +12 -3
- package/types/control/range-picker/RangePicker.vue.d.ts +23 -6
- package/types/control/range-picker/index.d.ts +23 -6
- package/types/control/select/Select.vue.d.ts +10 -0
- package/types/control/select/index.d.ts +10 -0
- package/types/graph/scatter/Scatter.vue.d.ts +65 -0
- package/types/graph/scatter/index.d.ts +65 -0
- package/types/graph/scatter/props.d.ts +30 -0
- package/types/media/image/Image.vue.d.ts +26 -0
- package/types/media/image/index.d.ts +26 -0
- package/types/media/image/props.d.ts +16 -0
|
@@ -31,6 +31,18 @@ export declare const EcanImage: import('../../utils/withInstall').SFCWithInstall
|
|
|
31
31
|
type?: import("vue").PropType<string>;
|
|
32
32
|
default?: string;
|
|
33
33
|
};
|
|
34
|
+
isAnimation: {
|
|
35
|
+
type?: import("vue").PropType<boolean>;
|
|
36
|
+
default?: boolean;
|
|
37
|
+
};
|
|
38
|
+
animationSource: {
|
|
39
|
+
type?: import("vue").PropType<{
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
}>;
|
|
42
|
+
default?: {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
34
46
|
id: {
|
|
35
47
|
type?: import("vue").PropType<string>;
|
|
36
48
|
default?: string;
|
|
@@ -130,6 +142,8 @@ export declare const EcanImage: import('../../utils/withInstall').SFCWithInstall
|
|
|
130
142
|
}, {
|
|
131
143
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
132
144
|
myImgUrl: import("vue").ComputedRef<string>;
|
|
145
|
+
animation: import("vue").Ref<any>;
|
|
146
|
+
pageMode: string;
|
|
133
147
|
onClick: () => void;
|
|
134
148
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
135
149
|
imgUrl: {
|
|
@@ -164,6 +178,18 @@ export declare const EcanImage: import('../../utils/withInstall').SFCWithInstall
|
|
|
164
178
|
type?: import("vue").PropType<string>;
|
|
165
179
|
default?: string;
|
|
166
180
|
};
|
|
181
|
+
isAnimation: {
|
|
182
|
+
type?: import("vue").PropType<boolean>;
|
|
183
|
+
default?: boolean;
|
|
184
|
+
};
|
|
185
|
+
animationSource: {
|
|
186
|
+
type?: import("vue").PropType<{
|
|
187
|
+
[key: string]: any;
|
|
188
|
+
}>;
|
|
189
|
+
default?: {
|
|
190
|
+
[key: string]: any;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
167
193
|
id: {
|
|
168
194
|
type?: import("vue").PropType<string>;
|
|
169
195
|
default?: string;
|
|
@@ -9,6 +9,10 @@ export interface ImageProps extends Props {
|
|
|
9
9
|
};
|
|
10
10
|
isHoverStyle: boolean;
|
|
11
11
|
borderRadius: string;
|
|
12
|
+
isAnimation: boolean;
|
|
13
|
+
animationSource: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
};
|
|
12
16
|
}
|
|
13
17
|
export declare const imageProps: ImageProps;
|
|
14
18
|
export declare const imageComponentProps: {
|
|
@@ -44,6 +48,18 @@ export declare const imageComponentProps: {
|
|
|
44
48
|
type?: import("vue").PropType<string>;
|
|
45
49
|
default?: string;
|
|
46
50
|
};
|
|
51
|
+
isAnimation: {
|
|
52
|
+
type?: import("vue").PropType<boolean>;
|
|
53
|
+
default?: boolean;
|
|
54
|
+
};
|
|
55
|
+
animationSource: {
|
|
56
|
+
type?: import("vue").PropType<{
|
|
57
|
+
[key: string]: any;
|
|
58
|
+
}>;
|
|
59
|
+
default?: {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
47
63
|
id: {
|
|
48
64
|
type?: import("vue").PropType<string>;
|
|
49
65
|
default?: string;
|