All Versions
91
Latest Version
Avg Release Cycle
50 days
Latest Release
2085 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v1.0.0-beta2 Changes
November 06, 2015๐ Changed since beta 1:
- Async options cache works again
- ๐ New style props for custom styling the component without modifying css
classes:
style
wrapperStyle
menuStyle
menuContainerStyle
- The menu opens and closes correctly when
searchable={false}
, there is still some work to do on this use-case
-
v1.0.0-beta14.patch1 Changes
July 25, 2016- (react-select-plus) On dropdown open, scroll to element above focused option instead of scrolling all the way to the top of the option group.
-
v1.0.0-beta14 Changes
July 17, 2016- ๐ fixed;
react-input-autosize
has been udpated to1.1.0
, which includes fixes for the new warnings that React 15.2 logs - ๐ fixed; "Unknown prop
inputClassName
on tag" warning, thanks Max Stoiber - ๐ fixed; Removed unnecessary
onUnfocus
, thanks Johnny Nguyen - โ added; Support for react components in
searchPromptText
, thanks Matt - ๐ fixed; focus bug on iOS, thanks Tony deCatanzaro
- ๐ fixed; Async bugs with Promises, thanks Vladimir and Ian Firkin
- ๐ fixed;
searchingText
bug, thanks Tony deCatanzaro - ๐ improved; More antive-like input behaviour, thanks Johnny Nguyen
- ๐ fixed; Added missing unit (px) to
minWidth
attribute, thanks Ian Witherow - โ added; Support for assistive technologies, thanks Dave Brotherstone
- ๐ fixed; React error if
onChange
callback causes a root component to unmount, thanks Nathan Norton - ๐ fixed; Open menu is now closed if
disabled
becomes true, thanks Jason Moon - ๐ fixed; Prevent
getFocusableOptionIndex
from returning a disabled option, thanks Brian Powers - โ added; Home, End, Page Up/Down support, thanks Jason Kadrmas
- ๐ fixed; Don't render
backspaceToRemoveMessage
ifbackspaceRemoves
is set to false, thanks Ryan Zec - ๐ fixed; Issue with an outline appearing on the auto sized input, thanks Ryan Zec
- ๐ fixed; Events don't propagate when
esc
is pressed, thanks Yoshihide Jimbo - ๐ fixed; Update
required
prop based on nextProps on update, thanks Matt Shwery - ๐ fixed; On focus check whether input ref is a real input or an input component, thanks Peter Brant and Greg Poole
Also a big thanks to Brian Vaughn for his help ๐ triaging issues for this release!
- ๐ fixed;
-
v1.0.0-beta13.patch1 Changes
June 22, 2016- ๐ (react-select-plus) intermediate release to incorporate upstream fix for https://github.com/JedWatson/react-select/issues/940
-
v1.0.0-beta13 Changes
April 30, 2016- โ added;
inputRenderer
prop, allows you to override the input component, thanks Sean Burke - โ added;
openOnFocus
prop, causes the menu to always open when the select control is focused, thanks HuysentruytRuben - โ added;
react-virtualised-select
HOC example, thanks Brian Vaughn - โ added;
tabSelectsValue
prop can be set to false to prevent selection of focused option when tab is pressed, thanks Byron Anderson - โ added; ability to override
resetValue
when clearing the control, thanks Alexander Luberg - โ added; input can be updated with
onInputChange
, thanks Brett DeWoody - โ added; Styles for .is-selected class, thanks Danny Herran
- ๐ fixed;
noResultsText
prop type is nowstringOrNode
for Async component, thanks Michael Groeneman - ๐ fixed;
onInputChange
is wrapped by Async component, thanks Eric O'Connell - ๐ fixed;
scrollMenuIntoView
behaviour in IE10, thanks Ivan Jager - ๐ fixed; isEqualNode replaced with strict equality check, thanks Alexandre Balhier
- ๐ fixed; issue with value object not being passed to
handleRequired
, thanks Andrew Hite - ๐ fixed; the menu-outer container is no longer rendered when it does not contain anything, thanks Kuan
- ๐ improved; better support for IE8 in styles, thanks Rockallite Wulf
- โ added;
-
v1.0.0-beta12 Changes
April 02, 2016- โ added;
menuRenderer
method and example for effeciently rendering thousands of options, thanks Brian Vaughn - โ added;
optionClassName
prop, thanks Max Tyler - โ added;
renderInvalidValues
prop for showing values that do not match options
- โ added;
-
v1.0.0-beta11 Changes
March 09, 2016- โก๏ธ updated dependencies to allow use with React 15.x
- ๐ changed; multiple selected values are now submitted using multiple inputs, thanks Trinh Hoang Nhu
- โ added;
joinValues
prop to revert the above change and submit multiple values in a single field with the delimiter
-
v1.0.0-beta10 Changes
February 23, 2016- ๐ fixed build issues with v1.0.0-beta9
-
v1.0.0-beta1 Changes
November 06, 2015This is a complete rewrite. Major changes include:
- Everything is simpler (I'm nearly done and the source code is only 60% of the size of the last version)
- No more timeouts or weird handlers, the restructuring has let me make everything more straight-forward
- The options array is no longer preprocessed into state, just retrieved from props
- The values array is now initialised in the Options array during render, and not stored in state, which along with the change to options makes the component more reliable and fixes issues with props not updating correctly
- The component no longer stores its own value in state (ever) - it needs to be
passed as a prop and handled with
onChange
. - 0๏ธโฃ Complex values are now enabled by default (so you're passed the option object, not its value); you can enable the legacy mode with a prop
- The Value and Option components have been cleaned up as well for consistency
- ๐ The hidden
<input>
field is now optional and the component is better suited to use in a rich React.js app than it was - You can disable options filtering to do the filtering externally with
onInputChange
- Accents on characters can now be ignored
- The
asyncOptions
prop has been replaced by a new wrapper component:Select.Async
Note that "Tag mode" (creating options on the fly) isn't reimplemented yet.
A full guide to the breaking changes and new features will be written up soon. ๐ In the meantime please see the new examples.
-
v0.9.1 Changes
November 01, 2015- โ added; new Contributors example w/ async options loading and custom value / label keys
- ๐ fixed; several issues with custom
valueKey
andlabelKey
props - ๐ fixed; autoload now loads options with no search input