@dexteel/mesf-core 4.26.2 → 4.26.4
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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +28 -0
- package/dist/configuration/pages/asset/theme.d.ts +1 -1
- package/dist/configuration/pages/log/styles/tableStyles.d.ts +1 -1
- package/dist/configuration/pages/settings/styles/useStyles.d.ts +1 -1
- package/dist/controls/contextMenu/styles/ContextMenuStyles.d.ts +1 -1
- package/dist/controls/panels.d.ts +1 -1
- package/dist/index.esm.js +12 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/components/chart/styles/TagColorsStyles.d.ts +1 -1
- package/dist/pages/trendings/components/chart/styles/TagsTableStyles.d.ts +1 -1
- package/dist/pages/trendings/components/chart/styles/TasgTreeModalStyles.d.ts +1 -1
- package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.26.4](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.3...@dexteel/mesf-core-v4.26.4) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **API Service:** truncate content of query param if needed ([caba7b4](https://github.com/dexteel/mesf-core-frontend/commit/caba7b40c605805693760219ac2c6e683785dda4))
|
|
9
|
+
|
|
10
|
+
## [4.26.3] - 2025-03-17
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
## [4.26.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.2...@dexteel/mesf-core-v4.26.3) (2025-03-17)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **TableSettings:** change loadingOverlayComponent to a function ([291610f](https://github.com/dexteel/mesf-core-frontend/commit/291610fded915faa44584495a500e789bc66b90a))
|
|
22
|
+
* **TableSettings:** change loadingOverlayComponent to a function ([f1c5baa](https://github.com/dexteel/mesf-core-frontend/commit/f1c5baaf0c8439ef4140f91f0c48104037dcb39f))
|
|
23
|
+
* **TreeView:** donwgrade @minoru/react-dnd-treeview from version 3.5.0 to 3.4.4 ([33de610](https://github.com/dexteel/mesf-core-frontend/commit/33de610cb020504619b1205861d5ad58975f1e26))
|
|
24
|
+
|
|
25
|
+
## [4.26.2] - 2025-03-13
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
1
29
|
# Changelog
|
|
2
30
|
|
|
3
31
|
## [4.26.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.1...@dexteel/mesf-core-v4.26.2) (2025-03-13)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const theme: (props?: any) => import("@material-ui/
|
|
1
|
+
export declare const theme: (props?: any) => import("@material-ui/styles").ClassNameMap<"components">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@material-ui/
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"root" | "card" | "filters" | "form">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@material-ui/
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"root" | "textfield" | "relative" | "btnModal">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@material-ui/
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"contextMenu">;
|
|
@@ -24,7 +24,7 @@ type MasterDetailPanelProps = {
|
|
|
24
24
|
showDelete: boolean;
|
|
25
25
|
};
|
|
26
26
|
declare class MasterDetailPanel extends Component<MasterDetailPanelProps> {
|
|
27
|
-
useStyles(): (props?: any) => import("@material-ui/
|
|
27
|
+
useStyles(): (props?: any) => import("@material-ui/styles").ClassNameMap<"root">;
|
|
28
28
|
render(): React.JSX.Element;
|
|
29
29
|
}
|
|
30
30
|
type ExtraButton = {
|
package/dist/index.esm.js
CHANGED
|
@@ -7584,10 +7584,16 @@ var MESApiService = /** @class */ (function () {
|
|
|
7584
7584
|
_a.trys.push([1, 3, , 4]);
|
|
7585
7585
|
return [4 /*yield*/, axiosInstance.post("/action/".concat(curatedMethod), data, {
|
|
7586
7586
|
params: data.parameters.map(function (param) {
|
|
7587
|
-
var _a;
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
_a
|
|
7587
|
+
var _a, _b;
|
|
7588
|
+
var mapKey = param.name.replace("@", "");
|
|
7589
|
+
if (typeof param.value == "string" && param.value.length > 100) {
|
|
7590
|
+
return _a = {},
|
|
7591
|
+
_a[mapKey] = "__truncated__",
|
|
7592
|
+
_a;
|
|
7593
|
+
}
|
|
7594
|
+
return _b = {},
|
|
7595
|
+
_b[mapKey] = param.value,
|
|
7596
|
+
_b;
|
|
7591
7597
|
})
|
|
7592
7598
|
})];
|
|
7593
7599
|
case 2:
|
|
@@ -10488,7 +10494,7 @@ var TableSettings = function (_a) {
|
|
|
10488
10494
|
setOpenModalDeleteSetting: setOpenModalDeleteSetting,
|
|
10489
10495
|
showContextMenu: showContextMenu
|
|
10490
10496
|
}), columnDefs = _j.columnDefs, defaultColDef = _j.defaultColDef;
|
|
10491
|
-
var loadingOverlayComponent =
|
|
10497
|
+
var loadingOverlayComponent = function () {
|
|
10492
10498
|
return (React__default.createElement("div", { style: {
|
|
10493
10499
|
width: "100%",
|
|
10494
10500
|
height: "100%",
|
|
@@ -10497,7 +10503,7 @@ var TableSettings = function (_a) {
|
|
|
10497
10503
|
alignItems: "center"
|
|
10498
10504
|
} },
|
|
10499
10505
|
React__default.createElement(LazyLoading, null)));
|
|
10500
|
-
}
|
|
10506
|
+
};
|
|
10501
10507
|
var getContextMenuItems = function (params) {
|
|
10502
10508
|
var _a, _b;
|
|
10503
10509
|
var data = (_a = params.node) === null || _a === void 0 ? void 0 : _a.data;
|