You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npm install --save react-outside-click-listener
# or
yarn add react-outside-click-listener
Usage example
import{OutsideClickListener}from'react-outside-click-listener';functionMyComponent(){return(<OutsideClickListenerdisabled={condition}// Disable by some conditionignore=".css-class"// CSS selector for ignored elements.events={['mousedown','touchstart']}// Events which detects as clicks. Default value.onOutsideClick={callback}>{/* Child must hold a ref to dom node. */}<Child/></OutsideClickListener>);}