Skip to content

Commit b4de1d0

Browse files
committed
Update version to 1.1.1
1 parent 781c3ed commit b4de1d0

File tree

5 files changed

+42
-17
lines changed

5 files changed

+42
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## [1.1.0] - 2020-04-11
9+
## [1.1.1] - 2020-04-19
10+
### Fixed
11+
- Fixed dependencies of the package.
12+
- Updated **README** for React projects using wrapper component instead.
13+
14+
## [1.1.0] - 2020-04-17
1015
### Added
1116
- Added `fromClassName` and `toClassName` props to be applied when the animation starts and ends respectively.
1217
- Added animations from [Animista](https://animista.net/).

package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@proyecto26/animatable-component",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"private": false,
55
"description": "Animate once, use Everywhere! 💫",
66
"author": "Proyecto 26",
@@ -27,13 +27,14 @@
2727
"lint": "eslint src/**/*{.ts,.tsx}"
2828
},
2929
"devDependencies": {
30-
"@stencil/core": "^1.12.4",
30+
"@stencil/core": "^1.12.5",
3131
"@stencil/eslint-plugin": "^0.3.1",
3232
"@typescript-eslint/eslint-plugin": "^2.28.0",
3333
"@typescript-eslint/parser": "^2.28.0",
3434
"eslint": "^6.8.0",
3535
"eslint-plugin-react": "^7.19.0",
36-
"gh-pages": "^2.2.0"
36+
"gh-pages": "^2.2.0",
37+
"@stencil/react-output-target": "0.0.4"
3738
},
3839
"license": "MIT",
3940
"repository": {
@@ -46,24 +47,38 @@
4647
"keywords": [
4748
"animatable",
4849
"component",
50+
"stenciljs",
4951
"stencil",
5052
"angular",
5153
"react",
5254
"vue",
53-
"ux",
55+
"vanillajs",
56+
"pwa",
57+
"progressive-web-app",
58+
"progressive-web-apps",
59+
"progressive web app",
60+
"progressive web apps",
5461
"web-component",
5562
"web-components",
5663
"web component",
5764
"web components",
5865
"animate",
66+
"keyframes",
67+
"easing",
68+
"easing-functions",
69+
"easing functions",
5970
"animations",
60-
"declarative",
6171
"web-animations",
6272
"web-animations-api",
6373
"web animations",
64-
"web animations api"
65-
],
66-
"dependencies": {
67-
"@stencil/react-output-target": "0.0.4"
68-
}
74+
"web animations api",
75+
"waapi",
76+
"mobile",
77+
"desktop",
78+
"electron",
79+
"gsap",
80+
"ux",
81+
"user experience",
82+
"webcomponents"
83+
]
6984
}

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const easingOutCubic = EASING_FUNCTIONS[EASING.EASE_OUT_CUBIC];
9898

9999
### Script tag
100100

101-
- Put a script tag similar to this `<script src='https://unpkg.com/animatable-component@1.0.2/dist/animatable-component.js'></script>` in the head of your index.html
101+
- Put a script tag similar to this `<script src='https://unpkg.com/animatable-component@1.1.1/dist/animatable-component.js'></script>` in the head of your index.html
102102
- Then you can use the element anywhere in your template, JSX, html etc
103103

104104
### Node Modules

src/animations/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ export const KEYFRAMES = {
1010
...ANIMISTA,
1111
} as const;
1212

13+
/**
14+
* Get the keyframes of the animation
15+
* @param animation - Name of the animation.
16+
*/
1317
export function getKeyFramesByAnimation (animation: AnimationsType) {
1418
const keyFrames = KEYFRAMES[animation];
1519
if (keyFrames !== undefined) {

0 commit comments

Comments
 (0)