(scope: Element[], tabbable: boolean = true)
| 556 | } |
| 557 | |
| 558 | function focusFirstInScope(scope: Element[], tabbable: boolean = true) { |
| 559 | focusElement(getFirstInScope(scope, tabbable)); |
| 560 | } |
| 561 | |
| 562 | function useAutoFocus(scopeRef: RefObject<Element[] | null>, autoFocus?: boolean) { |
| 563 | const autoFocusRef = React.useRef(autoFocus); |
no test coverage detected