DateRangePicker
Calendar popover that lets user pick date ranges.
#
Documentation
#
#
Usage
#
"use client";
import {
DateRangePicker,
DateRangePickerContent,
DateRangePickerTrigger,
} from "@optiaxiom/react/unstable";
export function App() {
return (
<DateRangePicker>
<DateRangePickerTrigger w="384" />
<DateRangePickerContent />
</DateRangePicker>
);
}
#
Props
#
#
DateRangePicker
#
Supports all Popover props in addition to its own. Doesn't render its own HTML element.
Prop |
---|
defaultOpen The initial open state in uncontrolled mode.
|
defaultValue The initial selected value in uncontrolled mode.
|
disabled
|
modal When enabled interaction with outside elements will be disabled and only popover content will be visible to screen readers.
|
onOpenChange Handler that is called when the open state changes.
|
onValueChange Handler that is called when the selected value changes.
|
open The open state in controlled mode.
|
value The selected value in controlled mode.
|
#
DateRangePickerTrigger
#
Supports all Button props in addition to its own. Renders a <button>
element.
Prop |
---|
addonAfter Display content inside the button after
|
addonBefore Display content inside the button before
|
appearance Control the appearance by selecting between the different button types.
|
asChild Change the default rendered element for the one passed as a child, merging their props and behavior. Read the Composition guide for more details.
|
className
|
disabled Whether the button is disabled.
|
format
Default: |
hasCustomAnchor
|
icon Display an icon before or after the button content or omit
|
iconPosition Control whether to show the icon before or after the button content.
|
loading Whether to show loading spinner inside the button.
|
placeholder
Default: |
size Control the size of the button.
|
square Whether button should have square shape.
|
#
DateRangePickerContent
#
Supports all Box props in addition to its own. Renders a <div>
element.
Prop |
---|
addonAfter Display content inside the popover after the calendar.
|
addonBefore Display content inside the popover before the calendar.
|
align
|
asChild Change the default rendered element for the one passed as a child, merging their props and behavior. Read the Composition guide for more details.
|
className
|
holiday Apply the
|
max The latest month to end the month navigation.
|
maxH Whether to restrict the max-height of the content. Content is also restricted by the available height in the screen relative to the trigger.
|
min The earliest month to start the month navigation.
|
minW Whether to set the min-width to the width of the trigger.
|
onCloseAutoFocus Event handler called when auto-focusing on close. Can be prevented.
|
onEscapeKeyDown Event handler called when the escape key is down. Can be prevented.
|
onFocusOutside Event handler called when the focus moves outside of the
|
onInteractOutside Event handler called when an interaction happens outside the
|
onOpenAutoFocus Event handler called when auto-focusing on open. Can be prevented.
|
onPointerDownOutside Event handler called when the a
|
side
|
sideOffset
|
today The today’s date. Default is the current date.
|
weekend Apply the
|
withArrow Whether to show an arrow.
|
#
Changelog
#
#
0.13.10
#
- Added component