Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface WithFinalFormOptions<InputValue, FieldValue, Props>

Type parameters

  • InputValue

  • FieldValue

  • Props = any

Hierarchy

  • InputHookConfig
  • FieldTransformationProps<InputValue, FieldValue, Props>
    • WithFinalFormOptions

Index

Properties

changeOnBlur?: boolean
errorBehavior?: FieldErrorBehavior

Error behavior to apply to this field in none is specified in the props See FieldErrorBehavior for more information

format?: FieldTransform<FieldValue, InputValue, Props>
isArray?: boolean
parse?: FieldTransform<InputValue, FieldValue, Props>
validate?: ValidationCallback<InputValue, Props>

Methods

  • mapFieldValueToProps(fieldValue: UseFinalFormFieldValue<FieldValue>): Props
  • Map field values returned by useFinalFormField to input props Should return all passed fields if not overwritten otherwise they won't be passed down to the input

    Parameters

    • fieldValue: UseFinalFormFieldValue<FieldValue>

    Returns Props