* Clear the input
()
| 189 | * Clear the input |
| 190 | */ |
| 191 | clear(): void { |
| 192 | if (!this.inputEl) return; |
| 193 | |
| 194 | this.inputEl.value = ''; |
| 195 | this.updateClearButtonVisibility(); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Clean up event listeners and timers |
no test coverage detected