├── .changeset ├── README.md └── config.json ├── .eslintrc.js ├── .github └── workflows │ ├── pr.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── react-shim.js ├── src ├── animations.ts ├── animations │ ├── extra │ │ ├── hinge.ts │ │ ├── jack-in-the-box.ts │ │ ├── roll-in.ts │ │ └── roll-out.ts │ ├── main │ │ ├── bounce-in.ts │ │ ├── bounce.ts │ │ ├── flash.ts │ │ ├── flip.ts │ │ ├── head-shake.ts │ │ ├── heart-beat.ts │ │ ├── jello.ts │ │ ├── pulse.ts │ │ ├── rotate-90.ts │ │ ├── rotate-scale.ts │ │ ├── rotate.ts │ │ ├── rubber-band.ts │ │ ├── shake-x.ts │ │ ├── shake-y.ts │ │ ├── shake.ts │ │ ├── swing.ts │ │ ├── tada.ts │ │ └── wobble.ts │ └── shadow │ │ ├── shadow-drop-2.ts │ │ ├── shadow-drop.ts │ │ └── shadow-inset.ts ├── constants │ └── animation-collection.ts ├── index.ts └── types │ ├── name.ts │ └── options.ts ├── tsconfig.json └── tsup.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /react-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/react-shim.js -------------------------------------------------------------------------------- /src/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations.ts -------------------------------------------------------------------------------- /src/animations/extra/hinge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/extra/hinge.ts -------------------------------------------------------------------------------- /src/animations/extra/jack-in-the-box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/extra/jack-in-the-box.ts -------------------------------------------------------------------------------- /src/animations/extra/roll-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/extra/roll-in.ts -------------------------------------------------------------------------------- /src/animations/extra/roll-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/extra/roll-out.ts -------------------------------------------------------------------------------- /src/animations/main/bounce-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/bounce-in.ts -------------------------------------------------------------------------------- /src/animations/main/bounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/bounce.ts -------------------------------------------------------------------------------- /src/animations/main/flash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/flash.ts -------------------------------------------------------------------------------- /src/animations/main/flip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/flip.ts -------------------------------------------------------------------------------- /src/animations/main/head-shake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/head-shake.ts -------------------------------------------------------------------------------- /src/animations/main/heart-beat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/heart-beat.ts -------------------------------------------------------------------------------- /src/animations/main/jello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/jello.ts -------------------------------------------------------------------------------- /src/animations/main/pulse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/pulse.ts -------------------------------------------------------------------------------- /src/animations/main/rotate-90.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/rotate-90.ts -------------------------------------------------------------------------------- /src/animations/main/rotate-scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/rotate-scale.ts -------------------------------------------------------------------------------- /src/animations/main/rotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/rotate.ts -------------------------------------------------------------------------------- /src/animations/main/rubber-band.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/rubber-band.ts -------------------------------------------------------------------------------- /src/animations/main/shake-x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/shake-x.ts -------------------------------------------------------------------------------- /src/animations/main/shake-y.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/shake-y.ts -------------------------------------------------------------------------------- /src/animations/main/shake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/shake.ts -------------------------------------------------------------------------------- /src/animations/main/swing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/swing.ts -------------------------------------------------------------------------------- /src/animations/main/tada.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/tada.ts -------------------------------------------------------------------------------- /src/animations/main/wobble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/main/wobble.ts -------------------------------------------------------------------------------- /src/animations/shadow/shadow-drop-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/shadow/shadow-drop-2.ts -------------------------------------------------------------------------------- /src/animations/shadow/shadow-drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/shadow/shadow-drop.ts -------------------------------------------------------------------------------- /src/animations/shadow/shadow-inset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/animations/shadow/shadow-inset.ts -------------------------------------------------------------------------------- /src/constants/animation-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/constants/animation-collection.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/types/name.ts -------------------------------------------------------------------------------- /src/types/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/src/types/options.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codechem/chakra-ui-animations/HEAD/tsup.config.ts --------------------------------------------------------------------------------