-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(select): work with auto width #706
Conversation
🎉 This PR is included in version 2.3.0-beta.5 🎉 The release is available on: Your semantic-release bot 📦🚀 |
If options are wider than select, popover should be bigger, I think that was our decision and we applied this in dropdown. Maybe we need a fix for select as well. Do you agree @buseselvi ? |
Yes, it would be nice to give the popover the ability to be wider than the input, like in the dropdown button. I think we will also need this when developing the date picker component in the future. |
🎉 This PR is included in version 2.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This PR adds the capability to our select working with
auto
sizing. If you setwidth: auto;
to select component, it's width becomes fluid respected to its current label, placeholder, or selected value.Closes #693