Opens the submenu.
(opts?: {first?: boolean; last?: boolean})
| 822 | |
| 823 | /** Opens the submenu. */ |
| 824 | open(opts?: {first?: boolean; last?: boolean}) { |
| 825 | if (this.disabled()) { |
| 826 | return; |
| 827 | } |
| 828 | |
| 829 | this._expanded.set(true); |
| 830 | |
| 831 | if (opts?.first) { |
| 832 | this.submenu()?.first(); |
| 833 | } |
| 834 | if (opts?.last) { |
| 835 | this.submenu()?.last(); |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | /** Closes the submenu. */ |
| 840 | close(opts: {refocus?: boolean} = {}) { |