diff --git a/HISTORY.md b/HISTORY.md index 5ecb3aa6..8f0412ff 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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
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 diff --git a/README.md b/README.md index df5012b6..ecce1530 100644 --- a/README.md +++ b/README.md @@ -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 = [ @@ -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 \