From 3a3dea665c1b30bce16e11192272258d3e86c26d Mon Sep 17 00:00:00 2001 From: Max Vyznyuk Date: Sat, 5 Mar 2016 12:24:03 +0200 Subject: [PATCH] Update Dialog's documentation. --- components/dialog/readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/dialog/readme.md b/components/dialog/readme.md index 51f28743..6d569622 100644 --- a/components/dialog/readme.md +++ b/components/dialog/readme.md @@ -41,5 +41,8 @@ class DialogTest extends React.Component { | `actions` | `Array` | `[]` | A array of objects representing the buttons for the dialog navigation area. The properties will be transferred to the buttons.| | `className` | `String` | `''` | Sets a class to give customized styles to the dialog.| | `onOverlayClick` | `Function` | | Callback to be invoked when the dialog overlay is clicked.| +| `onOverlayMouseDown` | `Function` | | Callback called when the mouse button is pressed on the overlay. | +| `onOverlayMouseUp` | `Function` | | Callback called when the mouse button is released over the overlay. | +| `onOverlayMouseMove` | `Function` | | Callback called when the mouse is moving over the overlay. | | `title` | `String` | | The text string to use as standar title of the dialog.| | `type` | `String` | `normal` | Used to determine the size of the dialog. It can be `small`, `normal` or `large`. |