diff --git a/components/dialog/Dialog.jsx b/components/dialog/Dialog.jsx index 0121e665..a2dd644c 100644 --- a/components/dialog/Dialog.jsx +++ b/components/dialog/Dialog.jsx @@ -15,7 +15,13 @@ const Dialog = (props) => { }, props.className); return ( - +
{props.title ?
{props.title}
: null} @@ -35,6 +41,9 @@ Dialog.propTypes = { children: React.PropTypes.node, className: React.PropTypes.string, onOverlayClick: React.PropTypes.func, + onOverlayMouseDown: React.PropTypes.func, + onOverlayMouseUp: React.PropTypes.func, + onOverlayMouseMove: React.PropTypes.func, title: React.PropTypes.string, type: React.PropTypes.string };