From: Andreas Fehn Date: Sat, 4 Feb 2017 07:10:23 +0000 (+0100) Subject: Add prop for naming the input X-Git-Tag: 2.2.2~8^2~1 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=6d1ad104daefa7bc09dfdffd521541abf38dc6bc;p=github%2Ffretlink%2Ftime-picker.git Add prop for naming the input --- diff --git a/src/TimePicker.jsx b/src/TimePicker.jsx index ec3eda0..e6c2031 100644 --- a/src/TimePicker.jsx +++ b/src/TimePicker.jsx @@ -41,6 +41,7 @@ const Picker = React.createClass({ onOpen: PropTypes.func, onClose: PropTypes.func, addon: PropTypes.func, + name: PropTypes.string, }, getDefaultProps() { @@ -187,7 +188,7 @@ const Picker = React.createClass({ const { prefixCls, placeholder, placement, align, disabled, transitionName, style, className, showHour, - showMinute, showSecond, getPopupContainer, + showMinute, showSecond, getPopupContainer, name, } = this.props; const { open, value } = this.state; let popupClassName; @@ -213,6 +214,7 @@ const Picker = React.createClass({