@dexteel/mesf-core 7.3.0 → 7.4.0
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 +7 -0
- package/dist/MESFMain.d.ts +2 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.4.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.3.0...@dexteel/mesf-core-v7.4.0) (2025-12-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **trendings:** add props to show or hide ([827e4fa](https://github.com/dexteel/mesf-core-frontend/commit/827e4fabe7a6ee50c76074f4ed8696a8843dd10a))
|
|
9
|
+
|
|
3
10
|
## [7.3.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.2.1...@dexteel/mesf-core-v7.3.0) (2025-11-21)
|
|
4
11
|
|
|
5
12
|
|
package/dist/MESFMain.d.ts
CHANGED
|
@@ -9,10 +9,11 @@ interface Props {
|
|
|
9
9
|
configurations: ConfigurationsType;
|
|
10
10
|
showAreaSelector?: boolean;
|
|
11
11
|
showTrendingsIcon?: boolean;
|
|
12
|
+
showTrendingsV2Icon?: boolean;
|
|
12
13
|
byPassHeaderRoutes?: string[];
|
|
13
14
|
plantAssetId?: number;
|
|
14
15
|
theme?: any;
|
|
15
16
|
logbookSettings?: Partial<LogbookSettingsState>;
|
|
16
17
|
}
|
|
17
|
-
declare function MESFMain({ authentication, routes, navbar, navbarTitle, configurations, showAreaSelector, showTrendingsIcon, byPassHeaderRoutes, plantAssetId, theme, logbookSettings, }: Props): React.JSX.Element;
|
|
18
|
+
declare function MESFMain({ authentication, routes, navbar, navbarTitle, configurations, showAreaSelector, showTrendingsIcon, showTrendingsV2Icon, byPassHeaderRoutes, plantAssetId, theme, logbookSettings, }: Props): React.JSX.Element;
|
|
18
19
|
export { MESFMain };
|
package/dist/index.esm.js
CHANGED
|
@@ -18393,7 +18393,7 @@ var queryClient = new QueryClient({
|
|
|
18393
18393
|
},
|
|
18394
18394
|
});
|
|
18395
18395
|
function MESFMain(_a) {
|
|
18396
|
-
var authentication = _a.authentication, routes = _a.routes, navbar = _a.navbar, _b = _a.navbarTitle, navbarTitle = _b === void 0 ? "MESF" : _b, configurations = _a.configurations, _c = _a.showAreaSelector, showAreaSelector = _c === void 0 ? false : _c, _d = _a.showTrendingsIcon, showTrendingsIcon = _d === void 0 ? true : _d, _e = _a.byPassHeaderRoutes, byPassHeaderRoutes =
|
|
18396
|
+
var authentication = _a.authentication, routes = _a.routes, navbar = _a.navbar, _b = _a.navbarTitle, navbarTitle = _b === void 0 ? "MESF" : _b, configurations = _a.configurations, _c = _a.showAreaSelector, showAreaSelector = _c === void 0 ? false : _c, _d = _a.showTrendingsIcon, showTrendingsIcon = _d === void 0 ? true : _d, _e = _a.showTrendingsV2Icon, showTrendingsV2Icon = _e === void 0 ? true : _e, _f = _a.byPassHeaderRoutes, byPassHeaderRoutes = _f === void 0 ? [] : _f, _g = _a.plantAssetId, plantAssetId = _g === void 0 ? 1 : _g, _h = _a.theme, theme = _h === void 0 ? themeMESF : _h, _j = _a.logbookSettings, logbookSettings = _j === void 0 ? {} : _j;
|
|
18397
18397
|
return (React__default.createElement(React__default.Fragment, null,
|
|
18398
18398
|
React__default.createElement(CssBaseline, null),
|
|
18399
18399
|
React__default.createElement(StyledEngineProvider, { injectFirst: true },
|
|
@@ -18416,7 +18416,7 @@ function MESFMain(_a) {
|
|
|
18416
18416
|
React__default.createElement(BrowserRouter, { basename: base },
|
|
18417
18417
|
React__default.createElement(Routes, null,
|
|
18418
18418
|
React__default.createElement(Route, { path: "/logout", element: React__default.createElement(Logout, null) })),
|
|
18419
|
-
React__default.createElement(Navigation, { showAreaSelector: showAreaSelector, showTrendingsIcon: showTrendingsIcon, navbarTitle: navbarTitle, byPassHeaderRoutes: byPassHeaderRoutes })))))))))))))))))))));
|
|
18419
|
+
React__default.createElement(Navigation, { showAreaSelector: showAreaSelector, showTrendingsIcon: showTrendingsIcon, navbarTitle: navbarTitle, byPassHeaderRoutes: byPassHeaderRoutes, showTrendingsV2Icon: showTrendingsV2Icon })))))))))))))))))))));
|
|
18420
18420
|
}
|
|
18421
18421
|
|
|
18422
18422
|
var ExcelButton = function (_a) {
|