@dexteel/mesf-core 4.16.0 → 4.16.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.
@@ -32,6 +32,12 @@ jobs:
32
32
  jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
33
33
  done
34
34
 
35
+ - name: Delete and regenerate package-lock.json
36
+ if: ${{ steps.release.outputs.release_created }}
37
+ run: |
38
+ find . -name "package-lock.json" -type f -delete
39
+ npm install --package-lock-only
40
+
35
41
  - name: Update CHANGELOG.md
36
42
  if: ${{ steps.release.outputs.release_created }}
37
43
  run: |
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.16.0"
2
+ ".": "4.16.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # Changelog
2
+
3
+ ## [4.16.1] - 2024-07-08
4
+
5
+
6
+
7
+ # Changelog
8
+
9
+ ## [4.16.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.16.0...@dexteel/mesf-core-v4.16.1) (2024-07-08)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * fire action in gh ([8af76ad](https://github.com/dexteel/mesf-core-frontend/commit/8af76adee23e4572cdfd5fe1d606afe2667bcd20))
15
+ * **Shift Navigator:** use router optionally ([395ed7d](https://github.com/dexteel/mesf-core-frontend/commit/395ed7d93188c3794679df0d55a81e85d3798b50))
16
+
17
+ ## [4.16.0] - 2024-07-08
18
+
19
+
20
+
1
21
  # Changelog
2
22
 
3
23
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
package/dist/index.esm.js CHANGED
@@ -7753,7 +7753,9 @@ var ShiftDayNavigatorControl = function (props) {
7753
7753
  window.history.replaceState(null, "", "/".concat(paths[1]) + "/".concat(shiftId));
7754
7754
  };
7755
7755
  if (shiftInfo !== null && shiftInfo.CurrentShiftId !== null) {
7756
- updateHistory(shiftInfo.CurrentShiftId.toString());
7756
+ if (props.useRouter) {
7757
+ updateHistory(shiftInfo.CurrentShiftId.toString());
7758
+ }
7757
7759
  }
7758
7760
  useEffect(function () {
7759
7761
  if (firstRender.current) {