(container: HTMLElement, labels: MultiSelectLabelOptions)
| 155 | private labels: MultiSelectLabelOptions; |
| 156 | |
| 157 | constructor(container: HTMLElement, labels: MultiSelectLabelOptions) { |
| 158 | this.containerEl = container; |
| 159 | this.labels = labels; |
| 160 | this.render(); |
| 161 | this.attachEvents(); |
| 162 | this.updateLabel(); |
| 163 | } |
| 164 | |
| 165 | private render() { |
| 166 | this.selectEl = this.containerEl.createDiv({ cls: "custom-dropdown-select" }); |
nothing calls this directly
no test coverage detected