@gx-design-vue/image 0.2.0-beta.1 → 0.2.0-beta.10
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/Image.d.ts +0 -11
- package/dist/components/style.d.ts +4 -2
- package/dist/image.mjs +433 -569
- package/dist/image.umd.js +1 -2
- package/dist/props.d.ts +2 -7
- package/dist/style.d.ts +2 -5
- package/package.json +4 -5
package/dist/Image.d.ts
CHANGED
|
@@ -10,11 +10,6 @@ declare const GImage: import("vue").DefineComponent<{
|
|
|
10
10
|
type: import("vue").PropType<boolean>;
|
|
11
11
|
default: boolean;
|
|
12
12
|
};
|
|
13
|
-
wrapperClassName: StringConstructor;
|
|
14
|
-
wrapperStyle: {
|
|
15
|
-
type: import("vue").PropType<CSSProperties>;
|
|
16
|
-
default: undefined;
|
|
17
|
-
};
|
|
18
13
|
src: {
|
|
19
14
|
type: import("vue").PropType<string>;
|
|
20
15
|
default: string;
|
|
@@ -91,11 +86,6 @@ declare const GImage: import("vue").DefineComponent<{
|
|
|
91
86
|
type: import("vue").PropType<boolean>;
|
|
92
87
|
default: boolean;
|
|
93
88
|
};
|
|
94
|
-
wrapperClassName: StringConstructor;
|
|
95
|
-
wrapperStyle: {
|
|
96
|
-
type: import("vue").PropType<CSSProperties>;
|
|
97
|
-
default: undefined;
|
|
98
|
-
};
|
|
99
89
|
src: {
|
|
100
90
|
type: import("vue").PropType<string>;
|
|
101
91
|
default: string;
|
|
@@ -175,7 +165,6 @@ declare const GImage: import("vue").DefineComponent<{
|
|
|
175
165
|
initialIndex: number;
|
|
176
166
|
previewTeleported: boolean;
|
|
177
167
|
hideOnClickModal: boolean;
|
|
178
|
-
wrapperStyle: CSSProperties;
|
|
179
168
|
src: string;
|
|
180
169
|
alt: string;
|
|
181
170
|
fit: "contain" | "fill" | "none" | "cover" | "scale-down";
|
|
@@ -18,5 +18,7 @@ export declare const genBoxStyle: (position?: PositionType) => CSSObject;
|
|
|
18
18
|
export declare const resetComponent: (token: ProAliasToken) => CSSObject;
|
|
19
19
|
export declare const genPreviewOperationsStyle: (token: ProToken) => CSSObject;
|
|
20
20
|
export declare const genPreviewSwitchStyle: (token: ProToken) => CSSObject;
|
|
21
|
-
declare
|
|
22
|
-
|
|
21
|
+
export declare function useStyle(componentCls: string): {
|
|
22
|
+
wrapSSR: (node: import("ant-design-vue/es/_util/type").VueNode) => import("ant-design-vue/es/_util/type").VueNode;
|
|
23
|
+
hashId: import("vue").ComputedRef<string>;
|
|
24
|
+
};
|