()
| 191 | }; |
| 192 | |
| 193 | const triggerClick = () => { |
| 194 | if (disabled) { |
| 195 | return; |
| 196 | } |
| 197 | if (!visible) { |
| 198 | setTimeout(() => { |
| 199 | openSearch && inputRef.current && inputRef.current.focus(); |
| 200 | }, 100); |
| 201 | } |
| 202 | toggleVisible(); |
| 203 | checked2View(); |
| 204 | }; |
| 205 | |
| 206 | return <> |
| 207 | <_GlobalStyle /> |
nothing calls this directly
no test coverage detected