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