@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
59 lines (58 loc) • 2.03 kB
TypeScript
import { SxProps } from '@mui/system';
import { Theme } from '@mui/material/styles';
import { MonthCalendarClasses } from './monthCalendarClasses';
import { BaseDateValidationProps, MonthValidationProps } from '../internals/models/validation';
import { PickerValidDate, TimezoneProps } from '../models';
export interface ExportedMonthCalendarProps {
/**
* Months rendered per row.
* @default 3
*/
monthsPerRow?: 3 | 4;
}
export interface MonthCalendarProps<TDate extends PickerValidDate> extends ExportedMonthCalendarProps, MonthValidationProps<TDate>, BaseDateValidationProps<TDate>, TimezoneProps {
autoFocus?: boolean;
className?: string;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<MonthCalendarClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
/** If `true` picker is disabled */
disabled?: boolean;
/**
* The selected value.
* Used when the component is controlled.
*/
value?: TDate | null;
/**
* The default selected value.
* Used when the component is not controlled.
*/
defaultValue?: TDate | null;
/**
* The date used to generate the new value when both `value` and `defaultValue` are empty.
* @default The closest valid month using the validation props, except callbacks such as `shouldDisableMonth`.
*/
referenceDate?: TDate;
/**
* Callback fired when the value changes.
* @template TDate
* @param {TDate} value The new value.
*/
onChange?: (value: TDate) => void;
/** If `true` picker is readonly */
readOnly?: boolean;
/**
* If `true`, today's date is rendering without highlighting with circle.
* @default false
*/
disableHighlightToday?: boolean;
onMonthFocus?: (month: number) => void;
hasFocus?: boolean;
onFocusedViewChange?: (hasFocus: boolean) => void;
gridLabelId?: string;
}