├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src └── OutsideClickHandler.jsx └── test ├── .eslintrc ├── OutsideClickHandler_test.jsx ├── _helpers ├── enzymeSetup.js └── restoreSinonStubs.js └── mocha.opts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/package.json -------------------------------------------------------------------------------- /src/OutsideClickHandler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/src/OutsideClickHandler.jsx -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/OutsideClickHandler_test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/test/OutsideClickHandler_test.jsx -------------------------------------------------------------------------------- /test/_helpers/enzymeSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/test/_helpers/enzymeSetup.js -------------------------------------------------------------------------------- /test/_helpers/restoreSinonStubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/test/_helpers/restoreSinonStubs.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/react-outside-click-handler/HEAD/test/mocha.opts --------------------------------------------------------------------------------