@dexteel/mesf-core 5.5.2 → 5.5.3
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 +13 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [5.5.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.5.2...@dexteel/mesf-core-v5.5.3) (2025-07-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ShiftPeriodNavigatorControl:** add a prop to fix ([adf04ec](https://github.com/dexteel/mesf-core-frontend/commit/adf04ecd314926786977c3ffdce5eecd185e7c83))
|
|
9
|
+
|
|
10
|
+
## [5.5.2] - 2025-07-01
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
# Changelog
|
|
2
15
|
|
|
3
16
|
## [5.5.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.5.1...@dexteel/mesf-core-v5.5.2) (2025-07-01)
|
package/dist/index.esm.js
CHANGED
|
@@ -1765,7 +1765,7 @@ var ShiftPeriodNavigatorControl = function (_a) {
|
|
|
1765
1765
|
React__default.createElement("div", { className: "".concat(classes.gridItem, " ").concat(classes.datePickerWrapper) },
|
|
1766
1766
|
React__default.createElement(DatePicker$1, { label: "Start", format: dateFormat, value: moment$2((startShift === null || startShift === void 0 ? void 0 : startShift.Start) || moment$2().subtract(1, "day")), onChange: function (value) {
|
|
1767
1767
|
return handleDateChange(value ? moment$2(value) : null, "start");
|
|
1768
|
-
}, disabled: loadingShiftPeriodList, slots: {
|
|
1768
|
+
}, disabled: loadingShiftPeriodList, enableAccessibleFieldDOMStructure: false, slots: {
|
|
1769
1769
|
textField: function (props) { return (React__default.createElement(TextField, __assign({}, props, { size: "small", variant: "outlined", fullWidth: true, style: { width: "100%" }, InputProps: __assign(__assign({}, props.InputProps), { style: { paddingTop: "2px" } }) }))); },
|
|
1770
1770
|
openPickerIcon: function () { return (React__default.createElement("div", { style: {
|
|
1771
1771
|
display: "flex",
|
|
@@ -1785,7 +1785,7 @@ var ShiftPeriodNavigatorControl = function (_a) {
|
|
|
1785
1785
|
React__default.createElement("div", { className: "".concat(classes.gridItem, " ").concat(classes.datePickerWrapper) },
|
|
1786
1786
|
React__default.createElement(DatePicker$1, { label: "End", format: dateFormat, value: moment$2((endShift === null || endShift === void 0 ? void 0 : endShift.Start) || moment$2().subtract(1, "day")), onChange: function (value) {
|
|
1787
1787
|
return handleDateChange(value ? moment$2(value) : null, "end");
|
|
1788
|
-
}, disabled: loadingShiftPeriodList, slots: {
|
|
1788
|
+
}, disabled: loadingShiftPeriodList, enableAccessibleFieldDOMStructure: false, slots: {
|
|
1789
1789
|
textField: function (props) { return (React__default.createElement(TextField, __assign({}, props, { size: "small", variant: "outlined", fullWidth: true, style: { width: "100%" }, InputProps: __assign(__assign({}, props.InputProps), { style: { paddingTop: "2px" } }) }))); },
|
|
1790
1790
|
openPickerIcon: function () { return (React__default.createElement("div", { style: {
|
|
1791
1791
|
display: "flex",
|