motionrack
Advanced tools
Comparing version 1.0.0-alpha.1 to 1.0.0-alpha.2
{ | ||
"name": "motionrack", | ||
"version": "1.0.0-alpha.1", | ||
"version": "1.0.0-alpha.2", | ||
"description": "A free and open source JavaScript library for React, Vue, Angular and Svelte about web page scrolling by animating elements as they come into view.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -32,3 +32,3 @@ <p align="center"> | ||
## Release-notes | ||
Version 1.0.0-alpha.1 | ||
Version 1.0.0-alpha.2 | ||
@@ -35,0 +35,0 @@ ------- |
@@ -1,14 +0,13 @@ | ||
declare module 'motionrack' { | ||
// Define your types here, for example: | ||
interface MotionData { | ||
animationName: string; | ||
animationDuration?: string; | ||
} | ||
// Define the motionRack function | ||
function motionRack(): void; | ||
// Export the motionRack function | ||
export default motionRack; | ||
} | ||
declare module 'motionRack' { | ||
// Define your types here: | ||
type AnimationOptions = { | ||
animationName: string; | ||
animationDuration?: string; | ||
}; | ||
// Define the motionRack function | ||
function motionRack(options?: AnimationOptions): void; | ||
// Export the motionRack function | ||
export default motionRack; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
32359