Roqueform
    Preparing search index...

    Type Alias FieldEventType

    FieldEventType:
        | "valueChanged"
        | "initialValueChanged"
        | "validityChanged"
        | "errorAdded"
        | "errorCaught"
        | "errorDeleted"
        | "errorsCleared"
        | "annotationsChanged"
        | "validationStarted"
        | "validationFinished"

    The well-known events published by a Field.

    "valueChanged"
    The new value was set to the target field. The event payload contains the old value.
    "initialValueChanged"
    The new initial value was set to the target field. The event payload contains the old initial value.
    "validityChanged"
    The field's validity state has changed. The event payload contains the previous validity state.
    "errorAdded"
    An error was added to a field. The event payload contains an error that was added.
    "errorCaught"
    An event type that notifies the errors plugin that an error must be added to a field. The event payload must contain an error to add.
    "errorDeleted"
    An error was deleted from a field. The event payload contains an error that was deleted.
    "errorsCleared"
    All errors were removed from the field. The event payload contains the previous array of errors.
    "annotationsChanged"
    Field annotations were patched. The event payload contains the annotations before the patch was applied.
    "validationStarted"
    The validation of the field has started. The event payload contains the validation that has started.
    "validationFinished"
    The validation of the field has finished. The event payload contains the validation that has finished.