ov25-setup 0.1.16 → 0.2.1

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.
@@ -3,6 +3,8 @@ interface ColorInputProps {
3
3
  onChange: (value: string) => void;
4
4
  className?: string;
5
5
  debounceMs?: number;
6
+ /** When value is empty, show this as the trigger background (e.g. gradient) */
7
+ emptyDisplayBackground?: string;
6
8
  }
7
- export declare function ColorInput({ value, onChange, className, debounceMs }: ColorInputProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function ColorInput({ value, onChange, className, debounceMs, emptyDisplayBackground }: ColorInputProps): import("react/jsx-runtime").JSX.Element;
8
10
  export {};