()
| 33 | if (!container) return; |
| 34 | |
| 35 | const focusable = () => |
| 36 | Array.from(container.querySelectorAll<HTMLElement>(FOCUSABLE_SELECTORS)).filter( |
| 37 | (el) => !el.closest("[aria-hidden='true']") |
| 38 | ); |
| 39 | |
| 40 | const handleKeyDown = (e: KeyboardEvent) => { |
| 41 | if (e.key !== "Tab") return; |
no outgoing calls
no test coverage detected