@dexteel/mesf-core 7.4.0 → 7.5.1

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.4.0"
2
+ ".": "7.5.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.5.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.5.0...@dexteel/mesf-core-v7.5.1) (2025-12-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Trending V2:** apply changes from tags table to chart ([881d379](https://github.com/dexteel/mesf-core-frontend/commit/881d37967c8aad1d78ad51a445c8fdc8e87e4d4d))
9
+
10
+ ## [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)
11
+
12
+
13
+ ### Features
14
+
15
+ * **tree picker:** add full path in title ([c0ed0cd](https://github.com/dexteel/mesf-core-frontend/commit/c0ed0cd514a84fea80d03b6693b5fb568482e341))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **area selector:** fix bug in area selector ([c1b3635](https://github.com/dexteel/mesf-core-frontend/commit/c1b3635a92477c55251e4eefc94825ab60197943))
21
+ * **logbook:** fix default asset in asset filter ([3a088b1](https://github.com/dexteel/mesf-core-frontend/commit/3a088b11f343e026bb05aa90f7b392f583f8bb5f))
22
+ * **settings:** settings validation issues ([5f81107](https://github.com/dexteel/mesf-core-frontend/commit/5f811074e778975419e084d6449a441814d20b5f))
23
+ * **shifts:** allow editing comments on past shifts ([44d6d4d](https://github.com/dexteel/mesf-core-frontend/commit/44d6d4dd126e65551b4bc1930552a29054166e13))
24
+ * **ui:** snackbar position ([84465bd](https://github.com/dexteel/mesf-core-frontend/commit/84465bd727bb01d419270e3bb7d9e278dd9b519d))
25
+ * **user page:** fix modals ([1125f9d](https://github.com/dexteel/mesf-core-frontend/commit/1125f9d0574a200135f5732d51fa51599e3943d1))
26
+
3
27
  ## [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
28
 
5
29
 
@@ -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>;