├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .scripts ├── get_gh_pages_url.js ├── mocha_runner.js ├── prepublish.sh ├── publish_storybook.sh └── user │ ├── prepublish.sh │ └── pretest.js ├── .storybook ├── config.js └── head.html ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images ├── ae_layer.png ├── lottie.png └── react.png ├── index.d.ts ├── package.json ├── src ├── index.js ├── stories │ ├── TransitionLoop.js │ ├── TransitionWithOptions.js │ ├── TwitterHeart.json │ ├── beating-heart.json │ ├── index.js │ ├── lottie-control-segments.js │ ├── lottie-control.js │ ├── pinjump.json │ └── toggle-like.js └── tests │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-app"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .idea 4 | dist 5 | .out 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .babelrc 3 | -------------------------------------------------------------------------------- /.scripts/get_gh_pages_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.scripts/get_gh_pages_url.js -------------------------------------------------------------------------------- /.scripts/mocha_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.scripts/mocha_runner.js -------------------------------------------------------------------------------- /.scripts/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.scripts/prepublish.sh -------------------------------------------------------------------------------- /.scripts/publish_storybook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.scripts/publish_storybook.sh -------------------------------------------------------------------------------- /.scripts/user/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.scripts/user/prepublish.sh -------------------------------------------------------------------------------- /.scripts/user/pretest.js: -------------------------------------------------------------------------------- 1 | // Use this file to setup any test utilities. 2 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/.storybook/head.html -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/README.md -------------------------------------------------------------------------------- /images/ae_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/images/ae_layer.png -------------------------------------------------------------------------------- /images/lottie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/images/lottie.png -------------------------------------------------------------------------------- /images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/images/react.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/index.js -------------------------------------------------------------------------------- /src/stories/TransitionLoop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/TransitionLoop.js -------------------------------------------------------------------------------- /src/stories/TransitionWithOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/TransitionWithOptions.js -------------------------------------------------------------------------------- /src/stories/TwitterHeart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/TwitterHeart.json -------------------------------------------------------------------------------- /src/stories/beating-heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/beating-heart.json -------------------------------------------------------------------------------- /src/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/index.js -------------------------------------------------------------------------------- /src/stories/lottie-control-segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/lottie-control-segments.js -------------------------------------------------------------------------------- /src/stories/lottie-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/lottie-control.js -------------------------------------------------------------------------------- /src/stories/pinjump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/pinjump.json -------------------------------------------------------------------------------- /src/stories/toggle-like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/stories/toggle-like.js -------------------------------------------------------------------------------- /src/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/src/tests/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felippenardi/lottie-react-web/HEAD/yarn.lock --------------------------------------------------------------------------------