@sheerid/jslib
    Preparing search index...

    Interface InputSelectComponentProps<T>

    interface InputSelectComponentProps<T = any> {
        disabled?: boolean;
        intl?: InjectedIntl;
        isErrored?: boolean;
        isRequired?: boolean;
        label?: string | Element;
        onChange: (choice: T) => void;
        onKeyDown?: InputSelectOnKeyDown;
        options: FormSelectChoice<string | number, string>[];
        placeholder?: string;
        suppressPlaceholder?: boolean;
        value: T;
    }

    Type Parameters

    • T = any
    Index

    Properties

    disabled?: boolean
    intl?: InjectedIntl
    isErrored?: boolean
    isRequired?: boolean
    label?: string | Element
    onChange: (choice: T) => void
    options: FormSelectChoice<string | number, string>[]
    placeholder?: string
    suppressPlaceholder?: boolean
    value: T