keyframekit 1.0.5 → 1.0.7

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/README.md CHANGED
@@ -4,7 +4,7 @@ Intuitive, powerful and performant tools for working with CSS animations in Java
4
4
 
5
5
  ## About
6
6
 
7
- While working with the [Web Animations API][1], I was surprised there wasn't an easy way to import animation keyframes directly from your CSS. You had to re-define them in JS, using a completely different format. So, I wrote a typed, spec-compliant library to convert. Along the way, I also added some other useful utilities for working with the API.
7
+ While working with the [Web Animations API][1], I was surprised there wasn't an easy way to import animation keyframes directly from your CSS. You had to re-define them in JS, using a completely different format. So I wrote a typed, spec-compliant library to convert from one to the other, letting you play your CSS-defined animations right in JS. Along the way, I also added some other useful utilities for working with the API.
8
8
 
9
9
  ## Installation
10
10
 
@@ -73,7 +73,7 @@ const rotateSmallAnimKeyframes = KeyframeKit.getStyleSheetKeyframes({
73
73
  });
74
74
  ```
75
75
 
76
- > Note: This won't resolve stylesheet `@import` rules. [More info.][3]
76
+ > Note: This won't resolve any `@import` rules in the stylesheet. [See here.][3]
77
77
 
78
78
  ### Defining animations in JS
79
79
 
@@ -18,7 +18,7 @@ hero:
18
18
 
19
19
  ## About
20
20
 
21
- While working with the [Web Animations API][1], I was surprised there wasn't an easy way to import animation keyframes directly from your CSS. You had to re-define them in JS, using a completely different format. So, I wrote a typed, spec-compliant library to convert. Along the way, I also added some other useful utilities for working with the API.
21
+ While working with the [Web Animations API][1], I was surprised there wasn't an easy way to import animation keyframes directly from your CSS. You had to re-define them in JS, using a completely different format. So I wrote a typed, spec-compliant library to convert from one to the other, letting you play your CSS-defined animations right in JS. Along the way, I also added some other useful utilities for working with the API.
22
22
 
23
23
  ## Installation
24
24
 
@@ -88,7 +88,7 @@ const rotateSmallAnimKeyframes = KeyframeKit.getStyleSheetKeyframes({
88
88
  });
89
89
  ```
90
90
 
91
- > Note: This won't resolve stylesheet `@import` rules. [More info.][3]
91
+ > Note: This won't resolve any `@import` rules in the stylesheet. [See here.][3]
92
92
 
93
93
  ### Defining animations in JS
94
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keyframekit",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Intuitive, powerful and performant tools for working with CSS animations in JavaScript.",
5
5
  "main": "./dist/KeyframeKit.js",
6
6
  "scripts": {