@dexteel/mesf-core 4.22.0 → 4.22.2
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 +27 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.22.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.1...@dexteel/mesf-core-v4.22.2) (2025-01-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ShiftNavigatorV2:** fix width ([d2c2d42](https://github.com/dexteel/mesf-core-frontend/commit/d2c2d42ff91a3a8006628cf77645d8d184f46aa3))
|
|
9
|
+
|
|
10
|
+
## [4.22.1] - 2025-01-03
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
## [4.22.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.0...@dexteel/mesf-core-v4.22.1) (2025-01-03)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **ShiftNavigatorV2:** fix date picker ([03caca9](https://github.com/dexteel/mesf-core-frontend/commit/03caca9657ab6e7a0d63c98f93e8f6a49c547e9d))
|
|
22
|
+
* **ShiftNavigatorV2:** minor style change in period selector ([ff847a1](https://github.com/dexteel/mesf-core-frontend/commit/ff847a138d35e03ece52fe018fb49887432b80d1))
|
|
23
|
+
|
|
24
|
+
## [4.22.0] - 2024-12-30
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
1
28
|
# Changelog
|
|
2
29
|
|
|
3
30
|
## [4.22.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.21.0...@dexteel/mesf-core-v4.22.0) (2024-12-30)
|
package/dist/index.esm.js
CHANGED
|
@@ -8223,7 +8223,7 @@ var useStyles$5 = makeStyles(function (theme) {
|
|
|
8223
8223
|
_a),
|
|
8224
8224
|
datePickerWrapper: (_b = {
|
|
8225
8225
|
flex: 1,
|
|
8226
|
-
minWidth: "
|
|
8226
|
+
minWidth: "150px"
|
|
8227
8227
|
},
|
|
8228
8228
|
_b[theme.breakpoints.down("sm")] = {
|
|
8229
8229
|
minWidth: "100%"
|
|
@@ -8385,7 +8385,7 @@ var ShiftPeriodNavigatorControl = function (_a) {
|
|
|
8385
8385
|
case 0:
|
|
8386
8386
|
newPeriod = e.target.value;
|
|
8387
8387
|
setPeriod(newPeriod);
|
|
8388
|
-
return [4 /*yield*/, searchShiftsRangeByParameters(newPeriod, null, (endShift === null || endShift === void 0 ? void 0 : endShift.
|
|
8388
|
+
return [4 /*yield*/, searchShiftsRangeByParameters(newPeriod, null, (endShift === null || endShift === void 0 ? void 0 : endShift.Start) ? moment(endShift.Start).toDate() : null, false)];
|
|
8389
8389
|
case 1:
|
|
8390
8390
|
_a.sent();
|
|
8391
8391
|
return [2 /*return*/];
|
|
@@ -8440,7 +8440,7 @@ var ShiftPeriodNavigatorControl = function (_a) {
|
|
|
8440
8440
|
React__default.createElement(Select, { value: period, onChange: handleChangeScope, disabled: loadingShiftPeriodList, style: {
|
|
8441
8441
|
height: "50px",
|
|
8442
8442
|
width: "100%",
|
|
8443
|
-
|
|
8443
|
+
paddingBottom: 0
|
|
8444
8444
|
} }, periodOptions.map(function (option) { return (React__default.createElement(MenuItem, { key: option.value, value: option.value }, option.label)); })))),
|
|
8445
8445
|
React__default.createElement("div", { className: "".concat(classes.gridItem, " ").concat(classes.datePickerWrapper) },
|
|
8446
8446
|
React__default.createElement(DatePicker$1, { label: "End", format: dateFormat, value: moment((endShift === null || endShift === void 0 ? void 0 : endShift.Start) || moment().subtract(1, "day")), onChange: function (value) {
|