Whether the panel is allowed to open.
()
| 1320 | |
| 1321 | /** Whether the panel is allowed to open. */ |
| 1322 | protected _canOpen(): boolean { |
| 1323 | return !this._panelOpen && !this.disabled && this.options?.length > 0 && !!this._overlayDir; |
| 1324 | } |
| 1325 | |
| 1326 | /** Focuses the select element. */ |
| 1327 | focus(options?: FocusOptions): void { |