Hiyve Components - v1.0.0
    Preparing search index...

    Interface RecurrenceSelectorProps

    Props for RecurrenceSelector component

    interface RecurrenceSelectorProps {
        colors?: Partial<SchedulingColors>;
        disabled?: boolean;
        icons?: Partial<SchedulingIcons>;
        labels?: Partial<RecurrenceSelectorLabels>;
        maxDate?: Date;
        minDate?: Date;
        onChange?: (value: RecurrenceConfig | undefined) => void;
        startDate?: Date;
        styles?: Partial<SchedulingStyles>;
        sx?: SxProps<Theme>;
        value?: RecurrenceConfig;
    }
    Index

    Properties

    colors?: Partial<SchedulingColors>

    Custom colors

    disabled?: boolean

    Whether the selector is disabled

    icons?: Partial<SchedulingIcons>

    Custom icons

    labels?: Partial<RecurrenceSelectorLabels>

    Custom labels

    maxDate?: Date

    Maximum end date for recurrence

    minDate?: Date

    Minimum start date for recurrence

    onChange?: (value: RecurrenceConfig | undefined) => void

    Callback when value changes

    startDate?: Date

    The meeting start date — used to auto-include its day-of-week in weekly recurrence

    styles?: Partial<SchedulingStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop

    Current recurrence value