Юниверс DG SDK UI
v2.15.0

Интерфейс ISelectFacetST

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[];
}

Иерархия (Просмотр сводки)

Индекс

Свойства

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[]