@project-jade-garden/kobalte
Version:
Kobalte anatomy slots for headless design
29 lines (28 loc) • 1.14 kB
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Color Area**
* @description Allows users to adjust two channels of an RGB, HSL, or HSB color value against a two-dimensional gradient background.
* @see [source](https://kobalte.dev/docs/core/components/color-area#anatomy)
*/
export declare const slots: readonly ["root", "description", "errorMessage", "label", "background", "thumb", "hiddenInputX", "hiddenInputY"];
/**
* **Color Area**
* @description Allows users to adjust two channels of an RGB, HSL, or HSB color value against a two-dimensional gradient background.
* @see [source](https://kobalte.dev/docs/core/components/color-area#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Color Area**
* @description Allows users to adjust two channels of an RGB, HSL, or HSB color value against a two-dimensional gradient background.
* @see [source](https://kobalte.dev/docs/core/components/color-area#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
description: {};
errorMessage: {};
label: {};
background: {};
thumb: {};
hiddenInputX: {};
hiddenInputY: {};
}>;