Whether the menu is disabled.
()
| 47 | |
| 48 | /** Whether the menu is disabled. */ |
| 49 | async isDisabled(): Promise<boolean> { |
| 50 | const disabled = (await this.host()).getAttribute('disabled'); |
| 51 | return coerceBooleanProperty(await disabled); |
| 52 | } |
| 53 | |
| 54 | /** Whether the menu is open. */ |
| 55 | async isOpen(): Promise<boolean> { |
no test coverage detected