@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
41 lines (40 loc) • 1.39 kB
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Date Range Picker**
* @description Facilitates the selection of date ranges through an input and calendar-based interface.
* @see [source](https://www.bits-ui.com/docs/components/date-range-picker#api-reference)
*/
export declare const slots: readonly ["root", "calendar", "trigger", "content", "arrow", "close", "input", "label", "segment", "gridBody", "gridHead", "gridRow", "grid", "headCell", "header", "heading", "nextButton", "prevButton", "cell", "day"];
/**
* **Date Range Picker**
* @description Facilitates the selection of date ranges through an input and calendar-based interface.
* @see [source](https://www.bits-ui.com/docs/components/date-range-picker#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Date Range Picker**
* @description Facilitates the selection of date ranges through an input and calendar-based interface.
* @see [source](https://www.bits-ui.com/docs/components/date-range-picker#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
calendar: {};
trigger: {};
content: {};
arrow: {};
close: {};
input: {};
label: {};
segment: {};
gridBody: {};
gridHead: {};
gridRow: {};
grid: {};
headCell: {};
header: {};
heading: {};
nextButton: {};
prevButton: {};
cell: {};
day: {};
}>;