@dexteel/mesf-core 4.25.1 → 4.25.2

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.25.1"
2
+ ".": "4.25.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # Changelog
2
+
3
+ ## [4.25.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.25.1...@dexteel/mesf-core-v4.25.2) (2025-02-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Error Modal:** fix error message when using callV2 ([399bf3e](https://github.com/dexteel/mesf-core-frontend/commit/399bf3e15443b77a5f220d38f50702fd3d0e2f40))
9
+
10
+ ## [4.25.1] - 2025-02-05
11
+
12
+
13
+
1
14
  # Changelog
2
15
 
3
16
  ## [4.25.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.25.0...@dexteel/mesf-core-v4.25.1) (2025-02-05)
package/dist/index.esm.js CHANGED
@@ -235,7 +235,7 @@ var MesfModal = Object.assign(Modal, {
235
235
  });
236
236
 
237
237
  var ErrorModal = function (_a) {
238
- var error = _a.error, onHide = _a.onHide, _b = _a.title, title = _b === void 0 ? "Something went wrong!" : _b, _c = _a.size, size = _c === void 0 ? "md" : _c;
238
+ var error = _a.error, onHide = _a.onHide, _b = _a.title, title = _b === void 0 ? "Ups!" : _b, _c = _a.size, size = _c === void 0 ? "md" : _c;
239
239
  return !!error ? (React__default.createElement(MesfModal, { open: true, handleClose: function () {
240
240
  onHide();
241
241
  }, title: title, maxWidth: size },
@@ -7273,7 +7273,7 @@ var getError = function (error) {
7273
7273
  if (arrayOfErrors.length) {
7274
7274
  allErrors = concatErrorMessagges(arrayOfErrors, allErrors);
7275
7275
  }
7276
- return get$1(error, "response.data.result", get$1(error, "internalError.message", get$1(error, "response.data.detail", get$1(error, "response.data.title", error.toString()) + " " + allErrors)));
7276
+ return get$1(error, "response.data.result", get$1(error, "response.data.message", get$1(error, "internalError.message", get$1(error, "response.data.detail", get$1(error, "response.data.title", error.toString()) + " " + allErrors))));
7277
7277
  };
7278
7278
  var concatErrorMessagges = function (arrayOfErrors, string) {
7279
7279
  arrayOfErrors.forEach(function (element, index) {