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
Is your feature request related to a problem? Please describe.
Native selects have a feature where you can type a letter and it automatically focuses that menu-list item. That should be added to get parity if not for the obvious UX improvement.
Describe the solution you'd like
When the select surface or menu is focused, catch Key...Down? events, check to see if it's a letter, and then focus to the first element that has that.
For bonus points, store the typed keys and zoom to the first entry starting with a sequence of keys. Debounce clearing that state after 1? 2? seconds.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Native selects have a feature where you can type a letter and it automatically focuses that menu-list item. That should be added to get parity if not for the obvious UX improvement.
Describe the solution you'd like
When the select surface or menu is focused, catch Key...Down? events, check to see if it's a letter, and then focus to the first element that has that.
For bonus points, store the typed keys and zoom to the first entry starting with a sequence of keys. Debounce clearing that state after 1? 2? seconds.
The text was updated successfully, but these errors were encountered: