@dexteel/mesf-core 4.22.5 → 4.23.0

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.22.5"
2
+ ".": "4.23.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ # Changelog
2
+
3
+ ## [4.23.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.22.6...@dexteel/mesf-core-v4.23.0) (2025-02-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * **AG Grid:** Upgrade AG Grid to 30 ([b5c1255](https://github.com/dexteel/mesf-core-frontend/commit/b5c1255f715768b0c80a013e2d1485096505f7d8))
9
+
10
+ ## [4.22.6] - 2025-01-10
11
+
12
+
13
+
14
+ # Changelog
15
+
16
+ ## [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)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **shift-navigator-control:** Use TextField as slot ([e8a0424](https://github.com/dexteel/mesf-core-frontend/commit/e8a0424db67cc2cd43adb054888adcb8c982e84b))
22
+
23
+ ## [4.22.5] - 2025-01-09
24
+
25
+
26
+
1
27
  # Changelog
2
28
 
3
29
  ## [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,6 +17,6 @@ export declare const useJobsTableData: ({ setRowSelected, showContextMenu, }: Pr
17
17
  StartTime: Date;
18
18
  NextExecutionTime: Date;
19
19
  }[];
20
- columnDefs: ColDef<any>[];
20
+ columnDefs: ColDef<any, any>[];
21
21
  };
22
22
  export {};
@@ -8,5 +8,5 @@ export declare const useLogTableData: () => {
8
8
  LogTypeCode: string;
9
9
  User: string;
10
10
  }[];
11
- columnDefs: ColDef<any>[];
11
+ columnDefs: ColDef<any, any>[];
12
12
  };
@@ -12,6 +12,6 @@ export declare const useTableData: ({ setProfileId, setModalProceduresProfile, s
12
12
  ProfileId: number | null;
13
13
  ProfileName: string;
14
14
  }[];
15
- columnDefs: ColDef<any>[];
15
+ columnDefs: ColDef<any, any>[];
16
16
  };
17
17
  export {};
@@ -5,7 +5,7 @@ type Props = {
5
5
  showContextMenu: Function;
6
6
  };
7
7
  export declare const useTableData: ({ setOpenModalEditSetting, setOpenModalDeleteSetting, showContextMenu, }: Props) => {
8
- columnDefs: ColDef<any>[];
9
- defaultColDef: ColDef<any>;
8
+ columnDefs: ColDef<any, any>[];
9
+ defaultColDef: ColDef<any, any>;
10
10
  };
11
11
  export {};
@@ -15,6 +15,6 @@ export declare const useTableData: ({ setOpenModalEditShift, setOpenModalDeleteS
15
15
  Comments: string | null;
16
16
  CanEdit: boolean;
17
17
  }[];
18
- columnDefs: ColDef<any>[];
18
+ columnDefs: ColDef<any, any>[];
19
19
  };
20
20
  export {};
@@ -15,6 +15,6 @@ export declare const useTableData: ({ setUserId, setOpenModalEditDataUser, setOp
15
15
  Profiles: string;
16
16
  id: number | null;
17
17
  }[];
18
- columnDefs: ColDef<any>[];
18
+ columnDefs: ColDef<any, any>[];
19
19
  };
20
20
  export {};
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
- fontSize: "small",
8119
- minWidth: "110px",
8120
- maxWidth: "110px"
8120
+ textAlign: "center",
8121
+ width: "110px"
8121
8122
  }
8122
8123
  }
8123
8124
  }