Return true if this MenuItem has an attached menu and it is open.
()
| 139 | |
| 140 | /** Return true if this MenuItem has an attached menu and it is open. */ |
| 141 | isMenuOpen() { |
| 142 | return !!this._menuTrigger?.isOpen(); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Get a reference to the rendered Menu if the Menu is open and it is visible in the DOM. |