Home > @uniformdev/design-system > convertComboBoxGroupsToSelectableGroups

convertComboBoxGroupsToSelectableGroups() function

Converts combo box options that can contain optgroups Into a set of group-less options where the optgroup becomes a selectable option, and selecting it selects all of its children.

Signature:

declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGroupsToSelectableGroupsOptions): {
    groupedOptions: readonly ComboBoxSelectableItem[];
    selectedOptions: readonly ComboBoxSelectableOption[];
};

Parameters

ParameterTypeDescription
argsConvertComboBoxGroupsToSelectableGroupsOptions

Returns:

{ groupedOptions: readonly ComboBoxSelectableItem[]; }