()
| 116 | }; |
| 117 | |
| 118 | let onFocus = () => { |
| 119 | let isVisible = isFocusVisible(); |
| 120 | if (isVisible) { |
| 121 | isFocused.current = true; |
| 122 | handleShow(); |
| 123 | } |
| 124 | }; |
| 125 | |
| 126 | let onBlur = () => { |
| 127 | isFocused.current = false; |
nothing calls this directly
no test coverage detected