UNPKG

@project-jade-garden/kobalte

Version:
29 lines (28 loc) 896 B
import { SVATraits } from 'jade-garden'; /** * **Popover** * @description A popover positioned relative to an anchor element. * @see [source](https://kobalte.dev/docs/core/components/popover#anatomy) */ export declare const slots: readonly ["root", "anchor", "arrow", "closeButton", "content", "description", "title", "trigger"]; /** * **Popover** * @description A popover positioned relative to an anchor element. * @see [source](https://kobalte.dev/docs/core/components/popover#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Popover** * @description A popover positioned relative to an anchor element. * @see [source](https://kobalte.dev/docs/core/components/popover#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; anchor: {}; arrow: {}; closeButton: {}; content: {}; description: {}; title: {}; trigger: {}; }>;