@js-empire/emperor-ui 1.3.0 → 1.3.2

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.
@@ -135,7 +135,11 @@ export declare function CheckboxGroupFilter({ classNames, checkboxGroupProps, pa
135
135
 
136
136
  export declare function cn(...classes: ClassValue[]): string;
137
137
 
138
- export declare function ColorPicker({ ...props }: ColorPickerProps): JSX.Element;
138
+ /**
139
+ * ColorPicker wrapper that loads the HeroUI-dependent implementation only on the client.
140
+ * Prevents "document is not defined" during SSR when used in Next.js and similar frameworks.
141
+ */
142
+ export declare function ColorPicker(props: ColorPickerProps): JSX.Element;
139
143
 
140
144
  export declare type ColorPickerInputType = "free" | "preset";
141
145