From b2a0da14b21e5baefc8913569311d3b16b33e7d5 Mon Sep 17 00:00:00 2001 From: Jed Watson Date: Sat, 2 Apr 2016 19:35:29 +1100 Subject: [PATCH] Updating build --- dist/react-select.css | 1 + dist/react-select.js | 165 +- dist/react-select.min.css | 2 +- dist/react-select.min.js | 3 +- examples/dist/app.js | 4332 ++++- examples/dist/bundle.js | 156 +- examples/dist/common.js | 30245 +++++++++++++++++----------------- examples/dist/example.css | 1 + examples/dist/index.html | 1 + examples/dist/standalone.js | 153 +- lib/Select.js | 165 +- 11 files changed, 19417 insertions(+), 15807 deletions(-) diff --git a/dist/react-select.css b/dist/react-select.css index 154eadc3c3..fa8febbb50 100644 --- a/dist/react-select.css +++ b/dist/react-select.css @@ -103,6 +103,7 @@ vertical-align: middle; } .Select-input > input { + width: 100%; background: none transparent; border: 0 none; box-shadow: none; diff --git a/dist/react-select.js b/dist/react-select.js index 753a87565d..db721e2e73 100644 --- a/dist/react-select.js +++ b/dist/react-select.js @@ -341,6 +341,7 @@ var Select = _react2['default'].createClass({ allowCreate: _react2['default'].PropTypes.bool, // whether to allow creation of new entries autoBlur: _react2['default'].PropTypes.bool, autofocus: _react2['default'].PropTypes.bool, // autofocus the component on mount + autosize: _react2['default'].PropTypes.bool, // whether to enable autosizing or not backspaceRemoves: _react2['default'].PropTypes.bool, // whether backspace removes an item if there is no text input className: _react2['default'].PropTypes.string, // className for the outer element clearAllText: stringOrNode, // title for the "clear" control when multi: true @@ -355,11 +356,13 @@ var Select = _react2['default'].createClass({ ignoreCase: _react2['default'].PropTypes.bool, // whether to perform case-insensitive filtering inputProps: _react2['default'].PropTypes.object, // custom attributes for the Input isLoading: _react2['default'].PropTypes.bool, // whether the Select is loading externally or not (such as options being loaded) + joinValues: _react2['default'].PropTypes.bool, // joins multiple values into a single form field with the delimiter (legacy mode) labelKey: _react2['default'].PropTypes.string, // path of the label value in option objects matchPos: _react2['default'].PropTypes.string, // (any|start) match the start or entire string when filtering matchProp: _react2['default'].PropTypes.string, // (any|label|value) which option property to filter on menuBuffer: _react2['default'].PropTypes.number, // optional buffer (in px) between the bottom of the viewport and the bottom of the menu menuContainerStyle: _react2['default'].PropTypes.object, // optional style to apply to the menu container + menuRenderer: _react2['default'].PropTypes.func, // renders a custom menu with options menuStyle: _react2['default'].PropTypes.object, // optional style to apply to the menu multi: _react2['default'].PropTypes.bool, // multi-value input name: _react2['default'].PropTypes.string, // generates a hidden tag with this field name for html forms @@ -374,6 +377,8 @@ var Select = _react2['default'].createClass({ onMenuScrollToBottom: _react2['default'].PropTypes.func, // fires when the menu is scrolled to the bottom; can be used to paginate options onOpen: _react2['default'].PropTypes.func, // fires when the menu is opened onValueClick: _react2['default'].PropTypes.func, // onClick handler for value labels: function (value, event) {} + openAfterFocus: _react2['default'].PropTypes.bool, // boolean to enable opening dropdown when focused + optionClassName: _react2['default'].PropTypes.string, // additional class(es) to apply to the