├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .huskyrc.json ├── .lintstagedrc ├── .npmignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── react-alert.spec.js ├── package.json ├── scripts ├── build.js └── config.js ├── src ├── Context.js ├── Provider.js ├── Transition.js ├── Wrapper.js ├── helpers.js ├── index.js ├── options.js ├── useAlert.js └── withAlert.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | dist 3 | coverage 4 | .DS_Store 5 | 6 | yarn-error.log 7 | -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/react-alert.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/__tests__/react-alert.spec.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/scripts/config.js -------------------------------------------------------------------------------- /src/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/Context.js -------------------------------------------------------------------------------- /src/Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/Provider.js -------------------------------------------------------------------------------- /src/Transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/Transition.js -------------------------------------------------------------------------------- /src/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/Wrapper.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/index.js -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/options.js -------------------------------------------------------------------------------- /src/useAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/useAlert.js -------------------------------------------------------------------------------- /src/withAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/src/withAlert.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schiehll/react-alert/HEAD/yarn.lock --------------------------------------------------------------------------------