@dexteel/mesf-core 7.2.1 → 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 +19 -0
- package/dist/MESFMain.d.ts +2 -1
- package/dist/index.esm.js +22 -17
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
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)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **TagColors:** add more colors ([6c5032a](https://github.com/dexteel/mesf-core-frontend/commit/6c5032a94b34eaa9076c5574bca2428065000e9e))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **TagColors:** add comments human redable colors names ([9ce19a2](https://github.com/dexteel/mesf-core-frontend/commit/9ce19a2261d843cb1bd0d28fa4a1c03e6329a9bf))
|
|
21
|
+
|
|
3
22
|
## [7.2.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.2.0...@dexteel/mesf-core-v7.2.1) (2025-11-19)
|
|
4
23
|
|
|
5
24
|
|
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
|
@@ -11089,21 +11089,26 @@ var Configuration = function () {
|
|
|
11089
11089
|
};
|
|
11090
11090
|
|
|
11091
11091
|
var tagColors$1 = [
|
|
11092
|
-
"#
|
|
11093
|
-
"
|
|
11094
|
-
"#
|
|
11095
|
-
"#
|
|
11096
|
-
"#
|
|
11097
|
-
"#
|
|
11098
|
-
"
|
|
11099
|
-
"#
|
|
11100
|
-
"#
|
|
11101
|
-
"#
|
|
11102
|
-
"#
|
|
11103
|
-
"
|
|
11104
|
-
"#
|
|
11105
|
-
"
|
|
11106
|
-
"#
|
|
11092
|
+
"#00AA00", // green
|
|
11093
|
+
"#0000FF", // blue
|
|
11094
|
+
"#FF0000", // red
|
|
11095
|
+
"#9C27B0", // purple
|
|
11096
|
+
"#FFA500", // orange
|
|
11097
|
+
"#397234", // forest green
|
|
11098
|
+
"#283F23", // dark olive
|
|
11099
|
+
"#3F2617", // dark brown
|
|
11100
|
+
"#0B0F08", // charcoal black
|
|
11101
|
+
"#889c2dff", // olive green
|
|
11102
|
+
"#B78449", // tan brown
|
|
11103
|
+
"#5D9F96", // teal
|
|
11104
|
+
"#1d5e74ff", // dark teal
|
|
11105
|
+
"#FA7305", // bright orange
|
|
11106
|
+
"#072684", // navy blue
|
|
11107
|
+
"#269473ff", // emerald green
|
|
11108
|
+
"#5d74b9ff", // slate blue
|
|
11109
|
+
"#0C8EF4", // sky blue
|
|
11110
|
+
"#8d481cff", // rust brown
|
|
11111
|
+
"#2B384C", // dark slate
|
|
11107
11112
|
];
|
|
11108
11113
|
var availableColors = __spreadArray([], tagColors$1, true);
|
|
11109
11114
|
var lastColor = null;
|
|
@@ -18388,7 +18393,7 @@ var queryClient = new QueryClient({
|
|
|
18388
18393
|
},
|
|
18389
18394
|
});
|
|
18390
18395
|
function MESFMain(_a) {
|
|
18391
|
-
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;
|
|
18392
18397
|
return (React__default.createElement(React__default.Fragment, null,
|
|
18393
18398
|
React__default.createElement(CssBaseline, null),
|
|
18394
18399
|
React__default.createElement(StyledEngineProvider, { injectFirst: true },
|
|
@@ -18411,7 +18416,7 @@ function MESFMain(_a) {
|
|
|
18411
18416
|
React__default.createElement(BrowserRouter, { basename: base },
|
|
18412
18417
|
React__default.createElement(Routes, null,
|
|
18413
18418
|
React__default.createElement(Route, { path: "/logout", element: React__default.createElement(Logout, null) })),
|
|
18414
|
-
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 })))))))))))))))))))));
|
|
18415
18420
|
}
|
|
18416
18421
|
|
|
18417
18422
|
var ExcelButton = function (_a) {
|