@bigbinary/neetoui 5.0.17 → 5.0.18
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/index.cjs.js +2 -1
- package/index.cjs.js.map +1 -1
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -19405,8 +19405,9 @@ var ColorPicker = function ColorPicker(_ref) {
|
|
|
19405
19405
|
var onColorChange = function onColorChange(hex) {
|
|
19406
19406
|
var color = tinycolor(hex);
|
|
19407
19407
|
var rgb = color.toRgb();
|
|
19408
|
+
var hexValue = color.toHexString();
|
|
19408
19409
|
onChangeInternal({
|
|
19409
|
-
hex:
|
|
19410
|
+
hex: hexValue,
|
|
19410
19411
|
rgb: rgb
|
|
19411
19412
|
});
|
|
19412
19413
|
};
|