@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface DateInputAdapterOptions

    Options for configuring a DateInputAdapter.

    interface DateInputAdapterOptions {
        firstDayOfWeek?: number;
        format?: DateFormat;
        max?: Date | null;
        min?: Date | null;
    }
    Index

    Properties

    firstDayOfWeek?: number

    First day of the week (0 = Sunday … 6 = Saturday). Defaults to locale detection.

    format?: DateFormat

    Date format for display and parsing. Defaults to locale detection.

    max?: Date | null

    Maximum selectable date.

    min?: Date | null

    Minimum selectable date.