@bigbinary/neetoui 5.0.16 → 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 +3 -2
- package/index.cjs.js.map +1 -1
- package/index.js +3 -2
- 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
|
};
|
|
@@ -35323,7 +35324,7 @@ var withParsedErrorMsg = function withParsedErrorMsg(toastrFunc) {
|
|
|
35323
35324
|
buttonLabel: buttonLabel,
|
|
35324
35325
|
onClick: onClick,
|
|
35325
35326
|
role: "alert",
|
|
35326
|
-
autoClose:
|
|
35327
|
+
autoClose: false
|
|
35327
35328
|
}, customConfig));
|
|
35328
35329
|
};
|
|
35329
35330
|
};
|