dozy 1.0.38 → 1.0.40
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.d.ts +6 -2
- package/dist/index.js +13 -13
- package/dist/index.js.map +3 -3
- package/dist/modules/EnableScaler.d.ts +5 -1
- package/dist/modules/EnableScaler.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -174,7 +174,11 @@ declare class Scaler {
|
|
|
174
174
|
innerContainer: HTMLElement;
|
|
175
175
|
constructor(innerContainer: HTMLElement);
|
|
176
176
|
}
|
|
177
|
-
export declare function enableScaler(outerContainer: HTMLElement, initer?: ScaleIniter, innerContainer?: HTMLElement):
|
|
177
|
+
export declare function enableScaler(outerContainer: HTMLElement, initer?: ScaleIniter, innerContainer?: HTMLElement): {
|
|
178
|
+
resizer: () => void;
|
|
179
|
+
clean: () => void;
|
|
180
|
+
setBase: (val: number) => void;
|
|
181
|
+
} | undefined;
|
|
178
182
|
/**
|
|
179
183
|
* Hello
|
|
180
184
|
* @param widthElement 容器
|
|
@@ -297,7 +301,7 @@ export declare function toRgbString(input: string | Color | any): string | undef
|
|
|
297
301
|
* @returns HSL/HSLA string or undefined.
|
|
298
302
|
*/
|
|
299
303
|
export declare function toHslString(input: string | Color | any): string | undefined;
|
|
300
|
-
export declare const DOZY = "1.0.
|
|
304
|
+
export declare const DOZY = "1.0.40";
|
|
301
305
|
export * from "axios";
|
|
302
306
|
export * from "zod";
|
|
303
307
|
|