├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── src ├── baseAnimations.ts ├── defaults.ts ├── index.d.ts ├── index.ts ├── keyframes.ts ├── modifiers.ts ├── presets.ts └── types │ └── tailwind-internals.d.ts ├── tsconfig.json ├── tsup.config.ts └── web ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public └── favicon.svg ├── src ├── env.d.ts └── pages │ └── index.astro ├── tailwind.config.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .vscode 3 | /dist 4 | *.tsbuildinfo 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/baseAnimations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/baseAnimations.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/keyframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/keyframes.ts -------------------------------------------------------------------------------- /src/modifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/modifiers.ts -------------------------------------------------------------------------------- /src/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/presets.ts -------------------------------------------------------------------------------- /src/types/tailwind-internals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/src/types/tailwind-internals.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/.vscode/extensions.json -------------------------------------------------------------------------------- /web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/.vscode/launch.json -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/README.md -------------------------------------------------------------------------------- /web/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/astro.config.mjs -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/package.json -------------------------------------------------------------------------------- /web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/pnpm-lock.yaml -------------------------------------------------------------------------------- /web/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/public/favicon.svg -------------------------------------------------------------------------------- /web/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /web/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/src/pages/index.astro -------------------------------------------------------------------------------- /web/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/tailwind.config.mjs -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romboHQ/tailwindcss-motion/HEAD/web/tsconfig.json --------------------------------------------------------------------------------