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

    Represents a calendar day inside the month grid.

    interface CalendarDay {
        date: Date;
        day: number;
        isCurrentMonth: boolean;
        isDisabled: boolean;
        isSelected: boolean;
        isToday: boolean;
    }
    Index

    Properties

    date: Date

    The full date this cell represents.

    day: number

    Day of the month (1–31).

    isCurrentMonth: boolean

    Whether this day belongs to the currently displayed month.

    isDisabled: boolean

    Whether this day is outside the allowed min/max range.

    isSelected: boolean

    Whether this day matches the currently selected date.

    isToday: boolean

    Whether this day is today.