We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SelectNext is currently a controlled component which only propagates its selected value via callback props.
SelectNext
Our intention long term is to use it as a drop-in repacement of native selects, but for that, we need to be able to:
<form />
Some possible solutions to cover both:
input[type="hidden"]
<select />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SelectNext
is currently a controlled component which only propagates its selected value via callback props.Our intention long term is to use it as a drop-in repacement of native selects, but for that, we need to be able to:
SelectNext
if it is part of a<form />
.Some possible solutions to cover both:
input[type="hidden"]
with the component. Some libraries like headless UI follow this approach.<select />
which maps selected value. This is what react-aria does.The text was updated successfully, but these errors were encountered: