feat(MultiSelect): Expose highlightedId and improve highlight handling for filterable

This commit is contained in:
dominikg 2022-03-09 14:02:40 +01:00
commit 47382962eb
4 changed files with 39 additions and 23 deletions

View file

@ -217,6 +217,12 @@ export interface MultiSelectProps
* @default null
*/
selectionRef?: null | HTMLDivElement;
/**
* Id of the highlighted ListBoxMenuItem
* @default null
*/
highlightedId?: null | string;
}
export default class MultiSelect extends SvelteComponentTyped<