@open-formulieren/types
    Preparing search index...

    Interface ExtendedValidateOptions

    interface ExtendedValidateOptions {
        customMessage?: string;
        max?: number;
        maxDate?: any;
        maxLength?: number;
        maxSelectedCount?: number;
        maxTime?: null | string;
        min?: number;
        minDate?: any;
        minSelectedCount?: number;
        minTime?: null | string;
        pattern?: string;
        plugins?: string[];
        required?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    customMessage?: string
    max?: number

    Maximum value for numbers

    maxDate?: any
    maxLength?: number

    For text input, this checks the maximum length of text for valid input

    maxSelectedCount?: number
    maxTime?: null | string
    min?: number

    Minimum value for numbers

    minDate?: any
    minSelectedCount?: number
    minTime?: null | string
    pattern?: string

    For text input, this checks the text agains a Regular expression pattern.

    plugins?: string[]
    required?: boolean

    If this component is required.