@project-jade-garden/reka-ui
Version:
Reka UI anatomy slots for headless design
30 lines (29 loc) • 920 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Date Range Field**
* @description Allows users to input a range of dates within a designated field.
* @see [source](https://reka-ui.com/docs/components/date-range-field#anatomy)
*/
export declare const slots: readonly ["root", "input"];
/**
* **Date Range Field**
* @description Allows users to input a range of dates within a designated field.
* @see [source](https://reka-ui.com/docs/components/date-range-field#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Date Range Field**
* @description Allows users to input a range of dates within a designated field.
* @see [source](https://reka-ui.com/docs/components/date-range-field#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {
readonly: "";
invalid: "";
};
input: {
disabled: "";
invalid: "";
placeholder: "";
};
}>;