@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.js
CHANGED
|
@@ -19376,8 +19376,9 @@ var ColorPicker = function ColorPicker(_ref) {
|
|
|
19376
19376
|
var onColorChange = function onColorChange(hex) {
|
|
19377
19377
|
var color = tinycolor(hex);
|
|
19378
19378
|
var rgb = color.toRgb();
|
|
19379
|
+
var hexValue = color.toHexString();
|
|
19379
19380
|
onChangeInternal({
|
|
19380
|
-
hex:
|
|
19381
|
+
hex: hexValue,
|
|
19381
19382
|
rgb: rgb
|
|
19382
19383
|
});
|
|
19383
19384
|
};
|