Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

motionrack

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

motionrack - npm Package Compare versions

Comparing version 1.0.0-alpha.1 to 1.0.0-alpha.2

2

package.json
{
"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;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc