Skip to content

Commit

Permalink
Updating build
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed Jan 13, 2018
1 parent ab52641 commit e73b03d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dist/react-select.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -1193,8 +1193,8 @@ var Select$1 = function (_React$Component) {
break;
case 46:
// delete
event.preventDefault();
if (!this.state.inputValue && this.props.deleteRemoves) {
event.preventDefault();
this.popValue();
}
break;
Expand Down Expand Up @@ -1625,7 +1625,7 @@ var Select$1 = function (_React$Component) {
}
return React.createElement(
'div',
{ className: className, key: 'input-wrap' },
{ className: className, key: 'input-wrap', style: { display: 'inline-block' } },
React.createElement('input', _extends({ id: this.props.id }, inputProps))
);
}
Expand Down
4 changes: 2 additions & 2 deletions dist/react-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -1198,8 +1198,8 @@ var Select$1 = function (_React$Component) {
break;
case 46:
// delete
event.preventDefault();
if (!this.state.inputValue && this.props.deleteRemoves) {
event.preventDefault();
this.popValue();
}
break;
Expand Down Expand Up @@ -1630,7 +1630,7 @@ var Select$1 = function (_React$Component) {
}
return React__default.createElement(
'div',
{ className: className, key: 'input-wrap' },
{ className: className, key: 'input-wrap', style: { display: 'inline-block' } },
React__default.createElement('input', _extends({ id: this.props.id }, inputProps))
);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/react-select.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ var Select = function (_React$Component) {
break;
case 46:
// delete
event.preventDefault();
if (!this.state.inputValue && this.props.deleteRemoves) {
event.preventDefault();
this.popValue();
}
break;
Expand Down Expand Up @@ -1052,7 +1052,7 @@ var Select = function (_React$Component) {
}
return _react2.default.createElement(
'div',
{ className: className, key: 'input-wrap' },
{ className: className, key: 'input-wrap', style: { display: 'inline-block' } },
_react2.default.createElement('input', _extends({ id: this.props.id }, inputProps))
);
}
Expand Down

0 comments on commit e73b03d

Please sign in to comment.