We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de98c7 commit b4b7bb9Copy full SHA for b4b7bb9
src/dialog.jsx
@@ -387,6 +387,7 @@ const wrapperStyle = {position:'fixed', top:0, left:0, zIndex:20};
387
const Dialog = React.createClass({
388
389
propTypes: {
390
+ actionFocus: React.PropTypes.string,
391
actions: React.PropTypes.array,
392
autoDetectWindowHeight: React.PropTypes.bool,
393
autoScrollBodyContent: React.PropTypes.bool,
@@ -395,12 +396,15 @@ const Dialog = React.createClass({
395
396
contentStyle: React.PropTypes.object,
397
defaultOpen: React.PropTypes.bool,
398
modal: React.PropTypes.bool,
399
+ onDismiss: React.PropTypes.func,
400
onRequestClose: React.PropTypes.func,
401
+ onShow: React.PropTypes.func,
402
open: React.PropTypes.bool,
403
openImmediately: React.PropTypes.bool,
404
repositionOnUpdate: React.PropTypes.bool,
405
style: React.PropTypes.object,
406
title: React.PropTypes.node,
407
+ titleStyle: React.PropTypes.object,
408
},
409
410
getInitialState() {
0 commit comments