Whether the tree node is disabled.
()
| 42 | |
| 43 | /** Whether the tree node is disabled. */ |
| 44 | async isDisabled(): Promise<boolean> { |
| 45 | return coerceBooleanProperty(await (await this.host()).getProperty('aria-disabled')); |
| 46 | } |
| 47 | |
| 48 | /** Gets the level of the tree node. Note that this gets the aria-level and is 1 indexed. */ |
| 49 | async getLevel(): Promise<number> { |
no test coverage detected