Interface UIFactSheetDropdown

UIFactSheetDropdown defines the configuration for a UIElement, which allows to search for Fact Sheets.

The associated value of the UIFactSheetDropdown is the id of the selected Fact Sheet. If no Fact Sheet is selected, use undefined or omit the value entry in the UIElementValues.

interface UIFactSheetDropdown {
    autoFocus?: boolean;
    facetFilters: FacetFilter[];
    id: string;
    label: string;
    type: "factSheetDropdown";
}

Hierarchy

Properties

autoFocus?: boolean

autoFocus is an optional parameter that allows the user to fine-tune the behavior on initially creating the factSheetDropdown. If it is set to true, the dropdown opens with the selection of queried factsheets on rendering and is in focus.

facetFilters: FacetFilter[]

facetFilters allows to define a certain amount of filters to be used while searching for the Fact Sheets in the dropdown.

id: string
label: string

label defines the dropdown's label.

type: "factSheetDropdown"

Generated using TypeDoc