UNPKG

@project-jade-garden/bits-ui

Version:
27 lines (26 loc) 958 B
import { SVATraits } from 'jade-garden'; /** * **Popover** * @description Display supplementary content or information when users interact with specific elements. * @see [source](https://www.bits-ui.com/docs/components/popover#api-reference) */ export declare const slots: readonly ["root", "arrow", "content", "contentStatic", "trigger", "close"]; /** * **Popover** * @description Display supplementary content or information when users interact with specific elements. * @see [source](https://www.bits-ui.com/docs/components/popover#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Popover** * @description Display supplementary content or information when users interact with specific elements. * @see [source](https://www.bits-ui.com/docs/components/popover#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; arrow: {}; content: {}; contentStatic: {}; trigger: {}; close: {}; }>;