--- sidebar_position: 4 --- # Range Mode Set the `mode` prop to `"range"` to enable the selection of a continuous range of dates in DayPicker. ```tsx ``` ## Range Mode Props | Prop Name | Type | Description | | ----------------- | ----------------------------------------------------------------------------------- | ------------------------------------------ | | `selected` | [`DateRange`](../api/type-aliases/DateRange.md) | The selected range. | | `onSelect` | [`OnSelectHandler`](../api/type-aliases/OnSelectHandler.md) | Event callback when a date is selected. | | `required` | `boolean` | Make the selection required. | | `min` | `number` | The minimum number of nights in the range. | | `max` | `number` | The maximum number of nights in the range. | | `excludeDisabled` | `boolean` | Exclude disabled dates from the range. | ## Min and Max Dates By default, a range can have a length of 0 nights, meaning the start date can be the same as the end date. Use the `min` prop to set the minimum number of nights. The range will remain "open" until at least the `min` number of nights are selected. Similarly, use the `max` prop to set the maximum number of nights. ```tsx ``` ## Required Ranges By setting the `required` prop, DayPicker ensures that the selected range cannot be unselected. ```tsx ``` ## Excluding Disabled Dates {#exclude-disabled} In `range` mode, disabled dates are included in the selected range by default. To exclude disabled dates from the range, use the `excludeDisabled` prop. If a disabled date is selected, the range will reset. ```tsx ```