Skip to content

MobileDateRangePicker API

API documentation for the React MobileDateRangePicker component. Learn about the available props and the CSS API.

Import

import MobileDateRangePicker from '@mui/lab/MobileDateRangePicker';
// or
import { MobileDateRangePicker } from '@mui/lab';
You can learn about the difference by reading this guide on minimizing bundle size.

Props

NameTypeDefaultDescription
onChange*func
Callback fired when the value (the selected date range) changes @DateIOType.
renderInput*func
The renderInput prop allows you to customize the rendered input. The startProps and endProps arguments of this render prop contains props of TextField, that you need to forward to the range start/end inputs respectively. Pay specific attention to the ref and inputProps keys.
value*Array<any
| Date
| number
| string>
The value of the date range picker.
acceptRegexRegExp/\dap/gi
Regular expression to detect "accepted" symbols.
allowSameDateSelectionboolfalse
If true, onChange is fired on click even if the same date is selected.
calendars1
| 2
| 3
2
The number of calendars that render on desktop.
cancelTextnode'Cancel'
Cancel text message.
classNamestring
className applied to the root component.
clearableboolfalse
If true, it shows the clear action in the picker dialog.
clearTextnode'Clear'
Clear text message.
components{ LeftArrowButton?: elementType, LeftArrowIcon?: elementType, OpenPickerIcon?: elementType, RightArrowButton?: elementType, RightArrowIcon?: elementType, SwitchViewButton?: elementType, SwitchViewIcon?: elementType }{}
The components used for each slot. Either a string to use a HTML element or a component.
componentsPropsobject{}
The props used for each slot inside.
defaultCalendarMonthany
Default calendar month displayed when value={null}.
DialogPropsobject
Props applied to the Dialog element.
disableAutoMonthSwitchingboolfalse
If true, after selecting start date calendar will not automatically switch to the month of end date.
disableCloseOnSelectbool`true` for Desktop, `false` for Mobile (based on the chosen wrapper and `desktopModeMediaQuery` prop).
If true the popup or dialog will immediately close after submitting full date.
disabledboolfalse
If true, the picker and text field are disabled.
disableHighlightTodayboolfalse
If true, todays date is rendering without highlighting with circle.
disableMaskedInputboolfalse
Disable mask on the keyboard, this should be used rarely. Consider passing proper mask for your format.
disableOpenPickerboolfalse
Do not render open picker button (renders only text field with validation).
endTextnode'End'
Text for end input label and toolbar placeholder.
getOpenDialogAriaTextfunc(value, utils) => `Choose date, selected date is ${utils.format(utils.date(value), 'fullDate')}`
Get aria-label text for control that opens picker dialog. Aria-label text must include selected date. @DateIOType
getViewSwitchingButtonTextfunc
Get aria-label text for switching between views button.
InputAdornmentPropsobject
Props to pass to keyboard input adornment.
inputFormatstring
Format string.
inputReffunc
| { current?: object }
Pass a ref to the input element.
leftArrowButtonTextstring
Left arrow icon aria-label text.
loadingboolfalse
If true renders LoadingComponent in calendar instead of calendar view. Can be used to preload information and show it in calendar.
maskstring'__/__/____'
Custom mask. Can be used to override generate from format. (e.g. __/__/____ __:__ or __/__/____ __:__ _M).
maxDateanydefaultMaxDate
Max selectable date. @DateIOType
minDateanydefaultMinDate
Min selectable date. @DateIOType
okTextnode'OK'
Ok button text.
onAcceptfunc
Callback fired when date is accepted @DateIOType.
onClosefunc
Callback fired when the popup requests to be closed. Use in controlled mode (see open).
onErrorfunc
Callback that fired when input value or new value prop validation returns new validation error (or value is valid after error). In case of validation error detected reason prop return non-null value and TextField must be displayed in error state. This can be used to render appropriate form error.
Read the guide about form integration and error displaying.
onMonthChangefunc
Callback firing on month change. @DateIOType
onOpenfunc
Callback fired when the popup requests to be opened. Use in controlled mode (see open).
onViewChangefunc
Callback fired on view change.
openboolfalse
Control the popup or dialog open state.
OpenPickerButtonPropsobject
Props to pass to keyboard adornment button.
orientation'landscape'
| 'portrait'
Force rendering in particular orientation.
readOnlyboolfalse
Make picker read only.
reduceAnimationsbooltypeof navigator !== 'undefined' && /(android)/i.test(navigator.userAgent)
Disable heavy animations.
renderDayfunc
Custom renderer for <DateRangePicker /> days. @DateIOType
renderLoadingfunc() => <span data-mui-test="loading-progress">...</span>
Component displaying when passed loading true.
rifmFormatterfunc
Custom formatter to be passed into Rifm component.
rightArrowButtonTextstring
Right arrow icon aria-label text.
shouldDisableDatefunc
Disable specific date. @DateIOType
shouldDisableYearfunc
Disable specific years dynamically. Works like shouldDisableDate but for year selection view @DateIOType.
showDaysOutsideCurrentMonthboolfalse
If true, days that have outsideCurrentMonth={true} are displayed.
showTodayButtonboolfalse
If true, the today button is displayed. Note that showClearButton has a higher priority.
showToolbarboolfalse
If true, show the toolbar even in desktop mode.
startTextnode'Start'
Text for start input label and toolbar placeholder.
todayTextnode'Today'
Today text message.
ToolbarComponentelementType
Component that will replace default toolbar renderer.
toolbarFormatstring
Date format, that is displaying in toolbar.
toolbarPlaceholdernode'–'
Mobile picker date value placeholder, displaying if value === null.
toolbarTitlenode'Select date range'
Mobile picker title, displaying in the toolbar.

The ref is forwarded to the root element.

Demos