跳转到内容

DateRangePickerDay API

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

导入

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

组件名称

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

属性

名称类型默认值描述
day*any
The date to show.
isEndOfHighlighting*boolfalse
Set to true if the day is the end of a highlighted date range.
isEndOfPreviewing*boolfalse
Set to true if the day is the start of a highlighted date range.
isHighlighting*boolfalse
Set to true if the day is in a highlighted date range.
isPreviewing*boolfalse
Set to true if the day is in a preview date range.
isStartOfHighlighting*boolfalse
Set to true if the day is the start of a highlighted date range.
isStartOfPreviewing*boolfalse
Set to true if the day is the end of a highlighted date range.
outsideCurrentMonth*boolfalse
If true, day is outside of month and will be hidden.
childrennode
The content of the component.
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
selectedboolfalse
If true, renders as selected.
sxArray<func
| object
| bool>
| func
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.

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

CSS

规则名称全局类名描述
root.MuiDateRangePickerDay-rootStyles applied to the root element.
rangeIntervalDayHighlight.MuiDateRangePickerDay-rangeIntervalDayHighlightStyles applied to the root element if isHighlighting=true and outsideCurrentMonth=false.
rangeIntervalDayHighlightStart.MuiDateRangePickerDay-rangeIntervalDayHighlightStartStyles applied to the root element if isStartOfHighlighting=true or day is the start of the month.
rangeIntervalDayHighlightEnd.MuiDateRangePickerDay-rangeIntervalDayHighlightEndStyles applied to the root element if isEndOfHighlighting=true or day is the end of the month.
rangeIntervalPreview.MuiDateRangePickerDay-rangeIntervalPreviewStyles applied to the preview element.
rangeIntervalDayPreview.MuiDateRangePickerDay-rangeIntervalDayPreviewStyles applied to the root element if isPreviewing=true and outsideCurrentMonth=false.
rangeIntervalDayPreviewStart.MuiDateRangePickerDay-rangeIntervalDayPreviewStartStyles applied to the root element if isStartOfPreviewing=true or day is the start of the month.
rangeIntervalDayPreviewEnd.MuiDateRangePickerDay-rangeIntervalDayPreviewEndStyles applied to the root element if isEndOfPreviewing=true or day is the end of the month.
day.MuiDateRangePickerDay-dayStyles applied to the day element.
dayOutsideRangeInterval.MuiDateRangePickerDay-dayOutsideRangeIntervalStyles applied to the day element if isHighlighting=false.
dayInsideRangeInterval.MuiDateRangePickerDay-dayInsideRangeIntervalStyles applied to the day element if selected=false and isHighlighting=true.
notSelectedDate.MuiDateRangePickerDay-notSelectedDateStyles applied to the day element if selected=false.

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

演示项目