@reeverdev/ui 0.1.44 → 0.1.45
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.
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1171,6 +1171,13 @@ interface ColorPickerProps {
|
|
|
1171
1171
|
size?: "sm" | "md" | "lg";
|
|
1172
1172
|
/** Additional class name */
|
|
1173
1173
|
className?: string;
|
|
1174
|
+
/**
|
|
1175
|
+
* Variant of the picker
|
|
1176
|
+
* - "full": Shows popover with color picker, presets, and optional input
|
|
1177
|
+
* - "simple": Just shows the color swatch with native picker on click
|
|
1178
|
+
* @default "full"
|
|
1179
|
+
*/
|
|
1180
|
+
variant?: "full" | "simple";
|
|
1174
1181
|
}
|
|
1175
1182
|
declare const ColorPicker: React$1.ForwardRefExoticComponent<ColorPickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1176
1183
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1171,6 +1171,13 @@ interface ColorPickerProps {
|
|
|
1171
1171
|
size?: "sm" | "md" | "lg";
|
|
1172
1172
|
/** Additional class name */
|
|
1173
1173
|
className?: string;
|
|
1174
|
+
/**
|
|
1175
|
+
* Variant of the picker
|
|
1176
|
+
* - "full": Shows popover with color picker, presets, and optional input
|
|
1177
|
+
* - "simple": Just shows the color swatch with native picker on click
|
|
1178
|
+
* @default "full"
|
|
1179
|
+
*/
|
|
1180
|
+
variant?: "full" | "simple";
|
|
1174
1181
|
}
|
|
1175
1182
|
declare const ColorPicker: React$1.ForwardRefExoticComponent<ColorPickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1176
1183
|
|