keyframekit 1.1.0 → 1.1.1
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 +2 -2
- package/docs/.vitepress/config.ts +1 -1
- package/docs/docs/index.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# <img src="/docs/docs/public/icon.png" width="30px" height="40px"> [KeyframeKit][1]
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Unlock fine-grained control over your CSS animations with JavaScript.
|
|
4
4
|
|
|
5
5
|
## About
|
|
6
6
|
|
|
7
|
-
While working with the [Web Animations API][2], 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.
|
|
7
|
+
While working with the [Web Animations API][2], 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. [Read more.][3]
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -33,7 +33,7 @@ export default defineConfig({
|
|
|
33
33
|
],
|
|
34
34
|
|
|
35
35
|
title: "KeyframeKit",
|
|
36
|
-
description: "
|
|
36
|
+
description: "Unlock fine-grained control over your CSS animations with JavaScript.",
|
|
37
37
|
|
|
38
38
|
themeConfig: {
|
|
39
39
|
outline: [2, 3],
|
package/docs/docs/index.md
CHANGED
|
@@ -4,7 +4,7 @@ layout: home
|
|
|
4
4
|
|
|
5
5
|
hero:
|
|
6
6
|
name: KeyframeKit
|
|
7
|
-
tagline:
|
|
7
|
+
tagline: Unlock fine-grained control over your CSS animations with JavaScript.
|
|
8
8
|
actions:
|
|
9
9
|
- theme: brand
|
|
10
10
|
text: Get Started
|
|
@@ -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 from one to the other, letting you play your CSS-defined animations right in JS.
|
|
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. [Read more.][2]
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "keyframekit",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Unlock fine-grained control over your CSS animations with JavaScript.",
|
|
5
5
|
"main": "./dist/KeyframeKit.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "npx tsc",
|