├── .github └── workflows │ └── cd.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets └── logo.jpg ├── docs ├── css │ ├── custom.css │ └── termynal.css ├── index.md ├── js │ ├── custom.js │ └── termynal.js ├── overrides │ └── main.html └── playground │ └── index.md ├── main ├── .gitignore ├── .prettierrc ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.tsx │ ├── main.tsx │ ├── react-waves-effect │ │ ├── index.tsx │ │ └── ripple.css │ └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts ├── mkdocs.yml ├── package.json └── tsconfig.json /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | yarn.lock -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/css/termynal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/css/termynal.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/js/custom.js -------------------------------------------------------------------------------- /docs/js/termynal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/js/termynal.js -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/playground/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/docs/playground/index.md -------------------------------------------------------------------------------- /main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/.gitignore -------------------------------------------------------------------------------- /main/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/.prettierrc -------------------------------------------------------------------------------- /main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/index.html -------------------------------------------------------------------------------- /main/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/package-lock.json -------------------------------------------------------------------------------- /main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/package.json -------------------------------------------------------------------------------- /main/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/src/App.tsx -------------------------------------------------------------------------------- /main/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/src/main.tsx -------------------------------------------------------------------------------- /main/src/react-waves-effect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/src/react-waves-effect/index.tsx -------------------------------------------------------------------------------- /main/src/react-waves-effect/ripple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/src/react-waves-effect/ripple.css -------------------------------------------------------------------------------- /main/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /main/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/tsconfig.json -------------------------------------------------------------------------------- /main/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/main/vite.config.ts -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeulAria/react-waves-effect/HEAD/tsconfig.json --------------------------------------------------------------------------------