react-select@3.2.0
Minor Changes
-
c615e93d #4084 Thanks @JedWatson! - Changed the
cx
andgetValue
props that are passed to components into instance properties, which means they now pass a referential equality check on subsequent renders.This is helpful, for example, when you're optimising the performance of rendering custom Option components - see #3055
-
72f6036f #4306 Thanks @bladey! - Remove duplicate prop createOptionPosition
Patch Changes
-
ee638d46 #4275 Thanks @Methuselah96! - Adds react ^17.0.0 to peer dependencies for React 17 support
-
a0133f19 #4154 Thanks @brenshanny! - Creatable: Fixed removing MultiValues that have identical values. See issue #4137 for details.
-
d1e660c6 #4213 Thanks @eythort! - Added a guard to the
ScrollCaptor
component to check thatel
exists before callingremoveEventListener
, fixes intermittent errors -
a1e1db25 #4373 Thanks @Methuselah96! - Fixed value passed to onChange when clearing value
-
2ad29d61 #4136 Thanks @Methuselah96! - Base aria-live message on tabSelectsValue prop
-
ad890f27 #4326 Thanks @Methuselah96! - Updated react-input-autosize to v3.0.0
-
b28d9922 #3990 Thanks @nikitaindik! - Fixed onCreateOption is not always called for Creatable
-
24ba8702 #4289 Thanks @slimklim! - Added
innerProps
prop to the built-inMenuList
component to reduce the need for additional DOM nodes or forking internal code when passing additional props to the DOM element the MenuList component is rendering.See issue #4265 for an explanation.