diff --git a/docs/src/app/components/pages/components/date-picker.jsx b/docs/src/app/components/pages/components/date-picker.jsx index 14fe7122aa5c71..ea8ff269571d3a 100644 --- a/docs/src/app/components/pages/components/date-picker.jsx +++ b/docs/src/app/components/pages/components/date-picker.jsx @@ -146,6 +146,22 @@ export default class DatePickerPage extends React.Component { 'the change the first argument will always be null and the second ' + 'argument will be the new Date instance.', }, + { + name: 'onDismiss', + header: 'function()', + desc: 'Fired when the datepicker dialog is dismissed.', + }, + { + name: 'onFocus', + header: 'function(event)', + desc: 'Callback function that is fired when the datepicker field ' + + 'gains focus.', + }, + { + name: 'onShow', + header: 'function()', + desc: 'Fired when the datepicker dialog is shown.', + }, ], }, ]; diff --git a/docs/src/app/components/pages/components/time-picker.jsx b/docs/src/app/components/pages/components/time-picker.jsx index e96e742966a284..acb7029479cb3f 100644 --- a/docs/src/app/components/pages/components/time-picker.jsx +++ b/docs/src/app/components/pages/components/time-picker.jsx @@ -77,17 +77,17 @@ let TimePickerPage = React.createClass({ 'the change the first argument will always be null and the second ' + 'argument will be the new Date instance.', }, + { + name: 'onDismiss', + header: 'function()', + desc: 'Fired when the timepicker dialog is dismissed.', + }, { name: 'onFocus', header: 'function(event)', desc: 'Callback function that is fired when the timepicker field ' + 'gains focus.', }, - { - name: 'onDismiss', - header: 'function()', - desc: 'Fired when the timepicker dialog is dismissed.', - }, { name: 'onShow', header: 'function()',