Opens the submenu.
(opts?: {first?: boolean; last?: boolean})
| 829 | |
| 830 | /** Opens the submenu. */ |
| 831 | open(opts?: {first?: boolean; last?: boolean}) { |
| 832 | if (this.disabled()) { |
| 833 | return; |
| 834 | } |
| 835 | |
| 836 | this._expanded.set(true); |
| 837 | |
| 838 | if (opts?.first) { |
| 839 | this.submenu()?.first(); |
| 840 | } |
| 841 | if (opts?.last) { |
| 842 | this.submenu()?.last(); |
| 843 | } |
| 844 | } |
| 845 | |
| 846 | /** Closes the submenu. */ |
| 847 | close(opts: {refocus?: boolean} = {}) { |