├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── example ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── components │ ├── Table │ │ ├── Table.module.css │ │ └── index.tsx │ ├── TypeAnimation.tsx │ └── examples │ │ └── index.tsx ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package-prod.json ├── package.json ├── pages │ ├── _app.mdx │ ├── _meta.json │ ├── accessibility.mdx │ ├── examples.mdx │ ├── index.mdx │ ├── options.mdx │ └── wrapper-css.mdx ├── postcss.config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── styles │ └── globals.css ├── tailwind.config.js ├── theme.config.tsx └── tsconfig.json ├── global.d.ts ├── package.json ├── rollup.config.js ├── src ├── .eslintrc ├── components │ ├── TypeAnimation │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── index.types.ts │ └── index.ts ├── hooks │ ├── useEffectOnce.tsx │ └── useForwardRef.tsx ├── index.ts └── typical.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/README.md -------------------------------------------------------------------------------- /example/.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/.eslintignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | -------------------------------------------------------------------------------- /example/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "react-app" 3 | } -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /example/components/Table/Table.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/components/Table/Table.module.css -------------------------------------------------------------------------------- /example/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/components/Table/index.tsx -------------------------------------------------------------------------------- /example/components/TypeAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/components/TypeAnimation.tsx -------------------------------------------------------------------------------- /example/components/examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/components/examples/index.tsx -------------------------------------------------------------------------------- /example/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/next-env.d.ts -------------------------------------------------------------------------------- /example/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/next.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/package-prod.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pages/_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/_app.mdx -------------------------------------------------------------------------------- /example/pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/_meta.json -------------------------------------------------------------------------------- /example/pages/accessibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/accessibility.mdx -------------------------------------------------------------------------------- /example/pages/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/examples.mdx -------------------------------------------------------------------------------- /example/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/index.mdx -------------------------------------------------------------------------------- /example/pages/options.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/options.mdx -------------------------------------------------------------------------------- /example/pages/wrapper-css.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/pages/wrapper-css.mdx -------------------------------------------------------------------------------- /example/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/postcss.config.js -------------------------------------------------------------------------------- /example/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /example/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /example/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/apple-touch-icon.png -------------------------------------------------------------------------------- /example/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/favicon-16x16.png -------------------------------------------------------------------------------- /example/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/favicon-32x32.png -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/public/site.webmanifest -------------------------------------------------------------------------------- /example/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/styles/globals.css -------------------------------------------------------------------------------- /example/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/tailwind.config.js -------------------------------------------------------------------------------- /example/theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/theme.config.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/components/TypeAnimation/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/components/TypeAnimation/index.module.css -------------------------------------------------------------------------------- /src/components/TypeAnimation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/components/TypeAnimation/index.tsx -------------------------------------------------------------------------------- /src/components/TypeAnimation/index.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/components/TypeAnimation/index.types.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/hooks/useEffectOnce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/hooks/useEffectOnce.tsx -------------------------------------------------------------------------------- /src/hooks/useForwardRef.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/hooks/useForwardRef.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './components'; 2 | -------------------------------------------------------------------------------- /src/typical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/src/typical.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxeth/react-type-animation/HEAD/tsconfig.json --------------------------------------------------------------------------------