Arc.React
    Preparing search index...

    Interface WrappedFieldProps<TValue>

    Props that your wrapped component will receive

    interface WrappedFieldProps<TValue = unknown> {
        errors: string[];
        invalid: boolean;
        onBlur?: () => void;
        onChange: (valueOrEvent: unknown) => void;
        required: boolean;
        value: TValue;
    }

    Type Parameters

    • TValue = unknown
    Index

    Properties

    errors: string[]
    invalid: boolean
    onBlur?: () => void
    onChange: (valueOrEvent: unknown) => void
    required: boolean
    value: TValue