├── .babelrc ├── .esdoc.json ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── manual ├── configuration.md ├── design.md ├── example.md ├── install.md └── states.png ├── package.json ├── react-cognito.sublime-project ├── scripts ├── mocha_runner.js └── publish_doc.sh ├── src ├── Confirm.jsx ├── EmailVerification.jsx ├── Login.jsx ├── Logout.jsx ├── NewPasswordRequired.jsx ├── PasswordReset.jsx ├── actions.js ├── attributes.js ├── auth.js ├── guard.js ├── index.js ├── policy.js ├── reducers.js ├── states.js └── utils.js ├── test.config.js ├── test ├── EmailVerification.js ├── attributes.js ├── auth.js └── utils.js ├── webpack.config.js └── webpack ├── base.config.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.babelrc -------------------------------------------------------------------------------- /.esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.esdoc.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/index'); 2 | -------------------------------------------------------------------------------- /manual/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/manual/configuration.md -------------------------------------------------------------------------------- /manual/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/manual/design.md -------------------------------------------------------------------------------- /manual/example.md: -------------------------------------------------------------------------------- 1 | see: https://github.com/isotoma/react-cognito-example 2 | -------------------------------------------------------------------------------- /manual/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/manual/install.md -------------------------------------------------------------------------------- /manual/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/manual/states.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/package.json -------------------------------------------------------------------------------- /react-cognito.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/react-cognito.sublime-project -------------------------------------------------------------------------------- /scripts/mocha_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/scripts/mocha_runner.js -------------------------------------------------------------------------------- /scripts/publish_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/scripts/publish_doc.sh -------------------------------------------------------------------------------- /src/Confirm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/Confirm.jsx -------------------------------------------------------------------------------- /src/EmailVerification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/EmailVerification.jsx -------------------------------------------------------------------------------- /src/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/Login.jsx -------------------------------------------------------------------------------- /src/Logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/Logout.jsx -------------------------------------------------------------------------------- /src/NewPasswordRequired.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/NewPasswordRequired.jsx -------------------------------------------------------------------------------- /src/PasswordReset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/PasswordReset.jsx -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/attributes.js -------------------------------------------------------------------------------- /src/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/auth.js -------------------------------------------------------------------------------- /src/guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/guard.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/index.js -------------------------------------------------------------------------------- /src/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/policy.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/states.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/src/utils.js -------------------------------------------------------------------------------- /test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/test.config.js -------------------------------------------------------------------------------- /test/EmailVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/test/EmailVerification.js -------------------------------------------------------------------------------- /test/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/test/attributes.js -------------------------------------------------------------------------------- /test/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/test/auth.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/test/utils.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack/base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/webpack/base.config.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isotoma/react-cognito/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------