Interface ComboBoxOption

interface ComboBoxOption {
    value?: any;
    label: ReactNode;
    hint?: string;
    hintPrefix?: string;
    searchLabel?: string;
    childrenCount?: number;
    isSection?: boolean;
    drillDown?: DataLocator;
    drillDownOptionFactory?: ComboBoxOptionsFactory;
    addVariable?: string;
    childCategory?: DropdownCategoryType;
    iconUri?: string;
    iconType?: SvgIconType;
}

Properties

value?: any
label: ReactNode
hint?: string
hintPrefix?: string
searchLabel?: string
childrenCount?: number
isSection?: boolean
drillDown?: DataLocator
drillDownOptionFactory?: ComboBoxOptionsFactory
addVariable?: string
childCategory?: DropdownCategoryType
iconUri?: string
iconType?: SvgIconType