├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc ├── .yarnrc.yml ├── LICENSE ├── README.md ├── example ├── README.md ├── favicon.ico ├── index.html ├── manifest.json ├── package.json ├── public │ └── 26514-check-success-animation.json ├── src │ ├── 26514-check-success-animation.json │ ├── App.jsx │ ├── Test.jsx │ ├── index.css │ └── index.jsx ├── vite.config.js └── yarn.lock ├── package.json ├── screenshot.png ├── src ├── LottiePlayer.js ├── LottiePlayer.test.js ├── LottiePlayerLight.d.ts ├── LottiePlayerLight.js ├── __image_snapshots__ │ ├── lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-animation-data-1-snap.png │ ├── lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-path-1-snap.png │ ├── lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-animation-data-1-snap.png │ └── lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-path-1-snap.png ├── index.d.ts └── makeLottiePlayer.js ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/README.md -------------------------------------------------------------------------------- /example/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/favicon.ico -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/index.html -------------------------------------------------------------------------------- /example/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/manifest.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/26514-check-success-animation.json: -------------------------------------------------------------------------------- 1 | ../src/26514-check-success-animation.json -------------------------------------------------------------------------------- /example/src/26514-check-success-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/src/26514-check-success-animation.json -------------------------------------------------------------------------------- /example/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/src/App.jsx -------------------------------------------------------------------------------- /example/src/Test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/src/Test.jsx -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/src/index.jsx -------------------------------------------------------------------------------- /example/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/vite.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/LottiePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/LottiePlayer.js -------------------------------------------------------------------------------- /src/LottiePlayer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/LottiePlayer.test.js -------------------------------------------------------------------------------- /src/LottiePlayerLight.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/LottiePlayerLight.d.ts -------------------------------------------------------------------------------- /src/LottiePlayerLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/LottiePlayerLight.js -------------------------------------------------------------------------------- /src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-animation-data-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-animation-data-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-path-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-light-renders-with-path-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-animation-data-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-animation-data-1-snap.png -------------------------------------------------------------------------------- /src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-path-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/__image_snapshots__/lottie-player-test-js-lottie-player-screenshots-lottie-player-main-renders-with-path-1-snap.png -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/makeLottiePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/src/makeLottiePlayer.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mifi/react-lottie-player/HEAD/yarn.lock --------------------------------------------------------------------------------