@bouko/react 2.8.0 → 2.8.2
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.
|
@@ -52,4 +52,15 @@ export declare const slideY: (y?: number) => {
|
|
|
52
52
|
y: number;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
+
export declare const scale: (x?: number) => {
|
|
56
|
+
initial: {
|
|
57
|
+
scale: number;
|
|
58
|
+
};
|
|
59
|
+
animate: {
|
|
60
|
+
scale: number;
|
|
61
|
+
};
|
|
62
|
+
exit: {
|
|
63
|
+
scale: number;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
55
66
|
export { AnimatePresence } from "framer-motion";
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export { default as useContainer } from "./element/container";
|
|
|
3
3
|
export { default as useResize } from "./element/resize";
|
|
4
4
|
export { default as useInterval } from "./clock/interval";
|
|
5
5
|
export { default as useSound } from "./audio/sound";
|
|
6
|
-
export { withAudio } from "./element/with-audio";
|
|
6
|
+
export { withAudio, type DivRef, type AudioRef } from "./element/with-audio";
|