(e: FocusEvent<HTMLInputElement>)
| 255 | }; |
| 256 | |
| 257 | let onFocus = (e: FocusEvent<HTMLInputElement>) => { |
| 258 | if (state.isFocused) { |
| 259 | return; |
| 260 | } |
| 261 | |
| 262 | if (props.onFocus) { |
| 263 | props.onFocus(e); |
| 264 | } |
| 265 | |
| 266 | state.setFocused(true); |
| 267 | }; |
| 268 | |
| 269 | let valueId = useValueId([ |
| 270 | state.selectionManager.selectedKeys, |
nothing calls this directly
no test coverage detected