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