(values: string[])
| 191 | } |
| 192 | |
| 193 | setValues(values: string[]) { |
| 194 | this.selectedValues = new Set(values); |
| 195 | this.updateLabel(); |
| 196 | if (this.dropdownEl) { |
| 197 | this.renderDropdown(); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | getValues(): string[] { |
| 202 | return Array.from(this.selectedValues); |
no test coverage detected