Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1718cf9
Update Readme for clarity on 1.0.0-beta
gertig Jun 23, 2016
758be7e
Merge pull request #1042 from gertig/patch-1
JedWatson Jun 26, 2016
c22d44c
fixes issue with an outline apear on the auto sized input inside the …
Jun 27, 2016
c67f0b2
Merge pull request #1047 from ryanzec/backspace-message-fix-css
JedWatson Jun 27, 2016
3ee7d86
fixed issue with chrome showing some extra spacing below the input in…
Jun 27, 2016
f3ea717
fixes issue with an outline apear on the auto sized input inside the …
Jun 27, 2016
99e4bc0
Merge pull request #1049 from ryanzec/backspace-message-fix-css
JedWatson Jun 28, 2016
01de8d3
Merge pull request #1048 from ryanzec/weird-spacing-fix
JedWatson Jun 28, 2016
0619d75
Stop propagation in pressing escape key
jmblog Jul 4, 2016
73fae12
Merge pull request #1066 from jmblog/stop-propagation-in-pressing-escape
JedWatson Jul 8, 2016
71a6930
Stopping propagation on esc, ref #1066
JedWatson Jul 8, 2016
53b331b
update required prop based on nextProps on update
mshwery Jul 9, 2016
1aea4bf
align jsdoc comments better
mshwery Jul 9, 2016
4729f00
Updating react-input-autosize, fixes #1073
JedWatson Jul 10, 2016
387ea38
Merge pull request #1078 from mshwery/bug/required-attr-on-update
JedWatson Jul 11, 2016
a6f4d6c
Fixing indentation issues
JedWatson Jul 10, 2016
55815b1
Updating react-gravatar
JedWatson Jul 11, 2016
cc52308
Updating build
JedWatson Jul 11, 2016
e3814f5
Fix the "Unknown prop `inputClassName` on <div> tag" warning
mxstbr Jul 11, 2016
b8e93e8
Merge pull request #1081 from mxstbr/fix-warning
JedWatson Jul 12, 2016
414b4fa
On focus check whether input ref is a real input or an input component
Jul 12, 2016
8a899fd
Adjust input clear call
pbrant Jul 12, 2016
b1893aa
Merge pull request #1091 from ccap/change-getinput-call
JedWatson Jul 17, 2016
89638ae
Merge branch 'master' into pr/1082
JedWatson Jul 17, 2016
5af2adc
Merge branch 'pr/1082'
JedWatson Jul 17, 2016
c8526b7
Updating build
JedWatson Jul 17, 2016
9943839
Updating changelog
JedWatson Jul 17, 2016
8c8f560
v1.0.0-beta14
JedWatson Jul 17, 2016
606ee00
Merge tag 'v1.0.0-beta14' into update-to-upstream-beta-14
Jul 22, 2016
df3f1a0
When opening the dropdown, scroll to the previous item
Jul 22, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## v1.0.0-beta14 / 2016-07-17

* fixed; `react-input-autosize` has been udpated to `1.1.0`, which includes fixes for the new warnings that React 15.2 logs
* fixed; "Unknown prop `inputClassName` on <div> tag" warning, thanks [Max Stoiber](https://github.com/mxstbr)
* fixed; Removed unnecessary `onUnfocus`, thanks [Johnny Nguyen](https://github.com/gojohnnygo)
* added; Support for react components in `searchPromptText`, thanks [Matt](https://github.com/hellaeon)
* fixed; focus bug on iOS, thanks [Tony deCatanzaro](https://github.com/tonydecat)
* fixed; Async bugs with Promises, thanks [Vladimir](https://github.com/VladimirPal) and [Ian Firkin](https://github.com/lobsteropteryx)
* fixed; `searchingText` bug, thanks [Tony deCatanzaro](https://github.com/tonydecat)
* improved; More antive-like input behaviour, thanks [Johnny Nguyen](https://github.com/gojohnnygo)
* fixed; Added missing unit (px) to `minWidth` attribute, thanks [Ian Witherow](https://github.com/ianwitherow)
* added; Support for assistive technologies, thanks [Dave Brotherstone](https://github.com/bruderstein)
* fixed; React error if `onChange` callback causes a root component to unmount, thanks [Nathan Norton](https://github.com/Xesued)
* fixed; Open menu is now closed if `disabled` becomes true, thanks [Jason Moon](https://github.com/jsnmoon)
* fixed; Prevent `getFocusableOptionIndex` from returning a disabled option, thanks [Brian Powers](https://github.com/brianspowers)
* added; Home, End, Page Up/Down support, thanks [Jason Kadrmas](https://github.com/blackjk3)
* fixed; Don't render `backspaceToRemoveMessage` if `backspaceRemoves` is set to false, thanks [Ryan Zec](https://github.com/ryanzec)
* fixed; Issue with an outline appearing on the auto sized input, thanks [Ryan Zec](https://github.com/ryanzec)
* fixed; Events don't propagate when `esc` is pressed, thanks [Yoshihide Jimbo](https://github.com/jmblog)
* fixed; Update `required` prop based on nextProps on update, thanks [Matt Shwery](https://github.com/mshwery)
* fixed; On focus check whether input ref is a real input or an input component, thanks [Peter Brant](https://github.com/pbrant) and [Greg Poole](https://github.com/gpoole)

Also a big thanks to [Brian Vaughn](https://github.com/bvaughn) for his help triaging issues for this release!

## v1.0.0-beta13.patch1 / 2016-06-22

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ You can enable multi-value selection by setting `multi={true}`. In this mode:
* The values of the selected items are joined using the `delimiter` prop to create the input value when `joinValues` is true
* A simple value, if provided, will be split using the `delimiter` prop
* The `onChange` event provides an array of selected options _or_ a comma-separated string of values (eg `"1,2,3"`) if `simpleValue` is true
* By default, only options in the `options` array can be selected. Setting `allowCreate` to true allows new options to be created if they do not already exist.
* By default, only options in the `options` array can be selected. Setting `allowCreate` to true allows new options to be created if they do not already exist. *NOTE:* `allowCreate` is not implemented in `1.0.0-beta`, if you need this option please stay on `0.9.x`.
* By default, selected options can be cleared. To disable the possibility of clearing a particular option, add `clearableValue: false` to that option:
```javascript
var options = [
Expand Down Expand Up @@ -256,7 +256,7 @@ function cleanInput(inputValue) {
Property | Type | Default | Description
:-----------------------|:--------------|:--------------|:--------------------------------
addLabelText | string | 'Add "{label}"?' | text to display when `allowCreate` is true
allowCreate | bool | false | allow new options to be created in multi mode (displays an "Add \<option> ?" item when a value not already in the `options` array is entered)
allowCreate | bool | false | allow new options to be created in multi mode (displays an "Add \<option> ?" item when a value not already in the `options` array is entered) [NOTE: not available in 1.0.0-beta]
autoBlur | bool | false | Blurs the input element after a selection has been made. Handy for lowering the keyboard on mobile devices
autofocus | bool | undefined | autofocus the component on mount
autoload | bool | true | whether to auto-load the default async options set
Expand Down Expand Up @@ -284,7 +284,7 @@ function cleanInput(inputValue) {
menuRenderer | func | undefined | Renders a custom menu with options; accepts the following named parameters: `menuRenderer({ focusedOption, focusOption, options, selectValue, valueArray })`
multi | bool | undefined | multi-value input
name | string | undefined | field name, for hidden `<input />` tag
newOptionCreator | func | undefined | factory to create new options when `allowCreate` is true
newOptionCreator | func | undefined | factory to create new options when `allowCreate` is true [NOTE: not available in 1.0.0-beta]
noResultsText | string | 'No results found' | placeholder displayed when there are no matching search results or a falsy value to hide it
onBlur | func | undefined | onBlur handler: `function(event) {}`
onBlurResetsInput | bool | true | whether to clear input on blur or not
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dist/react-select-plus.min.js",
"dist/react-select-plus.min.css"
],
"version": "1.0.0-beta13.patch1",
"version": "1.0.0-beta14",
"homepage": "https://github.com/HubSpot/react-select-plus",
"authors": [
"Trevor Burnham"
Expand Down
3 changes: 3 additions & 0 deletions dist/react-select-plus.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
.Select-control:hover {
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
outline: none;
}
.is-searchable.is-open > .Select-control {
cursor: text;
}
Expand Down
Loading