CalendarPicker API
API documentation for the React CalendarPicker component. Learn about the available props, and the CSS API.
Import
import CalendarPicker from '@material-ui/lab/CalendarPicker';
// ou
import { CalendarPicker } from '@material-ui/lab';Component name
The nameMuiCalendarPicker can be used when providing default props or style overrides in the theme.Propriedades
| Nome | Tipo | Padrão | Descrição | 
|---|---|---|---|
| onChange* | func | Callback fired on date change | |
| allowKeyboardControl | bool | false | Enables keyboard listener for moving between days in calendar. Defaults to true unless the ClockPicker is used inside a Static* picker component. | 
| defaultCalendarMonth | any | Default calendar month displayed when value={null}. | |
| loading | bool | false | If true renders LoadingComponent in calendar instead of calendar view. Can be used to preload information and show it in calendar. | 
| maxDate | any | Max selectable date. @DateIOType | |
| minDate | any | Min selectable date. @DateIOType | |
| onMonthChange | func | Callback firing on month change. @DateIOType | |
| onViewChange | func | Callback fired on view change. | |
| openTo | 'day' | 'month' | 'year'  | 'day' | Initially open view. | 
| reduceAnimations | bool | typeof navigator !== 'undefined' && /(android)/i.test(navigator.userAgent) | Disable heavy animations. | 
| renderLoading | func | () => <span data-mui-test="loading-progress">...</span> | Component displaying when passed loading true. | 
| shouldDisableDate | func | Disable specific date. @DateIOType | |
| shouldDisableYear | func | Disable specific years dynamically. Works like shouldDisableDate but for year selection view @DateIOType. | |
| view | 'day' | 'month' | 'year'  | Controlled open view. | |
| views | Array<'day' | 'month' | 'year'>  | ['year', 'day'] | Views for calendar picker. | 
O
ref é encaminhado para o elemento raiz.CSS
| Rule name | Global class | Descrição | 
|---|---|---|
| root | .MuiCalendarPicker-root | |
| viewTransitionContainer | .MuiCalendarPicker-viewTransitionContainer | |
| fullHeightContainer | .MuiCalendarPicker-fullHeightContainer | 
You can override the style of the component using one of these customization options:
- With a rule name of the 
classesobject prop. - With a global class name.
 - With a theme and an 
styleOverridesproperty.