@dexteel/mesf-core 4.22.4 → 4.22.6
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.22.6](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.5...@dexteel/mesf-core-v4.22.6) (2025-01-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **shift-navigator-control:** Use TextField as slot ([e8a0424](https://github.com/dexteel/mesf-core-frontend/commit/e8a0424db67cc2cd43adb054888adcb8c982e84b))
|
|
9
|
+
|
|
10
|
+
## [4.22.5] - 2025-01-09
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
## [4.22.5](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.4...@dexteel/mesf-core-v4.22.5) (2025-01-08)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **typings:** Fix DialogActions typings (enterhintkey) ([241b17a](https://github.com/dexteel/mesf-core-frontend/commit/241b17a97d4409bacf95dc8eefde320539779377))
|
|
22
|
+
|
|
23
|
+
## [4.22.4] - 2025-01-08
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
1
27
|
# Changelog
|
|
2
28
|
|
|
3
29
|
## [4.22.4](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.3...@dexteel/mesf-core-v4.22.4) (2025-01-08)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DialogContent as MuiDialogContent, StyleRules, type Theme } from "@material-ui/core";
|
|
1
|
+
import { DialogActions as MuiDialogActions, DialogContent as MuiDialogContent, StyleRules, type Theme } from "@material-ui/core";
|
|
2
2
|
import { type WithStyles } from "@material-ui/core/styles";
|
|
3
3
|
import React, { ReactNode } from "react";
|
|
4
4
|
declare const styles: (theme: Theme) => StyleRules;
|
|
@@ -18,6 +18,6 @@ interface MESFModalProps {
|
|
|
18
18
|
declare function Modal({ children, title, handleClose, open, id, maxWidth, }: MESFModalProps): React.JSX.Element;
|
|
19
19
|
export declare const MesfModal: typeof Modal & {
|
|
20
20
|
Content: typeof MuiDialogContent;
|
|
21
|
-
Actions:
|
|
21
|
+
Actions: typeof MuiDialogActions;
|
|
22
22
|
};
|
|
23
23
|
export default MesfModal;
|
package/dist/index.esm.js
CHANGED
|
@@ -8109,15 +8109,16 @@ var ShiftDayNavigatorControl = function (props) {
|
|
|
8109
8109
|
if (date) {
|
|
8110
8110
|
getShiftDataFromAPI(date.toDate(), 0).then(function () { });
|
|
8111
8111
|
}
|
|
8112
|
+
}, slots: {
|
|
8113
|
+
textField: TextField
|
|
8112
8114
|
}, slotProps: {
|
|
8113
8115
|
textField: {
|
|
8114
8116
|
variant: "outlined",
|
|
8115
8117
|
size: "small",
|
|
8116
8118
|
inputProps: {
|
|
8117
8119
|
style: {
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
maxWidth: "110px"
|
|
8120
|
+
textAlign: "center",
|
|
8121
|
+
width: "110px"
|
|
8121
8122
|
}
|
|
8122
8123
|
}
|
|
8123
8124
|
}
|