Version 3.0.0 released #34
csandman
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
NOTE: This version involves major structural changes, and while everything was tested it was only tested by one person. If you find any issues that have cropped up in this version, please please make an issue describing what broke 😄
What's Changed
react-select
to v5.@types/react-select
has been removed and all types have been updated to the natively exported ones.react-select
package.input
andinputContainer
keys to thechakraStyles
prop. Previously these did not work becausereact-select
used thereact-input-autosize
package for that component so it could not easily be replaced with achakra.input
. In react-select v5, they removed that dependency, so it became possible to replace/style that component.input
key in the original refers to the containing<div />
that wraps the<input />
element and there was no style key for the input itself. I renamed theirinput
style key toinputContainer
and added a newinput
key which references the input itself.react-select
package.components
module that was previously exported containing all of the custom Chakra components used by this package is now exported aschakraComponents
so the originalcomponents
object fromreact-select
can be imported as well.react-select
. To do so, you can import them all from thechakra-react-select
package:Full Changelog: v2.0.1...v3.0.0
Beta Was this translation helpful? Give feedback.
All reactions