You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would at least allow using the dropdown using keyboard only, since it is currently possible to tab through the items (not following spec either, but well).
The Dropdown component can't be controlled using the keyboard.
According to https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-select-only/ users should be able to use the arrow keys to highlight items and scroll through the list, and select items using Enter or the spacebar. I believe this would require tracking the currently highlighted item using state.
A quick and "dirty" but simple solution could be to register a
@keypress
handler on the dropdown item like this:This would at least allow using the dropdown using keyboard only, since it is currently possible to tab through the items (not following spec either, but well).
Originally posted by @jh0ker in #596 (comment)
The text was updated successfully, but these errors were encountered: