UNPKG

@project-jade-garden/bits-ui

Version:
25 lines (24 loc) 893 B
import { SVATraits } from 'jade-garden'; /** * **Date Picker** * @description Facilitates the selection of dates through an input and calendar-based interface. * @see [source](https://www.bits-ui.com/docs/components/date-picker#api-reference) */ export declare const slots: readonly ["root", "input", "label", "segment"]; /** * **Date Picker** * @description Facilitates the selection of dates through an input and calendar-based interface. * @see [source](https://www.bits-ui.com/docs/components/date-picker#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Date Picker** * @description Facilitates the selection of dates through an input and calendar-based interface. * @see [source](https://www.bits-ui.com/docs/components/date-picker#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; input: {}; label: {}; segment: {}; }>;