@rcsb/rcsb-saguaro-app
    Preparing search index...
    interface InstanceSequenceConfig {
        beforeChangeCallback?: (
            x: InstanceSequenceOnchangeInterface,
            module: undefined | RcsbFvModulePublicInterface<{}, {}, {}, {}>,
        ) =>
            | undefined
            | Partial<
                {
                    asymId: string;
                    authId: string;
                    chrId: string;
                    entityId: string;
                    entryId: string;
                    operatorIds: string[];
                    queryId: string;
                    targetId: string;
                    upAcc: string;
                },
            >;
        defaultValue?: null
        | string;
        displayAuthId?: boolean;
        dropdownTitle?: string;
        filterInstances?: Set<string>;
        module?: InstanceModuleType;
        onChangeCallback?: (
            x: InstanceSequenceOnchangeInterface,
            module: RcsbFvModulePublicInterface,
        ) => void;
        selectButtonOptionProps?: (props: SelectOptionProps) => ReactNode;
    }
    Index

    Properties

    beforeChangeCallback?: (
        x: InstanceSequenceOnchangeInterface,
        module: undefined | RcsbFvModulePublicInterface<{}, {}, {}, {}>,
    ) =>
        | undefined
        | Partial<
            {
                asymId: string;
                authId: string;
                chrId: string;
                entityId: string;
                entryId: string;
                operatorIds: string[];
                queryId: string;
                targetId: string;
                upAcc: string;
            },
        >
    defaultValue?: null | string
    displayAuthId?: boolean
    dropdownTitle?: string
    filterInstances?: Set<string>
    onChangeCallback?: (
        x: InstanceSequenceOnchangeInterface,
        module: RcsbFvModulePublicInterface,
    ) => void
    selectButtonOptionProps?: (props: SelectOptionProps) => ReactNode