@dexteel/mesf-core 5.5.1 → 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 +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
|
+
## [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
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
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)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **treePickerControl:** fix control supporting 0 ([d63e1ee](https://github.com/dexteel/mesf-core-frontend/commit/d63e1ee0d26afd0067e10ffd4555c6b03cb44f01))
|
|
22
|
+
* **treePickerControl:** fix control supporting 0 ([bcfb5db](https://github.com/dexteel/mesf-core-frontend/commit/bcfb5dbc5094f6ecbcebf127182dcb9839023bd6))
|
|
23
|
+
|
|
24
|
+
## [5.5.1] - 2025-06-24
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
1
28
|
# Changelog
|
|
2
29
|
|
|
3
30
|
## [5.5.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.5.0...@dexteel/mesf-core-v5.5.1) (2025-06-24)
|
package/dist/index.esm.js
CHANGED
|
@@ -617,7 +617,7 @@ var TreePickerControl = function (props) {
|
|
|
617
617
|
if (!showAssetTree) {
|
|
618
618
|
setOpen(false);
|
|
619
619
|
}
|
|
620
|
-
if (newValue) {
|
|
620
|
+
if (newValue !== undefined && newValue !== null) {
|
|
621
621
|
if (onSelect !== undefined) {
|
|
622
622
|
onSelect(newValue, newDescription, findNode);
|
|
623
623
|
}
|
|
@@ -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",
|