├── .babelrc ├── .babelrc.js ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .storybook ├── .babelrc ├── config.js ├── head.html └── webpack.config.js ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── SUMMARY.md ├── documentation ├── api_reference.md └── enter_leave_animations.md ├── flow-typed └── react-flip-move_v2.9.x-v2.10.x.js ├── karma.conf.js ├── package.json ├── rollup.config.js ├── src ├── CODE_TOUR.md ├── FlipMove.js ├── dom-manipulation.js ├── enter-leave-presets.js ├── error-messages.js ├── helpers.js ├── index.js ├── prop-converter.js └── typings.js ├── stories ├── appear-animations.stories.js ├── enter-leave-animations.stories.js ├── github-issues.stories.js ├── helpers │ ├── Controls.js │ ├── FlipMoveListItem.js │ ├── FlipMoveListItemLegacy.js │ └── FlipMoveWrapper.js ├── hooks.stories.js ├── invalid.stories.js ├── legacy.stories.js ├── misc.stories.js ├── primary.stories.js ├── sequencing.stories.js └── special-props.stories.js ├── test ├── helpers │ └── index.js └── index.spec.js ├── tslint.json ├── typings ├── react-flip-move.d.ts └── test.tsx ├── webpack.config.base.js ├── webpack.config.development.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["./.babelrc.js"] 3 | } 4 | -------------------------------------------------------------------------------- /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.babelrc" 3 | } 4 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.storybook/head.html -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /documentation/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/documentation/api_reference.md -------------------------------------------------------------------------------- /documentation/enter_leave_animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/documentation/enter_leave_animations.md -------------------------------------------------------------------------------- /flow-typed/react-flip-move_v2.9.x-v2.10.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/flow-typed/react-flip-move_v2.9.x-v2.10.x.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/CODE_TOUR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/CODE_TOUR.md -------------------------------------------------------------------------------- /src/FlipMove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/FlipMove.js -------------------------------------------------------------------------------- /src/dom-manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/dom-manipulation.js -------------------------------------------------------------------------------- /src/enter-leave-presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/enter-leave-presets.js -------------------------------------------------------------------------------- /src/error-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/error-messages.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/index.js -------------------------------------------------------------------------------- /src/prop-converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/prop-converter.js -------------------------------------------------------------------------------- /src/typings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/src/typings.js -------------------------------------------------------------------------------- /stories/appear-animations.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/appear-animations.stories.js -------------------------------------------------------------------------------- /stories/enter-leave-animations.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/enter-leave-animations.stories.js -------------------------------------------------------------------------------- /stories/github-issues.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/github-issues.stories.js -------------------------------------------------------------------------------- /stories/helpers/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/helpers/Controls.js -------------------------------------------------------------------------------- /stories/helpers/FlipMoveListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/helpers/FlipMoveListItem.js -------------------------------------------------------------------------------- /stories/helpers/FlipMoveListItemLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/helpers/FlipMoveListItemLegacy.js -------------------------------------------------------------------------------- /stories/helpers/FlipMoveWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/helpers/FlipMoveWrapper.js -------------------------------------------------------------------------------- /stories/hooks.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/hooks.stories.js -------------------------------------------------------------------------------- /stories/invalid.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/invalid.stories.js -------------------------------------------------------------------------------- /stories/legacy.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/legacy.stories.js -------------------------------------------------------------------------------- /stories/misc.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/misc.stories.js -------------------------------------------------------------------------------- /stories/primary.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/primary.stories.js -------------------------------------------------------------------------------- /stories/sequencing.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/sequencing.stories.js -------------------------------------------------------------------------------- /stories/special-props.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/stories/special-props.stories.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/react-flip-move.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/typings/react-flip-move.d.ts -------------------------------------------------------------------------------- /typings/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/typings/test.tsx -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/webpack.config.development.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshwcomeau/react-flip-move/HEAD/yarn.lock --------------------------------------------------------------------------------