(e: FocusEvent)
| 242 | state.setFocused(true); |
| 243 | }, |
| 244 | onBlur(e: FocusEvent) { |
| 245 | if (state.isOpen) { |
| 246 | return; |
| 247 | } |
| 248 | |
| 249 | if (props.onBlur) { |
| 250 | props.onBlur(e); |
| 251 | } |
| 252 | |
| 253 | if (props.onFocusChange) { |
| 254 | props.onFocusChange(false); |
| 255 | } |
| 256 | |
| 257 | state.setFocused(false); |
| 258 | } |
| 259 | }), |
| 260 | valueProps: { |
| 261 | id: valueId |
nothing calls this directly
no test coverage detected