Expands the current menu or focuses the next item in the menubar.
()
| 421 | |
| 422 | /** Expands the current menu or focuses the next item in the menubar. */ |
| 423 | expand() { |
| 424 | const root = this.root(); |
| 425 | const activeItem = this.inputs.activeItem(); |
| 426 | |
| 427 | if (activeItem?.submenu()) { |
| 428 | activeItem.open({first: true}); |
| 429 | } else if (root instanceof MenuBarPattern) { |
| 430 | root.next(); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | /** Closes the menu. */ |
| 435 | close() { |
no test coverage detected