odaptos_design_system 1.4.316 → 1.4.317
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/ColorPicker/ColorPicker.d.ts +1 -1
- package/dist/odaptos_design_system.cjs.development.js +1 -1
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +1 -1
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/ColorPicker/ColorPicker.tsx +4 -1
|
@@ -3,5 +3,5 @@ interface ColorPickerProps {
|
|
|
3
3
|
color: string;
|
|
4
4
|
onChange: (color: string) => void;
|
|
5
5
|
}
|
|
6
|
-
export declare const ColorPicker: ({ color, onChange }: ColorPickerProps) => React.JSX.Element;
|
|
6
|
+
export declare const ColorPicker: ({ color, onChange, }: ColorPickerProps) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -10073,7 +10073,7 @@ var styles$a = {"colorPicker":"ColorPicker-modules_colorPicker__qmv7O","colorPic
|
|
|
10073
10073
|
styleInject(css_248z$a);
|
|
10074
10074
|
|
|
10075
10075
|
const ColorPicker = ({
|
|
10076
|
-
color,
|
|
10076
|
+
color = '#268aa9',
|
|
10077
10077
|
onChange
|
|
10078
10078
|
}) => {
|
|
10079
10079
|
const handleChange = color => {
|