ov25-setup 0.1.15 → 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.
@@ -9,6 +9,7 @@ export interface ConfiguratorSetupProps {
9
9
  onSave?: (payload: ConfiguratorSetupPayload) => void;
10
10
  hidePreview?: boolean;
11
11
  hideSaveButton?: boolean;
12
+ className?: string;
12
13
  }
13
14
  export type { ConfiguratorSetupPayload };
14
15
  export default function ConfiguratorSetup(props: ConfiguratorSetupProps): import("react/jsx-runtime").JSX.Element;
@@ -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 {};