├── .babelrc ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── react-hide-on-mouse-stop.gif ├── src ├── HideOnMouseStop.test.tsx ├── HideOnMouseStop.tsx ├── index.ts ├── useHideOnMouseStop.test.tsx └── useHideOnMouseStop.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/package.json -------------------------------------------------------------------------------- /react-hide-on-mouse-stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/react-hide-on-mouse-stop.gif -------------------------------------------------------------------------------- /src/HideOnMouseStop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/src/HideOnMouseStop.test.tsx -------------------------------------------------------------------------------- /src/HideOnMouseStop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/src/HideOnMouseStop.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useHideOnMouseStop.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/src/useHideOnMouseStop.test.tsx -------------------------------------------------------------------------------- /src/useHideOnMouseStop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/src/useHideOnMouseStop.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomotasantos/react-hide-on-mouse-stop/HEAD/tsconfig.json --------------------------------------------------------------------------------