Replies: 1 comment
-
It is shown in some public documentation examples so we do consider it a stable API.
Could you describe more about your use-case? Autocomplete is potentially related as it also uses virtual focus. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team,
I'm building a custom
Select
component usingreact-aria
, and I'm relying onListBox
for the list UI. I need to control focus manually (e.g., viaaria-activedescendant
) and handle keyboard navigation myself.I came across the
ListKeyboardDelegate
class, which seems to work well for things likegetKeyBelow
,getKeyAbove
, etc. However, I noticed that it's not part of the public documentation, so I assume it's considered internal.My question is:
Is it safe to use
ListKeyboardDelegate
in my own component, or is it likely to break in a future release?I'm trying to stick as closely as possible to internal patterns to avoid reimplementing keyboard logic, but I also want to avoid relying on unstable APIs.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions