@dexteel/mesf-core 7.13.2 → 7.13.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.13.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.13.2...@dexteel/mesf-core-v7.13.3) (2026-02-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **Shift Navigator Control:** Add Grid2Props type to props. ([e9af1af](https://github.com/dexteel/mesf-core-frontend/commit/e9af1af61023156dc6c96166b6ab4e8f03ca676e))
|
|
9
|
+
* **Shift Navigator Control:** Add Grid2Props type to props. ([3c3f151](https://github.com/dexteel/mesf-core-frontend/commit/3c3f151b4430b4cbe4e0a576d2d1abf20f120039))
|
|
10
|
+
|
|
3
11
|
## [7.13.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.13.1...@dexteel/mesf-core-v7.13.2) (2026-02-13)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Grid2Props } from "@mui/material";
|
|
1
2
|
import React from "react";
|
|
2
3
|
export type ShiftNavigatorDirection = "Previous" | "Next" | "Last";
|
|
3
4
|
export declare const ShiftDayNavigatorControl: ({ useRouter, onShiftChange, preventInit, withPaper, margin, ...props }: {
|
|
@@ -6,4 +7,4 @@ export declare const ShiftDayNavigatorControl: ({ useRouter, onShiftChange, prev
|
|
|
6
7
|
preventInit?: boolean;
|
|
7
8
|
withPaper?: boolean;
|
|
8
9
|
margin?: string;
|
|
9
|
-
}) => React.JSX.Element;
|
|
10
|
+
} & Grid2Props) => React.JSX.Element;
|