Gets a boolean promise indicating if the select is empty (no value is selected).
()
| 60 | |
| 61 | /** Gets a boolean promise indicating if the select is empty (no value is selected). */ |
| 62 | async isEmpty(): Promise<boolean> { |
| 63 | return (await this.host()).hasClass(`${this._prefix}-select-empty`); |
| 64 | } |
| 65 | |
| 66 | /** Gets a boolean promise indicating if the select is in multi-selection mode. */ |
| 67 | async isMultiple(): Promise<boolean> { |
no test coverage detected