@bigbinary/neetoui 5.0.17 → 5.1.0

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.js CHANGED
@@ -17388,6 +17388,7 @@ var Alert = function Alert(_ref) {
17388
17388
  className: "neeto-ui-gap-2 neeto-ui-flex neeto-ui-items-center"
17389
17389
  }, /*#__PURE__*/React__default.createElement(Button, {
17390
17390
  "data-cy": "alert-submit-button",
17391
+ disabled: !isOpen,
17391
17392
  label: submitButtonLabel,
17392
17393
  loading: isSubmitting,
17393
17394
  style: "danger",
@@ -19376,8 +19377,9 @@ var ColorPicker = function ColorPicker(_ref) {
19376
19377
  var onColorChange = function onColorChange(hex) {
19377
19378
  var color = tinycolor(hex);
19378
19379
  var rgb = color.toRgb();
19380
+ var hexValue = color.toHexString();
19379
19381
  onChangeInternal({
19380
- hex: hex,
19382
+ hex: hexValue,
19381
19383
  rgb: rgb
19382
19384
  });
19383
19385
  };