Files
ui/docs/content/3.components/calendar.md
2025-03-04 10:41:00 +01:00

263 lines
4.2 KiB
Markdown

---
title: Calendar
description: A calendar component for selecting single dates, multiple dates or date ranges.
category: element
links:
- label: Calendar
icon: i-custom-reka-ui
to: https://reka-ui.com/docs/components/calendar
- label: GitHub
icon: i-simple-icons-github
to: https://github.com/nuxt/ui/tree/v3/src/runtime/components/Calendar.vue
---
::note
This component relies on the [`@internationalized/date`](https://react-spectrum.adobe.com/internationalized/date/index.html) package which provides objects and functions for representing and manipulating dates and times in a locale-aware manner.
::
## Usage
Use the `v-model` directive to control the selected date.
::component-code
---
cast:
modelValue: DateValue
ignore:
- modelValue
external:
- modelValue
props:
modelValue: [2022, 2, 3]
---
::
Use the `default-value` prop to set the initial value when you do not need to control its state.
::component-code
---
cast:
defaultValue: DateValue
ignore:
- defaultValue
external:
- defaultValue
props:
defaultValue: [2022, 2, 6]
---
::
### Multiple
Use the `multiple` prop to allow multiple selections.
::component-code
---
prettier: true
cast:
modelValue: DateValue[]
ignore:
- multiple
- modelValue
external:
- modelValue
props:
multiple: true
modelValue: [[2022, 2, 4], [2022, 2, 6], [2022, 2, 8]]
---
::
### Range
Use the `range` prop to select a range of dates.
::component-code
---
prettier: true
cast:
modelValue: DateRange
ignore:
- range
- modelValue.start
- modelValue.end
external:
- modelValue
props:
range: true
modelValue:
start: [2022, 2, 3]
end: [2022, 2, 20]
---
::
### Color
Use the `color` prop to change the color of the calendar.
::component-code
---
props:
color: neutral
---
::
### Size
Use the `size` prop to change the size of the calendar.
::component-code
---
props:
size: xl
---
::
### Disabled
Use the `disabled` prop to disable the calendar.
::component-code
---
props:
disabled: true
---
::
### Number Of Months
Use the `numberOfMonths` prop to change the number of months in the calendar.
::component-code
---
props:
numberOfMonths: 3
---
::
### Month Controls
Use the `month-controls` prop to show the month controls. Defaults to `true`.
::component-code
---
props:
monthControls: false
---
::
### Year Controls
Use the `year-controls` prop to show the year controls. Defaults to `true`.
::component-code
---
props:
yearControls: false
---
::
### Fixed Weeks
Use the `fixed-weeks` prop to display the calendar with fixed weeks.
::component-code
---
props:
fixedWeeks: false
---
::
## Examples
### With chip events
Use the [Chip](/components/chip) component to add events to specific days.
::component-example
---
name: 'calendar-events-example'
---
::
### With disabled dates
Use the `is-date-disabled` prop with a function to mark specific dates as disabled.
::component-example
---
name: 'calendar-disabled-dates-example'
---
::
### With unavailable dates
Use the `is-date-unavailable` prop with a function to mark specific dates as unavailable.
::component-example
---
name: 'calendar-unavailable-dates-example'
---
::
### With min/max dates
Use the `min-value` and `max-value` props to limit the dates.
::component-example
---
name: 'calendar-min-max-dates-example'
---
::
### With other calendar systems
You can use other calenders from `@internationalized/date` to implement a different calendar system.
::component-example
---
name: 'calendar-other-system-example'
---
::
::note{to="https://react-spectrum.adobe.com/internationalized/date/Calendar.html#implementations"}
You can check all the available calendars on `@internationalized/date` docs.
::
### As a DatePicker
Use a [Button](/components/button) and a [Popover](/components/popover) component to create a date picker.
::component-example
---
name: 'calendar-date-picker-example'
---
::
### As a DateRangePicker
Use a [Button](/components/button) and a [Popover](/components/popover) component to create a date range picker.
::component-example
---
name: 'calendar-date-range-picker-example'
---
::
## API
### Props
:component-props
### Slots
:component-slots
### Emits
:component-emits
## Theme
:component-theme