Moves focus to the next focusable or tabbable element in the focus scope.
(opts?: FocusManagerOptions)
| 56 | export interface FocusManager { |
| 57 | /** Moves focus to the next focusable or tabbable element in the focus scope. */ |
| 58 | focusNext(opts?: FocusManagerOptions): FocusableElement | null; |
| 59 | /** Moves focus to the previous focusable or tabbable element in the focus scope. */ |
| 60 | focusPrevious(opts?: FocusManagerOptions): FocusableElement | null; |
| 61 | /** Moves focus to the first focusable or tabbable element in the focus scope. */ |
no outgoing calls