Skip to content

Commit d6b8211

Browse files
committed
fixup! fix(aria/combobox): focus out selection bug
1 parent fc8dc7e commit d6b8211

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/aria/private/combobox/combobox.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,10 @@ export interface ComboboxListboxControls<T extends ListItem<V>, V> {
105105
setValue: (value: V | undefined) => void; // For re-setting the value if the popup was destroyed.
106106
}
107107

108-
export interface ComboboxTreeControls<T extends ListItem<V>, V>
109-
extends ComboboxListboxControls<T, V> {
108+
export interface ComboboxTreeControls<T extends ListItem<V>, V> extends ComboboxListboxControls<
109+
T,
110+
V
111+
> {
110112
/** Whether the currently active item in the popup is collapsible. */
111113
isItemCollapsible: () => boolean;
112114

0 commit comments

Comments
 (0)