@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 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: hex,
19410
+ hex: hexValue,
19410
19411
  rgb: rgb
19411
19412
  });
19412
19413
  };