We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 610442f commit 0c601faCopy full SHA for 0c601fa
src/aria/combobox/combobox.ts
@@ -86,6 +86,9 @@ export class Combobox<V> {
86
/** Whether the combobox is expanded. */
87
readonly expanded = computed(() => this._pattern.expanded());
88
89
+ /** The currently highlighted item in the combobox. */
90
+ readonly highlightedItem = computed(() => this._pattern.highlightedItem());
91
+
92
/** Input element connected to the combobox, if any. */
93
readonly inputElement = computed(() => this._pattern.inputs.inputEl());
94
0 commit comments