UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

47 lines 1.62 kB
import * as React from 'react'; type ClickAwayMouseEventHandler = 'onClick' | 'onMouseDown' | 'onMouseUp' | 'onPointerDown' | 'onPointerUp'; type ClickAwayTouchEventHandler = 'onTouchStart' | 'onTouchEnd'; export interface ClickAwayListenerProps { /** * The wrapped element. */ children: React.ReactElement<any>; /** * If `true`, the React tree is ignored and only the DOM tree is considered. * This prop changes how portaled elements are handled. * @default false */ disableReactTree?: boolean; /** * The mouse event to listen to. You can disable the listener by providing `false`. * @default 'onClick' */ mouseEvent?: ClickAwayMouseEventHandler | false; /** * Callback fired when a "click away" event is detected. */ onClickAway: (event: MouseEvent | TouchEvent) => void; /** * The touch event to listen to. You can disable the listener by providing `false`. * @default 'onTouchEnd' */ touchEvent?: ClickAwayTouchEventHandler | false; } /** * Listen for click events that occur somewhere in the document, outside of the element itself. * For instance, if you need to hide a menu when people click anywhere else on your page. * * Demos: * * - [Click-Away Listener](https://mui.com/material-ui/react-click-away-listener/) * - [Menu](https://mui.com/material-ui/react-menu/) * * API: * * - [ClickAwayListener API](https://mui.com/material-ui/api/click-away-listener/) */ declare function ClickAwayListener(props: ClickAwayListenerProps): React.JSX.Element; declare namespace ClickAwayListener { var propTypes: any; } export { ClickAwayListener };