@cheprasov/web-animation
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "@cheprasov/web-animation", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"author": "Alexander Cheprasov", | ||
@@ -11,3 +11,3 @@ "description": "A Class for driving animated content on the web is based on requestAnimationFrame for performance.", | ||
], | ||
"main": "src/WebAnimation.js", | ||
"main": "dist/web-animation.js", | ||
"license": "MIT", | ||
@@ -14,0 +14,0 @@ "repository": { |
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT) | ||
@cheprasov/web-animation v0.1.0 | ||
@cheprasov/web-animation | ||
========= | ||
@@ -19,2 +19,6 @@ | ||
```javascript | ||
import WebAnimation from '@cheprasov/web-animation'; | ||
``` | ||
### 2. Quick examples | ||
@@ -25,3 +29,3 @@ | ||
```javascript | ||
import WebAnimation from 'js-web-animation'; | ||
import WebAnimation from '@cheprasov/web-animation'; | ||
@@ -28,0 +32,0 @@ const div1 = document.getElementById('div1'); |
@@ -1,10 +0,10 @@ | ||
//@flow strict | ||
//@flow | ||
export type OptionsType = { | ||
duration: ?number, | ||
easing: ?Function, | ||
rAF: ?Function, | ||
onStep: ?Function, | ||
onStop: ?Function, | ||
onFinish: ?Function, | ||
duration?: number, | ||
easing?: Function, | ||
rAF?: Function, | ||
onStep?: Function, | ||
onStop?: Function, | ||
onFinish?: Function, | ||
}; | ||
@@ -11,0 +11,0 @@ |
Sorry, the diff of this file is not supported yet
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
24251
179