@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.cjs.js CHANGED
@@ -17417,6 +17417,7 @@ var Alert = function Alert(_ref) {
17417
17417
  className: "neeto-ui-gap-2 neeto-ui-flex neeto-ui-items-center"
17418
17418
  }, /*#__PURE__*/React__default["default"].createElement(Button, {
17419
17419
  "data-cy": "alert-submit-button",
17420
+ disabled: !isOpen,
17420
17421
  label: submitButtonLabel,
17421
17422
  loading: isSubmitting,
17422
17423
  style: "danger",
@@ -19405,8 +19406,9 @@ var ColorPicker = function ColorPicker(_ref) {
19405
19406
  var onColorChange = function onColorChange(hex) {
19406
19407
  var color = tinycolor(hex);
19407
19408
  var rgb = color.toRgb();
19409
+ var hexValue = color.toHexString();
19408
19410
  onChangeInternal({
19409
- hex: hex,
19411
+ hex: hexValue,
19410
19412
  rgb: rgb
19411
19413
  });
19412
19414
  };