ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface ReactSelectProps {
        options: SelectOption[];
        value?: SelectOption | SelectOption[] | null;
        defaultValue?: SelectOption | SelectOption[] | null;
        onChange?: (value: SelectOption | SelectOption[] | null) => void;
        placeholder?: string;
        isMulti?: boolean;
        isClearable?: boolean;
        isSearchable?: boolean;
        isDisabled?: boolean;
        isLoading?: boolean;
        className?: string;
        classNamePrefix?: string;
        name?: string;
        id?: string;
        error?: boolean;
        size?: "lg" | "md" | "sm";
        noOptionsMessage?: string;
        loadingMessage?: string;
    }
    Index

    Properties

    options: SelectOption[]
    value?: SelectOption | SelectOption[] | null
    defaultValue?: SelectOption | SelectOption[] | null
    onChange?: (value: SelectOption | SelectOption[] | null) => void
    placeholder?: string
    isMulti?: boolean
    isClearable?: boolean
    isSearchable?: boolean
    isDisabled?: boolean
    isLoading?: boolean
    className?: string
    classNamePrefix?: string
    name?: string
    id?: string
    error?: boolean
    size?: "lg" | "md" | "sm"
    noOptionsMessage?: string
    loadingMessage?: string