@sheerid/jslib
    Preparing search index...

    Interface FormFieldComponentProps<T>

    interface FormFieldComponentProps<T = any> {
        autoFocus?: boolean;
        disabled?: boolean;
        errorId?: ErrorId;
        intl?: InjectedIntl;
        isErrored?: boolean;
        isRequired?: boolean;
        label?: Element;
        onChange: (value: T) => void;
        onKeyDown?: Function;
        placeholder?: string;
        value: T;
        verificationService?: VerificationService;
    }

    Type Parameters

    • T = any
    Index

    Properties

    autoFocus?: boolean
    disabled?: boolean
    errorId?: ErrorId
    intl?: InjectedIntl
    isErrored?: boolean
    isRequired?: boolean
    label?: Element
    onChange: (value: T) => void
    onKeyDown?: Function
    placeholder?: string
    value: T
    verificationService?: VerificationService