Skip to content

Commit ca9a223

Browse files
committed
0.0.2
1 parent 4e67662 commit ca9a223

File tree

4 files changed

+27
-6
lines changed

4 files changed

+27
-6
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## 0.0.2 (2019-02-09)
2+
3+
4+
### Features
5+
6+
* **lottie:** check if platform is server and return ([4e67662](https://github.com/fivethree-team/lottie/commit/4e67662))
7+
* **lottie:** generate lottie lib ([e3c1039](https://github.com/fivethree-team/lottie/commit/e3c1039))
8+
* **lottie:** prepare lottie component ([7665d89](https://github.com/fivethree-team/lottie/commit/7665d89))
9+
10+
11+

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lottie",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"author": "Marc Stammerjohann",
55
"description": "Lottie Animation Component",
66
"keywords": [

projects/lottie/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fivethree/lottie",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Lottie Animation Component",
55
"keywords": [
66
"lottie",

src/app/home/home.page.html

+14-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,18 @@
77
</ion-header>
88

99
<ion-content padding>
10-
<ion-card>
11-
<fiv-lottie [params]="lottieParams" [width]="250" [height]="250" (animationCreated)=onAnimationCreated($event)>
12-
</fiv-lottie>
13-
</ion-card>
10+
<fiv-lottie [params]="lottieParams" [width]="250" [height]="250" (animationCreated)=onAnimationCreated($event)>
11+
</fiv-lottie>
12+
<ion-grid fixed>
13+
<ion-row>
14+
<ion-col size="12">
15+
<ion-card>
16+
<fiv-lottie [params]="lottieParams" [width]="250" [height]="250"
17+
(animationCreated)=onAnimationCreated($event)>
18+
</fiv-lottie>
19+
</ion-card>
20+
</ion-col>
21+
</ion-row>
22+
</ion-grid>
23+
1424
</ion-content>

0 commit comments

Comments
 (0)