Home > @uniformdev/design-system > CalendarProps

CalendarProps type

Signature:

type CalendarProps = Pick<CalendarProps$1<DateValue>, 'autoFocus' | 'isDisabled' | 'isReadOnly' | 'isInvalid'> & Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'onBlur' | 'onFocus'> & {
    value: IsoDateString | null | undefined;
    timeZone: string;
    minValue?: IsoDateString;
    maxValue?: IsoDateString;
    onChange?: (value: IsoDateString) => void;
};

References: IsoDateString