@dexteel/mesf-core 4.26.1 → 4.26.3

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.26.1"
2
+ ".": "4.26.3"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ # Changelog
2
+
3
+ ## [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)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **TableSettings:** change loadingOverlayComponent to a function ([291610f](https://github.com/dexteel/mesf-core-frontend/commit/291610fded915faa44584495a500e789bc66b90a))
9
+ * **TableSettings:** change loadingOverlayComponent to a function ([f1c5baa](https://github.com/dexteel/mesf-core-frontend/commit/f1c5baaf0c8439ef4140f91f0c48104037dcb39f))
10
+ * **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))
11
+
12
+ ## [4.26.2] - 2025-03-13
13
+
14
+
15
+
16
+ # Changelog
17
+
18
+ ## [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)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **TreePickerControlV2:** add ? operator in findNameById function ([4d5baa5](https://github.com/dexteel/mesf-core-frontend/commit/4d5baa5f5822228c579563d926974cc07c5ca54b))
24
+ * **TreePickerControlV2:** add ? operator in findNameById function ([dafa520](https://github.com/dexteel/mesf-core-frontend/commit/dafa520fefbb498bb3f4f2d9761f9df22652afc6))
25
+
26
+ ## [4.26.1] - 2025-03-06
27
+
28
+
29
+
1
30
  # Changelog
2
31
 
3
32
  ## [4.26.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.0...@dexteel/mesf-core-v4.26.1) (2025-03-06)
@@ -1 +1 @@
1
- export declare const theme: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"components">;
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/core/styles/withStyles").ClassNameMap<"root" | "card" | "filters" | "form">;
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/core/styles/withStyles").ClassNameMap<"root" | "textfield" | "relative" | "btnModal">;
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/core/styles/withStyles").ClassNameMap<"contextMenu">;
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/core/styles/withStyles").ClassNameMap<"root">;
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
@@ -688,10 +688,10 @@ var useStyles$A = makeStyles(function (theme) { return ({
688
688
  }
689
689
  }); });
690
690
  function findNameById(node, id) {
691
- if (node.id === id) {
691
+ if ((node === null || node === void 0 ? void 0 : node.id) === id) {
692
692
  return node.name;
693
693
  }
694
- if (node.children) {
694
+ if (node === null || node === void 0 ? void 0 : node.children) {
695
695
  for (var _i = 0, _a = node.children; _i < _a.length; _i++) {
696
696
  var child = _a[_i];
697
697
  var result = findNameById(child, id);
@@ -10488,7 +10488,7 @@ var TableSettings = function (_a) {
10488
10488
  setOpenModalDeleteSetting: setOpenModalDeleteSetting,
10489
10489
  showContextMenu: showContextMenu
10490
10490
  }), columnDefs = _j.columnDefs, defaultColDef = _j.defaultColDef;
10491
- var loadingOverlayComponent = useMemo(function () {
10491
+ var loadingOverlayComponent = function () {
10492
10492
  return (React__default.createElement("div", { style: {
10493
10493
  width: "100%",
10494
10494
  height: "100%",
@@ -10497,7 +10497,7 @@ var TableSettings = function (_a) {
10497
10497
  alignItems: "center"
10498
10498
  } },
10499
10499
  React__default.createElement(LazyLoading, null)));
10500
- }, []);
10500
+ };
10501
10501
  var getContextMenuItems = function (params) {
10502
10502
  var _a, _b;
10503
10503
  var data = (_a = params.node) === null || _a === void 0 ? void 0 : _a.data;