Validation
Included validation options
Example
const question: Question = {
id: 'example input',
type: 'input',
label: 'Row 2',
validation: {
minLength: 5,
required: true,
min: 10,
minLength: 20,
max: 30,
maxLength: 34,
email: true,
pattern: 'testing' | /test+3/
}
}Custom validators
Implementation
Arguments
Registration
Usage
Last updated