(option?: InputFocusOptions)
| 49 | const holderRef = useRef<HolderRef>(null); |
| 50 | |
| 51 | const focus = (option?: InputFocusOptions) => { |
| 52 | if (inputRef.current) { |
| 53 | triggerFocus(inputRef.current, option); |
| 54 | } |
| 55 | }; |
| 56 | |
| 57 | // ====================== Value ======================= |
| 58 | const [value, setValue] = useMergedState(props.defaultValue, { |
no test coverage detected
searching dependent graphs…