SingleInputTimeRangeField API
API reference docs for the React SingleInputTimeRangeField component. Learn about the props, CSS, and other APIs of this exported module.
Component demos
Import
import { SingleInputTimeRangeField } from '@mui/x-date-pickers-pro/SingleInputTimeRangeField';
// or
import { SingleInputTimeRangeField } from '@mui/x-date-pickers-pro';Props of the native component are also available.
| Name | Type | Default | Description | 
|---|---|---|---|
| ampm | bool | `utils.is12HourCycleInCurrentLocale()` | 12h/24h view for hour selection clock. | 
| autoFocus | bool | false | If  | 
| clearable | bool | false | If  | 
| color | 'error' | 'info' | 'primary' | 'secondary' | 'success' | 'warning' | 'primary' | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. | 
| defaultValue | Array<object> | - | The default value. Use when the component is not controlled. | 
| disabled | bool | false | If  | 
| disableFuture | bool | false | If  | 
| disableIgnoringDatePartForTimeValidation | bool | false | Do not ignore date part when validating min/max time. | 
| disablePast | bool | false | If  | 
| focused | bool | - | If  | 
| format | string | - | Format of the date when rendered in the input(s). | 
| formatDensity | 'dense' | 'spacious' | "dense" | Density of the format when rendered in the input. Setting  | 
| FormHelperTextProps | object | - | Props applied to the  | 
| fullWidth | bool | false | If  | 
| helperText | node | - | The helper text content. | 
| id | string | - | The id of the  | 
| InputLabelProps | object | - | Props applied to the  | 
| inputProps | object | - | Attributes applied to the  | 
| InputProps | object | - | Props applied to the Input element. It will be a  | 
| inputRef | ref | - | Pass a ref to the  | 
| label | node | - | The label content. | 
| margin | 'dense' | 'none' | 'normal' | 'none' | If  | 
| maxTime | object | - | Maximal selectable time. The date part of the object will be ignored unless  | 
| minTime | object | - | Minimal selectable time. The date part of the object will be ignored unless  | 
| minutesStep | number | 1 | Step over minutes. | 
| name | string | - | Name attribute of the  | 
| onChange | func | - | Callback fired when the value changes. Signature: function(value: TValue, context: FieldChangeHandlerContext
 | 
| onClear | func | - | Callback fired when the clear button is clicked. | 
| onError | func | - | Callback fired when the error associated to the current value changes. Signature: function(error: TError, value: TValue) => void
 | 
| onSelectedSectionsChange | func | - | Callback fired when the selected sections change. Signature: function(newValue: FieldSelectedSections) => void
 | 
| readOnly | bool | false | It prevents the user from changing the value of the field (not from interacting with the field). | 
| referenceDate | object | The closest valid date using the validation props, except callbacks such as `shouldDisableDate`. Value is rounded to the most granular section used. | The date used to generate a part of the new value that is not present in the format when both  | 
| required | bool | false | If  | 
| selectedSections | 'all' | 'day' | 'empty' | 'hours' | 'meridiem' | 'minutes' | 'month' | 'seconds' | 'weekDay' | 'year' | number | { endIndex: number, startIndex: number } | - | The currently selected sections. This prop accept four formats: 1. If a number is provided, the section at this index will be selected. 2. If an object with a  | 
| shouldDisableTime | func | - | Disable specific time. Signature: function(value: TDate, view: TimeView) => boolean
 Returns: If  | 
| shouldRespectLeadingZeros | bool | `false` | If  | 
| size | 'medium' | 'small' | - | The size of the component. | 
| slotProps | object | {} | The props used for each component slot. | 
| slots | object | {} | Overridable component slots. See Slots API below for more details. | 
| sx | Array<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. | 
| timezone | string | The timezone of the `value` or `defaultValue` prop is defined, 'default' otherwise. | Choose which timezone to use for the value. Example: "default", "system", "UTC", "America/New_York". If you pass values from other timezones to some props, they will be converted to this timezone before being used. See the timezones documentation for more details. | 
| unstableFieldRef | func | object | - | The ref object used to imperatively interact with the field. | 
| value | Array<object> | - | The selected value. Used when the component is controlled. | 
| variant | 'filled' | 'outlined' | 'standard' | 'outlined' | The variant to use. | 
ref is forwarded to the root element.These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
| Class name | Rule name | Description | 
|---|---|---|
| .MuiSingleInputTimeRangeField-root | root | Styles applied to the root element. | 
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's styleOverridesproperty in a custom theme.