@dexteel/mesf-core 7.3.0 → 7.5.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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "7.3.0"
2
+ ".": "7.5.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.5.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.4.0...@dexteel/mesf-core-v7.5.0) (2025-12-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * **tree picker:** add full path in title ([c0ed0cd](https://github.com/dexteel/mesf-core-frontend/commit/c0ed0cd514a84fea80d03b6693b5fb568482e341))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **area selector:** fix bug in area selector ([c1b3635](https://github.com/dexteel/mesf-core-frontend/commit/c1b3635a92477c55251e4eefc94825ab60197943))
14
+ * **logbook:** fix default asset in asset filter ([3a088b1](https://github.com/dexteel/mesf-core-frontend/commit/3a088b11f343e026bb05aa90f7b392f583f8bb5f))
15
+ * **settings:** settings validation issues ([5f81107](https://github.com/dexteel/mesf-core-frontend/commit/5f811074e778975419e084d6449a441814d20b5f))
16
+ * **shifts:** allow editing comments on past shifts ([44d6d4d](https://github.com/dexteel/mesf-core-frontend/commit/44d6d4dd126e65551b4bc1930552a29054166e13))
17
+ * **ui:** snackbar position ([84465bd](https://github.com/dexteel/mesf-core-frontend/commit/84465bd727bb01d419270e3bb7d9e278dd9b519d))
18
+ * **user page:** fix modals ([1125f9d](https://github.com/dexteel/mesf-core-frontend/commit/1125f9d0574a200135f5732d51fa51599e3943d1))
19
+
20
+ ## [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)
21
+
22
+
23
+ ### Features
24
+
25
+ * **trendings:** add props to show or hide ([827e4fa](https://github.com/dexteel/mesf-core-frontend/commit/827e4fabe7a6ee50c76074f4ed8696a8843dd10a))
26
+
3
27
  ## [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
28
 
5
29
 
@@ -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 };
@@ -1,4 +1,4 @@
1
1
  import { ShiftParameters } from "../models/ShiftParameters";
2
2
  export declare const getShiftParameters: () => Promise<ShiftParameters[]>;
3
- export declare const upsertShiftParameters: ({ PatternStart, ShiftCodes, Crews, CrewRotation, Comments, }: ShiftParameters) => Promise<void>;
3
+ export declare const upsertShiftParameters: ({ PatternStart, ShiftCodes, Crews, CrewRotation, Comments }: ShiftParameters, isUpdate?: boolean) => Promise<void>;
4
4
  export declare const deleteShiftParameters: (PatternStart: Date) => Promise<void>;