├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── eslint.config.mjs ├── lib └── AnimateChildren │ ├── .changeset │ ├── README.md │ └── config.json │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── dist │ ├── index.d.ts │ └── index.js │ ├── draft │ └── index2.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── readme.md │ ├── script │ └── prebuild.js │ ├── src │ ├── flatMap.ts │ ├── helper.ts │ ├── index.ts │ ├── ref.tsx │ └── useRefMap.ts │ └── tsconfig.json ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── grid.svg └── logo.svg ├── src ├── app │ ├── (home) │ │ ├── assets.tsx │ │ ├── client.tsx │ │ ├── example.accordion.tsx │ │ ├── example.apikeys.tsx │ │ ├── example.formbuilder.tsx │ │ ├── example.gallery.tsx │ │ ├── example.multistep.tsx │ │ ├── example.notifications.tsx │ │ ├── example.playlist.tsx │ │ ├── example.title.tsx │ │ ├── layout.tsx │ │ ├── marketing │ │ │ └── page.tsx │ │ └── page.tsx │ ├── (integration) │ │ ├── heroui │ │ │ ├── opengraph-image.png │ │ │ └── page.tsx │ │ ├── mantine │ │ │ ├── opengraph-image.png │ │ │ └── page.tsx │ │ └── shadcn-ui │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── opengraph-image.png │ │ │ └── page.tsx │ ├── (tests) │ │ ├── children-test-2 │ │ │ ├── client.tsx │ │ │ └── page.tsx │ │ ├── children-test │ │ │ ├── ProcessChildren.tsx │ │ │ ├── client.tsx │ │ │ ├── page.tsx │ │ │ └── server.tsx │ │ ├── closure-test │ │ │ └── page.tsx │ │ ├── forwardref-test │ │ │ └── page.tsx │ │ ├── test-server │ │ │ ├── page.tsx │ │ │ └── promiseTest.tsx │ │ └── viewtransitiontest │ │ │ └── page.tsx │ ├── (updates) │ │ ├── code.tsx │ │ ├── shared.tsx │ │ ├── v0.0.12 │ │ │ └── page.tsx │ │ └── v0.1.1 │ │ │ └── page.tsx │ ├── chat │ │ └── page.tsx │ ├── code │ │ ├── client.tsx │ │ └── page.tsx │ ├── codeToken.ts │ ├── docs │ │ ├── opengraph-image.png │ │ ├── page.tsx │ │ └── ui │ │ │ ├── Sidebar.tsx │ │ │ ├── code.tsx │ │ │ └── document.tsx │ ├── favicon.png │ ├── globals.css │ ├── home-old │ │ ├── client.tsx │ │ ├── examples │ │ │ ├── apps.tsx │ │ │ └── notifications.tsx │ │ ├── homeui │ │ │ └── button.tsx │ │ └── page.tsx │ ├── icon.png │ ├── layout.tsx │ ├── lib │ │ ├── AnimateChildren.tsx │ │ ├── helper.tsx │ │ └── npm.ts │ ├── opengraph-image.png │ ├── playground │ │ ├── client.tsx │ │ ├── opengraph-image.png │ │ ├── page.tsx │ │ ├── react-easy-flip.tsx │ │ └── transform.tsx │ ├── test-stress │ │ ├── client.tsx │ │ └── page.tsx │ └── ui │ │ ├── AnimateCode.tsx │ │ ├── AutoAnimate.tsx │ │ ├── Background.tsx │ │ ├── Button.tsx │ │ ├── DragArea.tsx │ │ ├── Footer.tsx │ │ ├── Keyboard.tsx │ │ ├── Outro.tsx │ │ ├── Reorder.tsx │ │ ├── Reorder2.tsx │ │ ├── Reorder3.tsx │ │ ├── Reorder4.tsx │ │ ├── Tabs.tsx │ │ ├── ViewTransition.tsx │ │ └── backcard.png └── assets │ └── icon.svg ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=*@heroui/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/AnimateChildren/.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/.changeset/README.md -------------------------------------------------------------------------------- /lib/AnimateChildren/.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/.changeset/config.json -------------------------------------------------------------------------------- /lib/AnimateChildren/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .parcel-cache 3 | package/ 4 | dist-src/ 5 | *.tgz 6 | -------------------------------------------------------------------------------- /lib/AnimateChildren/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/.npmignore -------------------------------------------------------------------------------- /lib/AnimateChildren/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/CHANGELOG.md -------------------------------------------------------------------------------- /lib/AnimateChildren/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/LICENSE -------------------------------------------------------------------------------- /lib/AnimateChildren/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/dist/index.d.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/dist/index.js -------------------------------------------------------------------------------- /lib/AnimateChildren/draft/index2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/draft/index2.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/package.json -------------------------------------------------------------------------------- /lib/AnimateChildren/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/pnpm-lock.yaml -------------------------------------------------------------------------------- /lib/AnimateChildren/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/readme.md -------------------------------------------------------------------------------- /lib/AnimateChildren/script/prebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/script/prebuild.js -------------------------------------------------------------------------------- /lib/AnimateChildren/src/flatMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/src/flatMap.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/src/helper.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/src/index.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/src/ref.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/src/ref.tsx -------------------------------------------------------------------------------- /lib/AnimateChildren/src/useRefMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/src/useRefMap.ts -------------------------------------------------------------------------------- /lib/AnimateChildren/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/lib/AnimateChildren/tsconfig.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/public/grid.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/public/logo.svg -------------------------------------------------------------------------------- /src/app/(home)/assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/assets.tsx -------------------------------------------------------------------------------- /src/app/(home)/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/client.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.accordion.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.apikeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.apikeys.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.formbuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.formbuilder.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.gallery.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.multistep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.multistep.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.notifications.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.playlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.playlist.tsx -------------------------------------------------------------------------------- /src/app/(home)/example.title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/example.title.tsx -------------------------------------------------------------------------------- /src/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/layout.tsx -------------------------------------------------------------------------------- /src/app/(home)/marketing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/marketing/page.tsx -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/(integration)/heroui/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/heroui/opengraph-image.png -------------------------------------------------------------------------------- /src/app/(integration)/heroui/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/heroui/page.tsx -------------------------------------------------------------------------------- /src/app/(integration)/mantine/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/mantine/opengraph-image.png -------------------------------------------------------------------------------- /src/app/(integration)/mantine/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/mantine/page.tsx -------------------------------------------------------------------------------- /src/app/(integration)/shadcn-ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/shadcn-ui/button.tsx -------------------------------------------------------------------------------- /src/app/(integration)/shadcn-ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/shadcn-ui/card.tsx -------------------------------------------------------------------------------- /src/app/(integration)/shadcn-ui/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/shadcn-ui/opengraph-image.png -------------------------------------------------------------------------------- /src/app/(integration)/shadcn-ui/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(integration)/shadcn-ui/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test-2/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test-2/client.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test-2/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test-2/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test/ProcessChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test/ProcessChildren.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test/client.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/children-test/server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/children-test/server.tsx -------------------------------------------------------------------------------- /src/app/(tests)/closure-test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/closure-test/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/forwardref-test/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/forwardref-test/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/test-server/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/test-server/page.tsx -------------------------------------------------------------------------------- /src/app/(tests)/test-server/promiseTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/test-server/promiseTest.tsx -------------------------------------------------------------------------------- /src/app/(tests)/viewtransitiontest/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(tests)/viewtransitiontest/page.tsx -------------------------------------------------------------------------------- /src/app/(updates)/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(updates)/code.tsx -------------------------------------------------------------------------------- /src/app/(updates)/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(updates)/shared.tsx -------------------------------------------------------------------------------- /src/app/(updates)/v0.0.12/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(updates)/v0.0.12/page.tsx -------------------------------------------------------------------------------- /src/app/(updates)/v0.1.1/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/(updates)/v0.1.1/page.tsx -------------------------------------------------------------------------------- /src/app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/chat/page.tsx -------------------------------------------------------------------------------- /src/app/code/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/code/client.tsx -------------------------------------------------------------------------------- /src/app/code/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/code/page.tsx -------------------------------------------------------------------------------- /src/app/codeToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/codeToken.ts -------------------------------------------------------------------------------- /src/app/docs/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/docs/opengraph-image.png -------------------------------------------------------------------------------- /src/app/docs/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/docs/page.tsx -------------------------------------------------------------------------------- /src/app/docs/ui/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/docs/ui/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/docs/ui/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/docs/ui/code.tsx -------------------------------------------------------------------------------- /src/app/docs/ui/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/docs/ui/document.tsx -------------------------------------------------------------------------------- /src/app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/favicon.png -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/home-old/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/home-old/client.tsx -------------------------------------------------------------------------------- /src/app/home-old/examples/apps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/home-old/examples/apps.tsx -------------------------------------------------------------------------------- /src/app/home-old/examples/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/home-old/examples/notifications.tsx -------------------------------------------------------------------------------- /src/app/home-old/homeui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/home-old/homeui/button.tsx -------------------------------------------------------------------------------- /src/app/home-old/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/home-old/page.tsx -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/lib/AnimateChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/lib/AnimateChildren.tsx -------------------------------------------------------------------------------- /src/app/lib/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/lib/helper.tsx -------------------------------------------------------------------------------- /src/app/lib/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/lib/npm.ts -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/playground/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/playground/client.tsx -------------------------------------------------------------------------------- /src/app/playground/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/playground/opengraph-image.png -------------------------------------------------------------------------------- /src/app/playground/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/playground/page.tsx -------------------------------------------------------------------------------- /src/app/playground/react-easy-flip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/playground/react-easy-flip.tsx -------------------------------------------------------------------------------- /src/app/playground/transform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/playground/transform.tsx -------------------------------------------------------------------------------- /src/app/test-stress/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/test-stress/client.tsx -------------------------------------------------------------------------------- /src/app/test-stress/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/test-stress/page.tsx -------------------------------------------------------------------------------- /src/app/ui/AnimateCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/AnimateCode.tsx -------------------------------------------------------------------------------- /src/app/ui/AutoAnimate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/AutoAnimate.tsx -------------------------------------------------------------------------------- /src/app/ui/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Background.tsx -------------------------------------------------------------------------------- /src/app/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Button.tsx -------------------------------------------------------------------------------- /src/app/ui/DragArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/DragArea.tsx -------------------------------------------------------------------------------- /src/app/ui/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Footer.tsx -------------------------------------------------------------------------------- /src/app/ui/Keyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Keyboard.tsx -------------------------------------------------------------------------------- /src/app/ui/Outro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Outro.tsx -------------------------------------------------------------------------------- /src/app/ui/Reorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Reorder.tsx -------------------------------------------------------------------------------- /src/app/ui/Reorder2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Reorder2.tsx -------------------------------------------------------------------------------- /src/app/ui/Reorder3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Reorder3.tsx -------------------------------------------------------------------------------- /src/app/ui/Reorder4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Reorder4.tsx -------------------------------------------------------------------------------- /src/app/ui/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/Tabs.tsx -------------------------------------------------------------------------------- /src/app/ui/ViewTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/ViewTransition.tsx -------------------------------------------------------------------------------- /src/app/ui/backcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/app/ui/backcard.png -------------------------------------------------------------------------------- /src/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/src/assets/icon.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfonsusac/react-flip-children/HEAD/tsconfig.json --------------------------------------------------------------------------------