FieldValidationDelay

data class FieldValidationDelay(val onMount: Duration = Duration.ZERO, val onChange: Duration = 250.milliseconds, val onBlur: Duration = Duration.ZERO)

Represents the settings for delayed execution of field validation.

Constructors

Link copied to clipboard
constructor(onMount: Duration = Duration.ZERO, onChange: Duration = 250.milliseconds, onBlur: Duration = Duration.ZERO)

Creates a new instance of FieldValidationDelay.

Properties

Link copied to clipboard

The delay before validation when the field loses focus.

Link copied to clipboard

The delay before validation when the field value changes.

Link copied to clipboard

The delay before the validation when the field mount.