Search
    Preparing search index...
    interface ISelectFacetST {
        displayName?: string;
        id?: string;
        isMulti?: boolean;
        isSearchable?: boolean;
        key: string;
        options:
            | SelectOption<SelectSingleValueType>[]
            | (() => Promise<SelectOption<SelectSingleValueType>[]>);
        parentId?: string;
        selectedOptions?: SelectOption<SelectSingleValueType>[];
        termGroup: keyof ITermsGroup;
        value: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    displayName?: string
    id?: string
    isMulti?: boolean
    isSearchable?: boolean
    key: string
    options:
        | SelectOption<SelectSingleValueType>[]
        | (() => Promise<SelectOption<SelectSingleValueType>[]>)
    parentId?: string
    selectedOptions?: SelectOption<SelectSingleValueType>[]
    termGroup: keyof ITermsGroup
    value: string[]