@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
34 lines (33 loc) • 1.14 kB
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Combobox**
* @description Enables users to pick from a list of options displayed in a dropdown.
* @see [source](https://www.bits-ui.com/docs/components/combobox#api-reference)
*/
export declare const slots: readonly ["root", "input", "separator", "arrow", "trigger", "content", "contentStatic", "item", "group", "groupHeading", "viewport", "scrollDownButton", "scrollUpButton"];
/**
* **Combobox**
* @description Enables users to pick from a list of options displayed in a dropdown.
* @see [source](https://www.bits-ui.com/docs/components/combobox#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Combobox**
* @description Enables users to pick from a list of options displayed in a dropdown.
* @see [source](https://www.bits-ui.com/docs/components/combobox#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
input: {};
separator: {};
arrow: {};
trigger: {};
content: {};
contentStatic: {};
item: {};
group: {};
groupHeading: {};
viewport: {};
scrollDownButton: {};
scrollUpButton: {};
}>;