Preparing search index...

    Interface LookupAttributeSTRendererProps<STORE, ST>

    interface LookupAttributeSTRendererProps<
        STORE extends RelatedDataRecordStoreType,
        ST extends LookupAttributeST,
    > {
        autoFocus?: boolean;
        createRelatedRecordStore: LookupAttributeSTRecordsStoreBuilder<STORE>;
        dropdownRightExtraItems?: ReactNode;
        getSelectComponent: LookupAttributeSTFieldRenderer<STORE>;
        metaKey?: MetaEntityKey;
        onAddTerm?: () => void;
        onDelete: () => void;
        searchTerm: ST;
        searchTermList: AbstractSearchTerm[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    autoFocus?: boolean
    createRelatedRecordStore: LookupAttributeSTRecordsStoreBuilder<STORE>
    dropdownRightExtraItems?: ReactNode
    metaKey?: MetaEntityKey
    onAddTerm?: () => void
    onDelete: () => void
    searchTerm: ST
    searchTermList: AbstractSearchTerm[]