├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example-assets ├── 2squares.gif ├── broken_flip.png ├── browserstack.png ├── compressed-demo.gif ├── corrected_flip.png ├── debugging_flip.gif ├── dropdown.gif ├── enter-exit.gif ├── enter-update-delete.gif ├── list-transition.gif ├── listanimations.gif ├── listshuffle.gif ├── nested-example.gif ├── photogrid.gif ├── rft-logo.gif ├── shrug.png ├── sort-filter.gif ├── spring-options.gif ├── spring.gif ├── square.gif ├── stripe-menu.gif ├── swipe-simple.gif └── swipe.gif ├── package.json ├── packages ├── flip-toolkit │ ├── .babelrc │ ├── @types │ │ └── rematrix.d.ts │ ├── README.md │ ├── mocha │ │ ├── test-set-up.js │ │ ├── testrunner.html │ │ └── tests.js │ ├── package.json │ ├── src │ │ ├── Flipper.ts │ │ ├── Spring │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── constants.ts │ │ ├── flip │ │ │ ├── animateFlippedElements │ │ │ │ ├── __tests__ │ │ │ │ │ ├── animateFlippedElements.domtest.js │ │ │ │ │ ├── applyStyles.domtest.js │ │ │ │ │ ├── matrix.test.ts │ │ │ │ │ └── rectInViewport.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── spring │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ └── spring.test.js │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── animateUnflippedElements │ │ │ │ ├── animateUnflippedElements.domtest.js │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── getFlippedElementPositions │ │ │ │ ├── getFlippedElementPositions.domtest.js │ │ │ │ ├── getFlippedElementPositionsAfterUpdate │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── getFlippedElementPositionsBeforeUpdate │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── types.ts │ │ │ │ └── utilities.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── forked-rebound │ │ │ ├── Loopers.js │ │ │ ├── README.md │ │ │ ├── Spring.js │ │ │ ├── SpringConfig.js │ │ │ ├── SpringSystem.js │ │ │ ├── index.js │ │ │ ├── onFrame.js │ │ │ ├── types.d.ts │ │ │ ├── types.ts │ │ │ └── util.js │ │ ├── index.ts │ │ ├── springSettings │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── utilities │ │ │ ├── index.ts │ │ │ ├── tweenProp.test.ts │ │ │ └── types.ts │ ├── test │ │ ├── index.html │ │ └── index.js │ └── tsconfig.json └── react-flip-toolkit │ ├── .babelrc │ ├── demo │ ├── CardsExample │ │ ├── Card.js │ │ ├── FocusedUser.js │ │ ├── UserGrid.js │ │ ├── index.js │ │ ├── styles.css │ │ └── userData.json │ ├── FancyDrawerSwipe │ │ └── index.js │ ├── FlipMove │ │ ├── Card.js │ │ ├── index.css │ │ └── index.js │ ├── GestureArticleSwipe │ │ └── index.js │ ├── GestureCardSwipe │ │ └── index.js │ ├── GestureSidebarExample │ │ ├── assets │ │ │ └── nighttime.jpg │ │ ├── index.js │ │ └── styles.css │ ├── GestureSidebarRightExample │ │ └── index.js │ ├── GestureStaggeredList │ │ ├── index.js │ │ └── styles.css │ ├── GuitarsExample │ │ ├── 200.html │ │ ├── GuitarItem.js │ │ ├── README.md │ │ ├── SelectedGuitar.js │ │ ├── css │ │ │ └── base.css │ │ ├── favicon.ico │ │ ├── guitarsData.js │ │ ├── img │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── electric-guitar.svg │ │ │ └── related │ │ │ │ ├── GridItemAnimation.jpg │ │ │ │ └── ImageGridEffects.png │ │ ├── index.html │ │ ├── index.js │ │ └── pater │ │ │ ├── pater.css │ │ │ └── storyblocks.jpg │ ├── HandleEnterUpdateDelete │ │ ├── getRandomList.js │ │ ├── index.js │ │ └── styles.css │ ├── ListExample │ │ ├── index.css │ │ └── index.js │ ├── NestedFlipper │ │ ├── index.css │ │ └── index.js │ ├── PhotoGridExample │ │ ├── assets │ │ │ ├── detail-1.jpg │ │ │ ├── detail-5.jpg │ │ │ ├── detail-6.jpg │ │ │ └── detail-8.jpg │ │ ├── index.css │ │ └── index.js │ ├── PortalExample │ │ ├── IconGrid │ │ │ ├── Modal.js │ │ │ └── index.js │ │ ├── assets │ │ │ ├── creative │ │ │ │ ├── art_palette.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── device.svg │ │ │ │ └── fountain_pen.svg │ │ │ └── environment │ │ │ │ ├── bio_energy.svg │ │ │ │ ├── eco_friendly_vehicle.svg │ │ │ │ ├── electronic_recycling.svg │ │ │ │ ├── energy_saving_lightbulb.svg │ │ │ │ └── global_warming.svg │ │ ├── index.js │ │ └── styles.css │ ├── RemountedFlipperExample │ │ └── index.js │ ├── RotateExample │ │ ├── index.css │ │ └── index.js │ ├── SidebarExample │ │ ├── assets │ │ │ └── nighttime.jpg │ │ ├── index.js │ │ └── styles.css │ ├── StaggeredList │ │ ├── index.js │ │ └── styles.css │ ├── TransformExample │ │ ├── index.js │ │ └── styles.css │ ├── TransformExampleExitingParent │ │ ├── index.js │ │ └── styles.css │ ├── TransformFromZeroExample │ │ ├── index.js │ │ └── styles.css │ ├── ZeroJumpExample │ │ └── index.js │ ├── assets │ │ └── dogs │ │ │ ├── australian-shepard.jpg │ │ │ ├── black-doodle.jpg │ │ │ ├── border-collie.jpg │ │ │ ├── charles-451760-unsplash.jpg │ │ │ ├── corgi.jpg │ │ │ ├── fredrik-ohlander-520696-unsplash.jpg │ │ │ ├── french-bulldog.jpg │ │ │ ├── friends.jpg │ │ │ ├── golden-with-flower.jpg │ │ │ ├── husky.jpg │ │ │ ├── ian-dooley-325434-unsplash.jpg │ │ │ ├── ipet-photo-1316903-unsplash.jpg │ │ │ ├── oscar-sutton-719939-unsplash.jpg │ │ │ ├── pug.jpg │ │ │ └── samoyed.jpg │ ├── index.html │ └── index.js │ ├── package.json │ ├── src │ ├── ExitContainer │ │ └── index.tsx │ ├── Flipped │ │ ├── Flipped.test.tsx │ │ └── index.tsx │ ├── Flipper │ │ ├── Flipper.test.tsx │ │ ├── context.ts │ │ └── index.tsx │ ├── Spring │ │ └── index.ts │ └── index.ts │ └── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /example-assets/2squares.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/2squares.gif -------------------------------------------------------------------------------- /example-assets/broken_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/broken_flip.png -------------------------------------------------------------------------------- /example-assets/browserstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/browserstack.png -------------------------------------------------------------------------------- /example-assets/compressed-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/compressed-demo.gif -------------------------------------------------------------------------------- /example-assets/corrected_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/corrected_flip.png -------------------------------------------------------------------------------- /example-assets/debugging_flip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/debugging_flip.gif -------------------------------------------------------------------------------- /example-assets/dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/dropdown.gif -------------------------------------------------------------------------------- /example-assets/enter-exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/enter-exit.gif -------------------------------------------------------------------------------- /example-assets/enter-update-delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/enter-update-delete.gif -------------------------------------------------------------------------------- /example-assets/list-transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/list-transition.gif -------------------------------------------------------------------------------- /example-assets/listanimations.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/listanimations.gif -------------------------------------------------------------------------------- /example-assets/listshuffle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/listshuffle.gif -------------------------------------------------------------------------------- /example-assets/nested-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/nested-example.gif -------------------------------------------------------------------------------- /example-assets/photogrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/photogrid.gif -------------------------------------------------------------------------------- /example-assets/rft-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/rft-logo.gif -------------------------------------------------------------------------------- /example-assets/shrug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/shrug.png -------------------------------------------------------------------------------- /example-assets/sort-filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/sort-filter.gif -------------------------------------------------------------------------------- /example-assets/spring-options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/spring-options.gif -------------------------------------------------------------------------------- /example-assets/spring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/spring.gif -------------------------------------------------------------------------------- /example-assets/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/square.gif -------------------------------------------------------------------------------- /example-assets/stripe-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/stripe-menu.gif -------------------------------------------------------------------------------- /example-assets/swipe-simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/swipe-simple.gif -------------------------------------------------------------------------------- /example-assets/swipe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/example-assets/swipe.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /packages/flip-toolkit/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/.babelrc -------------------------------------------------------------------------------- /packages/flip-toolkit/@types/rematrix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/@types/rematrix.d.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/README.md -------------------------------------------------------------------------------- /packages/flip-toolkit/mocha/test-set-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/mocha/test-set-up.js -------------------------------------------------------------------------------- /packages/flip-toolkit/mocha/testrunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/mocha/testrunner.html -------------------------------------------------------------------------------- /packages/flip-toolkit/mocha/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/mocha/tests.js -------------------------------------------------------------------------------- /packages/flip-toolkit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/package.json -------------------------------------------------------------------------------- /packages/flip-toolkit/src/Flipper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/Flipper.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/Spring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/Spring/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/Spring/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/Spring/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/constants.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/animateFlippedElements.domtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/animateFlippedElements.domtest.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/applyStyles.domtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/applyStyles.domtest.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/matrix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/matrix.test.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/rectInViewport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/__tests__/rectInViewport.test.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/spring/__tests__/spring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/spring/__tests__/spring.test.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/spring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/spring/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateFlippedElements/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateFlippedElements/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateUnflippedElements/animateUnflippedElements.domtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateUnflippedElements/animateUnflippedElements.domtest.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateUnflippedElements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateUnflippedElements/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/animateUnflippedElements/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/animateUnflippedElements/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositions.domtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositions.domtest.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsAfterUpdate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsAfterUpdate/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsAfterUpdate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsAfterUpdate/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsBeforeUpdate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsBeforeUpdate/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsBeforeUpdate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/getFlippedElementPositionsBeforeUpdate/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/getFlippedElementPositions/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/getFlippedElementPositions/utilities.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/flip/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/flip/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/Loopers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/Loopers.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/README.md -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/Spring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/Spring.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/SpringConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/SpringConfig.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/SpringSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/SpringSystem.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/index.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/onFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/onFrame.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/types.d.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/forked-rebound/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/forked-rebound/util.js -------------------------------------------------------------------------------- /packages/flip-toolkit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/springSettings/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/springSettings/index.test.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/springSettings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/springSettings/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/springSettings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/springSettings/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/types.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/utilities/index.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/utilities/tweenProp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/src/utilities/tweenProp.test.ts -------------------------------------------------------------------------------- /packages/flip-toolkit/src/utilities/types.ts: -------------------------------------------------------------------------------- 1 | export type IndexableObject = Record 2 | -------------------------------------------------------------------------------- /packages/flip-toolkit/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/test/index.html -------------------------------------------------------------------------------- /packages/flip-toolkit/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/test/index.js -------------------------------------------------------------------------------- /packages/flip-toolkit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/flip-toolkit/tsconfig.json -------------------------------------------------------------------------------- /packages/react-flip-toolkit/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/.babelrc -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/Card.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/FocusedUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/FocusedUser.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/UserGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/UserGrid.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/CardsExample/userData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/CardsExample/userData.json -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/FancyDrawerSwipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/FancyDrawerSwipe/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/FlipMove/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/FlipMove/Card.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/FlipMove/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/FlipMove/index.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/FlipMove/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/FlipMove/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureArticleSwipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureArticleSwipe/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureCardSwipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureCardSwipe/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureSidebarExample/assets/nighttime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureSidebarExample/assets/nighttime.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureSidebarExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureSidebarExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureSidebarExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureSidebarExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureSidebarRightExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureSidebarRightExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureStaggeredList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureStaggeredList/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GestureStaggeredList/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GestureStaggeredList/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/200.html -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/GuitarItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/GuitarItem.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/README.md -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/SelectedGuitar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/SelectedGuitar.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/css/base.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/favicon.ico -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/guitarsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/guitarsData.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/1.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/10.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/2.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/3.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/4.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/5.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/6.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/7.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/8.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/9.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/electric-guitar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/electric-guitar.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/related/GridItemAnimation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/related/GridItemAnimation.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/img/related/ImageGridEffects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/img/related/ImageGridEffects.png -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/index.html -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/pater/pater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/pater/pater.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/GuitarsExample/pater/storyblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/GuitarsExample/pater/storyblocks.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/getRandomList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/getRandomList.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/HandleEnterUpdateDelete/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/ListExample/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/ListExample/index.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/ListExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/ListExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/NestedFlipper/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/NestedFlipper/index.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/NestedFlipper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/NestedFlipper/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-1.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-5.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-6.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/assets/detail-8.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/index.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PhotoGridExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PhotoGridExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/IconGrid/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/IconGrid/Modal.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/IconGrid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/IconGrid/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/creative/art_palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/creative/art_palette.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/creative/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/creative/brush.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/creative/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/creative/coffee.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/creative/device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/creative/device.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/creative/fountain_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/creative/fountain_pen.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/environment/bio_energy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/environment/bio_energy.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/environment/eco_friendly_vehicle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/environment/eco_friendly_vehicle.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/environment/electronic_recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/environment/electronic_recycling.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/environment/energy_saving_lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/environment/energy_saving_lightbulb.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/assets/environment/global_warming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/assets/environment/global_warming.svg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/PortalExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/PortalExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/RemountedFlipperExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/RemountedFlipperExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/RotateExample/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/RotateExample/index.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/RotateExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/RotateExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/SidebarExample/assets/nighttime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/SidebarExample/assets/nighttime.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/SidebarExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/SidebarExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/SidebarExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/SidebarExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/StaggeredList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/StaggeredList/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/StaggeredList/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/StaggeredList/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformExampleExitingParent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformExampleExitingParent/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformExampleExitingParent/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformExampleExitingParent/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformFromZeroExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformFromZeroExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/TransformFromZeroExample/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/TransformFromZeroExample/styles.css -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/ZeroJumpExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/ZeroJumpExample/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/australian-shepard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/australian-shepard.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/black-doodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/black-doodle.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/border-collie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/border-collie.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/charles-451760-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/charles-451760-unsplash.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/corgi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/corgi.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/fredrik-ohlander-520696-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/fredrik-ohlander-520696-unsplash.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/french-bulldog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/french-bulldog.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/friends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/friends.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/golden-with-flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/golden-with-flower.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/husky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/husky.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/ian-dooley-325434-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/ian-dooley-325434-unsplash.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/ipet-photo-1316903-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/ipet-photo-1316903-unsplash.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/oscar-sutton-719939-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/oscar-sutton-719939-unsplash.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/pug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/pug.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/assets/dogs/samoyed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/assets/dogs/samoyed.jpg -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/index.html -------------------------------------------------------------------------------- /packages/react-flip-toolkit/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/demo/index.js -------------------------------------------------------------------------------- /packages/react-flip-toolkit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/package.json -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/ExitContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/ExitContainer/index.tsx -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Flipped/Flipped.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Flipped/Flipped.test.tsx -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Flipped/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Flipped/index.tsx -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Flipper/Flipper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Flipper/Flipper.test.tsx -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Flipper/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Flipper/context.ts -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Flipper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Flipper/index.tsx -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/Spring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/Spring/index.ts -------------------------------------------------------------------------------- /packages/react-flip-toolkit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/src/index.ts -------------------------------------------------------------------------------- /packages/react-flip-toolkit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/packages/react-flip-toolkit/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aholachek/react-flip-toolkit/HEAD/yarn.lock --------------------------------------------------------------------------------