@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 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 const _default: (_prefixCls?: string | import("vue").Ref<string> | undefined) => import("ant-design-vue/es/theme/internal").UseComponentStyleResult;
22
- export default _default;
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
+ };