Preparing search index...

    Props for the SeasonalityCalendar component

    type SeasonalityCalendarProps = {
        testID: string;
        selectedMonths: string[];
        onMonthsChange?: (months: string[]) => void;
        readOnly?: boolean;
    }
    Index

    Properties

    testID: string

    Unique identifier for testing and accessibility

    selectedMonths: string[]

    Array of month numbers ('1' to '12') that are selected

    onMonthsChange?: (months: string[]) => void

    Callback fired when month selection changes (omit for read-only mode)

    readOnly?: boolean

    Whether the calendar should be read-only (default: false)