UNPKG

@project-jade-garden/kobalte

Version:
30 lines (29 loc) 959 B
import { SVATraits } from 'jade-garden'; /** * **Slider** * @description An input where the user selects a value from within a given range. * @see [source](https://kobalte.dev/docs/core/components/slider#anatomy) */ export declare const slots: readonly ["root", "description", "errorMessage", "fill", "input", "label", "thumb", "track", "valueLabel"]; /** * **Slider** * @description An input where the user selects a value from within a given range. * @see [source](https://kobalte.dev/docs/core/components/slider#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Slider** * @description An input where the user selects a value from within a given range. * @see [source](https://kobalte.dev/docs/core/components/slider#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; description: {}; errorMessage: {}; fill: {}; input: {}; label: {}; thumb: {}; track: {}; valueLabel: {}; }>;