Replies: 1 comment 2 replies
-
Thanks for the discussion and use case, I think this will be covered by the issue we have here #7989 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a multi-select component. Since there isn't a RAC-native base component for it, I'm using a
Popover
with aListBox
inside for the options.However,
ArrowUp
andArrowDown
don't have the same behavior if, say, the popover and listbox were rendered inside of aSelect
. Similarly,shouldFocusOnHover
which is an internal prop is enabled when rendered in aSelect
, but since it's not public, I can't just apply it to the listbox without silencing the TS error.Is there an officially blessed way to get focus-on-hover and make the keyboard shortcuts work similarly to those used when using a
Select
wrapper?Beta Was this translation helpful? Give feedback.
All reactions