(value: string, selectValue: boolean = true)
| 440 | } |
| 441 | |
| 442 | setSearchValue(value: string, selectValue: boolean = true) { |
| 443 | this.searchInput.value = value; |
| 444 | if (selectValue) { |
| 445 | this.searchInput.select(); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | destroy() { |
| 450 | this.panelEl.remove(); |
no outgoing calls
no test coverage detected