跳转到内容

CalendarPicker API

想要学习更多组件属性和 CSS API,可以查阅 React CalendarPicker 组件的 API 文档。

导入

import CalendarPicker from '@mui/lab/CalendarPicker';
// 或
import { CalendarPicker } from '@mui/lab';
您可以通过 阅读本指南以最小化捆包大小 来了解这种差异。

组件名称

The name MuiCalendarPicker can be used when providing default props or style overrides in the theme.

属性

名称类型默认值描述
onChange*func
Callback fired on date change
defaultCalendarMonthany
Default calendar month displayed when value={null}.
disabledboolfalse
If true, the picker and text field are disabled.
loadingboolfalse
If true renders LoadingComponent in calendar instead of calendar view. Can be used to preload information and show it in calendar.
maxDateany
Max selectable date. @DateIOType
minDateany
Min selectable date. @DateIOType
onMonthChangefunc
Callback firing on month change. @DateIOType
onViewChangefunc
Callback fired on view change.
openTo'day'
| 'month'
| 'year'
'day'
Initially open view.
readOnlyboolfalse
Make picker read only.
reduceAnimationsbooltypeof navigator !== 'undefined' && /(android)/i.test(navigator.userAgent)
Disable heavy animations.
renderLoadingfunc() => <span data-mui-test="loading-progress">...</span>
Component displaying when passed loading true.
shouldDisableDatefunc
Disable specific date. @DateIOType
shouldDisableYearfunc
Disable specific years dynamically. Works like shouldDisableDate but for year selection view @DateIOType.
view'day'
| 'month'
| 'year'
Controlled open view.
viewsArray<'day'
| 'month'
| 'year'>
['year', 'day']
Views for calendar picker.

ref 则会被传递到根元素中。

CSS

规则名称全局类名描述
root.MuiCalendarPicker-rootStyles applied to the root element.
viewTransitionContainer.MuiCalendarPicker-viewTransitionContainerStyles applied to the transition group element.

您可以使用组件自定义选项对组件进行个性化:

演示项目