@festo-ui/react-extra 9.0.1-dev.762 → 9.0.1-dev.764

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ import './ColorPicker.scss';
2
+ export interface ColorPickerProps {
3
+ readonly className?: string;
4
+ readonly palette?: string[];
5
+ readonly useAlpha?: boolean;
6
+ readonly alpha?: number;
7
+ readonly paletteOnly?: boolean;
8
+ readonly color?: string;
9
+ readonly onChange?: (color?: string | null) => void;
10
+ readonly onAlphaChange?: (alpha?: number) => void;
11
+ }
12
+ export declare function ColorPicker({ className, palette, useAlpha, alpha, paletteOnly, color, onChange, onAlphaChange, }: ColorPickerProps): import("react/jsx-runtime").JSX.Element;