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