@dexteel/mesf-core 4.26.2 → 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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +15 -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 +2 -2
- 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,18 @@
|
|
|
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
|
+
|
|
1
16
|
# Changelog
|
|
2
17
|
|
|
3
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)
|
|
@@ -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
|
@@ -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 =
|
|
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;
|