├── .autorc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── .prettierrc.js ├── .yarn └── install-state.gz ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── banner.png └── banner2.png ├── babel.config.js ├── docs ├── .gitignore ├── .yarn │ ├── install-state.gz │ └── releases │ │ └── yarn-4.1.0.cjs ├── .yarnrc.yml ├── README.md ├── babel.config.js ├── docs-samples │ ├── doc1.md │ ├── doc2.md │ ├── doc3.md │ └── mdx.md ├── docs │ ├── animate-presence.md │ ├── animations-overview.md │ ├── animations-repeat.md │ ├── animations-sequence.md │ ├── api │ │ ├── components.md │ │ ├── motify-svg.md │ │ ├── motify.md │ │ ├── props.md │ │ └── transforms.md │ ├── examples │ │ ├── action-menu.md │ │ ├── animate-presence.md │ │ ├── auto-height.md │ │ ├── dropdown.md │ │ ├── exit-before-enter.md │ │ ├── hello-world.md │ │ ├── image-gallery.md │ │ ├── loop.md │ │ ├── menu-icon.md │ │ ├── skeleton.md │ │ └── variants.md │ ├── hello-world.md │ ├── hooks │ │ ├── use-animation-state.md │ │ └── use-dynamic-animation.md │ ├── index.mdx │ ├── installation.md │ ├── interactions │ │ ├── eslint.md │ │ ├── merge.md │ │ ├── overview.mdx │ │ ├── pressable.md │ │ ├── use-pressable-animated-props.md │ │ ├── use-pressable-interpolate.md │ │ ├── use-pressable-transition.md │ │ ├── use-pressable.md │ │ └── use-pressables.md │ ├── next-js.md │ ├── reanimated.md │ ├── resources │ │ └── videos.md │ ├── skeleton.mdx │ ├── starter.md │ ├── svg.md │ └── web.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── css │ │ └── custom.css │ ├── pages │ │ └── styles.module.css │ └── plugins │ │ └── remark-npm2yarn │ │ └── index.js ├── static │ ├── .nojekyll │ ├── font │ │ ├── Satoshi-Bold.ttf │ │ ├── Satoshi-Italic.ttf │ │ ├── Satoshi-Medium.ttf │ │ ├── Satoshi-MediumItalic.ttf │ │ └── Satoshi-Regular.ttf │ └── img │ │ ├── Banner Gradient.png │ │ ├── Banner Gradient.svg │ │ ├── Header Logo.svg │ │ ├── Interactions.png │ │ ├── Logo White (flipped).svg │ │ ├── Logo White.svg │ │ ├── banner.svg │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── logo-grad.svg │ │ ├── logo.svg │ │ ├── panda.png │ │ ├── panda.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ └── white-flipped.svg └── yarn.lock ├── examples ├── sample │ ├── .gitignore │ ├── .yarn │ │ └── install-state.gz │ ├── App.js │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── Bug.tsx │ │ ├── Color-Bug.tsx │ │ ├── Color.tsx │ │ ├── Drip.Color.tsx │ │ ├── Drip.Presence.tsx │ │ ├── Drip.Repeat.tsx │ │ ├── Drip.tsx │ │ ├── Easing.tsx │ │ ├── Example.tsx │ │ ├── Gallery.tsx │ │ ├── Headless-Exit.tsx │ │ ├── Ideas.tsx │ │ ├── Measure.tsx │ │ ├── Moti.Callbacks.tsx │ │ ├── Moti.ChangeVariants.tsx │ │ ├── Moti.DynamicAnimation.tsx │ │ ├── Moti.ExitBeforeEnter.tsx │ │ ├── Moti.Factory.tsx │ │ ├── Moti.Gallery.tsx │ │ ├── Moti.HelloWorld.tsx │ │ ├── Moti.KeyPresence.tsx │ │ ├── Moti.Loop.tsx │ │ ├── Moti.NewTransition.tsx │ │ ├── Moti.Presence.tsx │ │ ├── Moti.Pressable.tsx │ │ ├── Moti.PressableMenu.tsx │ │ ├── Moti.PressableTooltip.tsx │ │ ├── Moti.Progress.tsx │ │ ├── Moti.Sequence.tsx │ │ ├── Moti.SequenceLoop.tsx │ │ ├── Moti.Skeleton.tsx │ │ ├── Moti.Svg.tsx │ │ ├── Moti.Transform.tsx │ │ ├── Moti.Variants.tsx │ │ ├── Perf.List.tsx │ │ ├── Reanimated.Bg-Bug.tsx │ │ ├── Reanimated.Width-Bug.tsx │ │ ├── Repeat.tsx │ │ ├── Sequence.Bug.tsx │ │ └── Web.tsx │ ├── tsconfig.json │ └── yarn.lock └── with-next │ ├── .gitignore │ ├── App.tsx │ ├── CHANGELOG.md │ ├── README.md │ ├── app.json │ ├── babel.config.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── _app.js │ ├── _document.js │ └── index.tsx │ └── tsconfig.json ├── lerna-debug.log ├── lerna.json ├── license.md ├── package.json ├── packages └── moti │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── author │ ├── index.d.ts │ └── index.js │ ├── index.d.ts │ ├── interactions │ ├── index.d.ts │ ├── index.js │ └── index.js.map │ ├── metro.config.js │ ├── package.json │ ├── skeleton │ ├── index.d.ts │ ├── index.js │ └── react-native-linear-gradient.js │ ├── src │ ├── author │ │ └── index.ts │ ├── components │ │ ├── image.tsx │ │ ├── index.ts │ │ ├── progress │ │ │ └── index.tsx │ │ ├── safe-area-view.tsx │ │ ├── scroll-view.tsx │ │ ├── text.tsx │ │ └── view.tsx │ ├── core │ │ ├── constants │ │ │ ├── color-keys.ts │ │ │ ├── index.ts │ │ │ └── package-name.ts │ │ ├── index.ts │ │ ├── motify.tsx │ │ ├── types.ts │ │ ├── use-animator │ │ │ └── index.ts │ │ ├── use-dynamic-animation │ │ │ └── index.ts │ │ └── use-motify.ts │ ├── index.tsx │ ├── interactions │ │ ├── index.ts │ │ └── pressable │ │ │ ├── context.tsx │ │ │ ├── hoverable-context.tsx │ │ │ ├── hoverable.native.tsx │ │ │ ├── hoverable.tsx │ │ │ ├── index.tsx │ │ │ ├── merge-refs.ts │ │ │ ├── merge.ts │ │ │ ├── pressable.tsx │ │ │ ├── types.ts │ │ │ ├── use-moti-pressable-animated-props.ts │ │ │ ├── use-moti-pressable-interpolate.ts │ │ │ ├── use-moti-pressable-transition.ts │ │ │ ├── use-pressable.ts │ │ │ ├── use-pressables.ts │ │ │ └── use-validate-factory-or-id.ts │ ├── skeleton │ │ ├── expo.tsx │ │ ├── index.ts │ │ ├── native.tsx │ │ ├── shared.ts │ │ ├── skeleton-new.tsx │ │ ├── skeleton.tsx │ │ └── types.ts │ └── svg │ │ ├── index.ts │ │ └── motify-svg.tsx │ ├── svg │ ├── index.d.ts │ └── index.js │ └── tsconfig.json ├── tsconfig.json ├── tsconfig.tsbuildinfo └── yarn.lock /.autorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.autorc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/assets/banner2.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/.yarn/install-state.gz -------------------------------------------------------------------------------- /docs/.yarn/releases/yarn-4.1.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/.yarn/releases/yarn-4.1.0.cjs -------------------------------------------------------------------------------- /docs/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/.yarnrc.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs-samples/doc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs-samples/doc1.md -------------------------------------------------------------------------------- /docs/docs-samples/doc2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs-samples/doc2.md -------------------------------------------------------------------------------- /docs/docs-samples/doc3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs-samples/doc3.md -------------------------------------------------------------------------------- /docs/docs-samples/mdx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs-samples/mdx.md -------------------------------------------------------------------------------- /docs/docs/animate-presence.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/animations-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/animations-overview.md -------------------------------------------------------------------------------- /docs/docs/animations-repeat.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/animations-sequence.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/api/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/api/components.md -------------------------------------------------------------------------------- /docs/docs/api/motify-svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/api/motify-svg.md -------------------------------------------------------------------------------- /docs/docs/api/motify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/api/motify.md -------------------------------------------------------------------------------- /docs/docs/api/props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/api/props.md -------------------------------------------------------------------------------- /docs/docs/api/transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/api/transforms.md -------------------------------------------------------------------------------- /docs/docs/examples/action-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/action-menu.md -------------------------------------------------------------------------------- /docs/docs/examples/animate-presence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/animate-presence.md -------------------------------------------------------------------------------- /docs/docs/examples/auto-height.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/auto-height.md -------------------------------------------------------------------------------- /docs/docs/examples/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/dropdown.md -------------------------------------------------------------------------------- /docs/docs/examples/exit-before-enter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/exit-before-enter.md -------------------------------------------------------------------------------- /docs/docs/examples/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/hello-world.md -------------------------------------------------------------------------------- /docs/docs/examples/image-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/image-gallery.md -------------------------------------------------------------------------------- /docs/docs/examples/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/loop.md -------------------------------------------------------------------------------- /docs/docs/examples/menu-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/menu-icon.md -------------------------------------------------------------------------------- /docs/docs/examples/skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/skeleton.md -------------------------------------------------------------------------------- /docs/docs/examples/variants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/examples/variants.md -------------------------------------------------------------------------------- /docs/docs/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/hello-world.md -------------------------------------------------------------------------------- /docs/docs/hooks/use-animation-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/hooks/use-animation-state.md -------------------------------------------------------------------------------- /docs/docs/hooks/use-dynamic-animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/hooks/use-dynamic-animation.md -------------------------------------------------------------------------------- /docs/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/index.mdx -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/interactions/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/eslint.md -------------------------------------------------------------------------------- /docs/docs/interactions/merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/merge.md -------------------------------------------------------------------------------- /docs/docs/interactions/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/overview.mdx -------------------------------------------------------------------------------- /docs/docs/interactions/pressable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/pressable.md -------------------------------------------------------------------------------- /docs/docs/interactions/use-pressable-animated-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/use-pressable-animated-props.md -------------------------------------------------------------------------------- /docs/docs/interactions/use-pressable-interpolate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/use-pressable-interpolate.md -------------------------------------------------------------------------------- /docs/docs/interactions/use-pressable-transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/use-pressable-transition.md -------------------------------------------------------------------------------- /docs/docs/interactions/use-pressable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/use-pressable.md -------------------------------------------------------------------------------- /docs/docs/interactions/use-pressables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/interactions/use-pressables.md -------------------------------------------------------------------------------- /docs/docs/next-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/next-js.md -------------------------------------------------------------------------------- /docs/docs/reanimated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/reanimated.md -------------------------------------------------------------------------------- /docs/docs/resources/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/resources/videos.md -------------------------------------------------------------------------------- /docs/docs/skeleton.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/skeleton.mdx -------------------------------------------------------------------------------- /docs/docs/starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/starter.md -------------------------------------------------------------------------------- /docs/docs/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/svg.md -------------------------------------------------------------------------------- /docs/docs/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docs/web.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/src/pages/styles.module.css -------------------------------------------------------------------------------- /docs/src/plugins/remark-npm2yarn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/src/plugins/remark-npm2yarn/index.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/font/Satoshi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/font/Satoshi-Bold.ttf -------------------------------------------------------------------------------- /docs/static/font/Satoshi-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/font/Satoshi-Italic.ttf -------------------------------------------------------------------------------- /docs/static/font/Satoshi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/font/Satoshi-Medium.ttf -------------------------------------------------------------------------------- /docs/static/font/Satoshi-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/font/Satoshi-MediumItalic.ttf -------------------------------------------------------------------------------- /docs/static/font/Satoshi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/font/Satoshi-Regular.ttf -------------------------------------------------------------------------------- /docs/static/img/Banner Gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Banner Gradient.png -------------------------------------------------------------------------------- /docs/static/img/Banner Gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Banner Gradient.svg -------------------------------------------------------------------------------- /docs/static/img/Header Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Header Logo.svg -------------------------------------------------------------------------------- /docs/static/img/Interactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Interactions.png -------------------------------------------------------------------------------- /docs/static/img/Logo White (flipped).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Logo White (flipped).svg -------------------------------------------------------------------------------- /docs/static/img/Logo White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/Logo White.svg -------------------------------------------------------------------------------- /docs/static/img/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/banner.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/favicon.svg -------------------------------------------------------------------------------- /docs/static/img/logo-grad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/logo-grad.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/panda.png -------------------------------------------------------------------------------- /docs/static/img/panda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/panda.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/static/img/white-flipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/static/img/white-flipped.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /examples/sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/.gitignore -------------------------------------------------------------------------------- /examples/sample/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/.yarn/install-state.gz -------------------------------------------------------------------------------- /examples/sample/App.js: -------------------------------------------------------------------------------- 1 | export { default } from './src/Perf.List' 2 | -------------------------------------------------------------------------------- /examples/sample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/app.json -------------------------------------------------------------------------------- /examples/sample/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/assets/adaptive-icon.png -------------------------------------------------------------------------------- /examples/sample/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/assets/favicon.png -------------------------------------------------------------------------------- /examples/sample/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/assets/icon.png -------------------------------------------------------------------------------- /examples/sample/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/assets/splash.png -------------------------------------------------------------------------------- /examples/sample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/babel.config.js -------------------------------------------------------------------------------- /examples/sample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/metro.config.js -------------------------------------------------------------------------------- /examples/sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/package.json -------------------------------------------------------------------------------- /examples/sample/src/Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Bug.tsx -------------------------------------------------------------------------------- /examples/sample/src/Color-Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Color-Bug.tsx -------------------------------------------------------------------------------- /examples/sample/src/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Color.tsx -------------------------------------------------------------------------------- /examples/sample/src/Drip.Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Drip.Color.tsx -------------------------------------------------------------------------------- /examples/sample/src/Drip.Presence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Drip.Presence.tsx -------------------------------------------------------------------------------- /examples/sample/src/Drip.Repeat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Drip.Repeat.tsx -------------------------------------------------------------------------------- /examples/sample/src/Drip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Drip.tsx -------------------------------------------------------------------------------- /examples/sample/src/Easing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Easing.tsx -------------------------------------------------------------------------------- /examples/sample/src/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Example.tsx -------------------------------------------------------------------------------- /examples/sample/src/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Gallery.tsx -------------------------------------------------------------------------------- /examples/sample/src/Headless-Exit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Headless-Exit.tsx -------------------------------------------------------------------------------- /examples/sample/src/Ideas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Ideas.tsx -------------------------------------------------------------------------------- /examples/sample/src/Measure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Measure.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Callbacks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Callbacks.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.ChangeVariants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.ChangeVariants.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.DynamicAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.DynamicAnimation.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.ExitBeforeEnter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.ExitBeforeEnter.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Factory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Factory.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Gallery.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.HelloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.HelloWorld.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.KeyPresence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.KeyPresence.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Loop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Loop.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.NewTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.NewTransition.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Presence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Presence.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Pressable.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.PressableMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.PressableMenu.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.PressableTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.PressableTooltip.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Progress.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Sequence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Sequence.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.SequenceLoop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.SequenceLoop.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Skeleton.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Svg.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Transform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Transform.tsx -------------------------------------------------------------------------------- /examples/sample/src/Moti.Variants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Moti.Variants.tsx -------------------------------------------------------------------------------- /examples/sample/src/Perf.List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Perf.List.tsx -------------------------------------------------------------------------------- /examples/sample/src/Reanimated.Bg-Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Reanimated.Bg-Bug.tsx -------------------------------------------------------------------------------- /examples/sample/src/Reanimated.Width-Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Reanimated.Width-Bug.tsx -------------------------------------------------------------------------------- /examples/sample/src/Repeat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Repeat.tsx -------------------------------------------------------------------------------- /examples/sample/src/Sequence.Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/src/Sequence.Bug.tsx -------------------------------------------------------------------------------- /examples/sample/src/Web.tsx: -------------------------------------------------------------------------------- 1 | export default 'web' -------------------------------------------------------------------------------- /examples/sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/tsconfig.json -------------------------------------------------------------------------------- /examples/sample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/sample/yarn.lock -------------------------------------------------------------------------------- /examples/with-next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/.gitignore -------------------------------------------------------------------------------- /examples/with-next/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/App.tsx -------------------------------------------------------------------------------- /examples/with-next/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/CHANGELOG.md -------------------------------------------------------------------------------- /examples/with-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/README.md -------------------------------------------------------------------------------- /examples/with-next/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/app.json -------------------------------------------------------------------------------- /examples/with-next/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/babel.config.js -------------------------------------------------------------------------------- /examples/with-next/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/next-env.d.ts -------------------------------------------------------------------------------- /examples/with-next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/next.config.js -------------------------------------------------------------------------------- /examples/with-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/package.json -------------------------------------------------------------------------------- /examples/with-next/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/pages/_app.js -------------------------------------------------------------------------------- /examples/with-next/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/pages/_document.js -------------------------------------------------------------------------------- /examples/with-next/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/pages/index.tsx -------------------------------------------------------------------------------- /examples/with-next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/examples/with-next/tsconfig.json -------------------------------------------------------------------------------- /lerna-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/lerna-debug.log -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/lerna.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/package.json -------------------------------------------------------------------------------- /packages/moti/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/.eslintrc.js -------------------------------------------------------------------------------- /packages/moti/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/CHANGELOG.md -------------------------------------------------------------------------------- /packages/moti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/README.md -------------------------------------------------------------------------------- /packages/moti/author/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../build/author' 2 | -------------------------------------------------------------------------------- /packages/moti/author/index.js: -------------------------------------------------------------------------------- 1 | export * from '../build/author' 2 | -------------------------------------------------------------------------------- /packages/moti/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/index.d.ts -------------------------------------------------------------------------------- /packages/moti/interactions/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../build/interactions' 2 | -------------------------------------------------------------------------------- /packages/moti/interactions/index.js: -------------------------------------------------------------------------------- 1 | export * from '../build/interactions' 2 | //# sourceMappingURL=index.js.map 3 | -------------------------------------------------------------------------------- /packages/moti/interactions/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/interactions/index.js.map -------------------------------------------------------------------------------- /packages/moti/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/metro.config.js -------------------------------------------------------------------------------- /packages/moti/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/package.json -------------------------------------------------------------------------------- /packages/moti/skeleton/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../build/skeleton' 2 | -------------------------------------------------------------------------------- /packages/moti/skeleton/index.js: -------------------------------------------------------------------------------- 1 | export * from '../build/skeleton' 2 | //# sourceMappingURL=index.js.map 3 | -------------------------------------------------------------------------------- /packages/moti/skeleton/react-native-linear-gradient.js: -------------------------------------------------------------------------------- 1 | export * from '../build/skeleton/native' 2 | -------------------------------------------------------------------------------- /packages/moti/src/author/index.ts: -------------------------------------------------------------------------------- 1 | export * from '../core/use-motify' 2 | -------------------------------------------------------------------------------- /packages/moti/src/components/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/image.tsx -------------------------------------------------------------------------------- /packages/moti/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/index.ts -------------------------------------------------------------------------------- /packages/moti/src/components/progress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/progress/index.tsx -------------------------------------------------------------------------------- /packages/moti/src/components/safe-area-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/safe-area-view.tsx -------------------------------------------------------------------------------- /packages/moti/src/components/scroll-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/scroll-view.tsx -------------------------------------------------------------------------------- /packages/moti/src/components/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/text.tsx -------------------------------------------------------------------------------- /packages/moti/src/components/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/components/view.tsx -------------------------------------------------------------------------------- /packages/moti/src/core/constants/color-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/constants/color-keys.ts -------------------------------------------------------------------------------- /packages/moti/src/core/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/constants/index.ts -------------------------------------------------------------------------------- /packages/moti/src/core/constants/package-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/constants/package-name.ts -------------------------------------------------------------------------------- /packages/moti/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/index.ts -------------------------------------------------------------------------------- /packages/moti/src/core/motify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/motify.tsx -------------------------------------------------------------------------------- /packages/moti/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/types.ts -------------------------------------------------------------------------------- /packages/moti/src/core/use-animator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/use-animator/index.ts -------------------------------------------------------------------------------- /packages/moti/src/core/use-dynamic-animation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/use-dynamic-animation/index.ts -------------------------------------------------------------------------------- /packages/moti/src/core/use-motify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/core/use-motify.ts -------------------------------------------------------------------------------- /packages/moti/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/index.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pressable' 2 | -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/context.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/hoverable-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/hoverable-context.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/hoverable.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/hoverable.native.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/hoverable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/hoverable.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/index.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/merge-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/merge-refs.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/merge.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/pressable.tsx -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/types.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-moti-pressable-animated-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-moti-pressable-animated-props.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-moti-pressable-interpolate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-moti-pressable-interpolate.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-moti-pressable-transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-moti-pressable-transition.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-pressable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-pressable.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-pressables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-pressables.ts -------------------------------------------------------------------------------- /packages/moti/src/interactions/pressable/use-validate-factory-or-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/interactions/pressable/use-validate-factory-or-id.ts -------------------------------------------------------------------------------- /packages/moti/src/skeleton/expo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/expo.tsx -------------------------------------------------------------------------------- /packages/moti/src/skeleton/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Skeleton } from './expo' 2 | -------------------------------------------------------------------------------- /packages/moti/src/skeleton/native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/native.tsx -------------------------------------------------------------------------------- /packages/moti/src/skeleton/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/shared.ts -------------------------------------------------------------------------------- /packages/moti/src/skeleton/skeleton-new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/skeleton-new.tsx -------------------------------------------------------------------------------- /packages/moti/src/skeleton/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/skeleton.tsx -------------------------------------------------------------------------------- /packages/moti/src/skeleton/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/skeleton/types.ts -------------------------------------------------------------------------------- /packages/moti/src/svg/index.ts: -------------------------------------------------------------------------------- 1 | export * from './motify-svg' 2 | -------------------------------------------------------------------------------- /packages/moti/src/svg/motify-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/src/svg/motify-svg.tsx -------------------------------------------------------------------------------- /packages/moti/svg/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../build/svg' 2 | -------------------------------------------------------------------------------- /packages/moti/svg/index.js: -------------------------------------------------------------------------------- 1 | export * from '../build/svg' 2 | -------------------------------------------------------------------------------- /packages/moti/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/packages/moti/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandorojo/moti/HEAD/yarn.lock --------------------------------------------------------------------------------