Handles keydown events for the combobox.
(event: KeyboardEvent)
| 175 | |
| 176 | /** Handles keydown events for the combobox. */ |
| 177 | onKeydown(event: KeyboardEvent) { |
| 178 | if (!this.inputs.disabled()) { |
| 179 | this.keydown().handle(event); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | /** Handles click events for the combobox. */ |
| 184 | onClick(event: PointerEvent) { |