UNPKG

@project-jade-garden/kobalte

Version:
27 lines (26 loc) 879 B
import { SVATraits } from 'jade-garden'; /** * **Pagination** * @description Allows the user to select a specific page from a range of pages. * @see [source](https://kobalte.dev/docs/core/components/pagination#anatomy) */ export declare const slots: readonly ["root", "ellipsis", "item", "items", "next", "previous"]; /** * **Pagination** * @description Allows the user to select a specific page from a range of pages. * @see [source](https://kobalte.dev/docs/core/components/pagination#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Pagination** * @description Allows the user to select a specific page from a range of pages. * @see [source](https://kobalte.dev/docs/core/components/pagination#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; ellipsis: {}; item: {}; items: {}; next: {}; previous: {}; }>;