(args: any)
| 409 | ); |
| 410 | |
| 411 | const handleFocus = (args: any) => { |
| 412 | if (disabled || !editable) { |
| 413 | return; |
| 414 | } |
| 415 | |
| 416 | setFocused(true); |
| 417 | |
| 418 | rest.onFocus?.(args); |
| 419 | }; |
| 420 | |
| 421 | const handleBlur = (args: Object) => { |
| 422 | if (!editable) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…