@dexteel/mesf-core 5.4.0 → 5.4.2

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
- ".": "5.4.0"
2
+ ".": "5.4.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ # Changelog
2
+
3
+ ## [5.4.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.4.1...@dexteel/mesf-core-v5.4.2) (2025-05-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Typescript:** fix tsconfig.json ([7e6f4ec](https://github.com/dexteel/mesf-core-frontend/commit/7e6f4ec4f1fb391caee0d402aeed051169428495))
9
+
10
+ ## [5.4.1] - 2025-05-29
11
+
12
+
13
+
14
+ # Changelog
15
+
16
+ ## [5.4.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.4.0...@dexteel/mesf-core-v5.4.1) (2025-05-29)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **AG GRID:** remove ag-grid.css imports ([658d838](https://github.com/dexteel/mesf-core-frontend/commit/658d8384e0c00e3e1019335aab3844b565f5baf8))
22
+ * **AG GRID:** use v33 correctly. improve look and feel ([be8704f](https://github.com/dexteel/mesf-core-frontend/commit/be8704fd5ff57b8e451f979955c895b7da22c0a3))
23
+
24
+ ## [5.4.0] - 2025-05-29
25
+
26
+
27
+
1
28
  # Changelog
2
29
 
3
30
  ## [5.4.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.3.0...@dexteel/mesf-core-v5.4.0) (2025-05-29)
@@ -1,5 +1,3 @@
1
- import "ag-grid-community/styles/ag-grid.css";
2
- import "ag-grid-community/styles/ag-theme-material.min.css";
3
1
  import * as React from "react";
4
2
  type Props = {
5
3
  getJobsFromAPI: Function;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type Props = {
3
+ value: "UTC" | "Server";
4
+ onChange: (value: "UTC" | "Server") => void;
5
+ };
6
+ export declare const TimezoneSelector: ({ value, onChange }: Props) => React.JSX.Element;
7
+ export {};
@@ -2,7 +2,7 @@ import { ColDef } from "ag-grid-community";
2
2
  export declare const useLogTableData: () => {
3
3
  rows: {
4
4
  id: number;
5
- Timestamp: Date | null;
5
+ Timestamp: string;
6
6
  Source: string;
7
7
  Message: string;
8
8
  LogTypeCode: string;
@@ -3,11 +3,13 @@ export declare const useLogsContext: () => {
3
3
  state: {
4
4
  logs: import("../models/Log").Log[];
5
5
  searchData: import("../models/SearchData").SearchData;
6
+ Timezone: "UTC" | "Server";
6
7
  };
7
8
  actions: import("@reduxjs/toolkit").CaseReducerActions<{
8
9
  setLogs(state: import("immer/dist/internal").WritableDraft<{
9
10
  logs: import("../models/Log").Log[];
10
11
  searchData: import("../models/SearchData").SearchData;
12
+ Timezone: "UTC" | "Server";
11
13
  }>, { payload }: {
12
14
  payload: any;
13
15
  type: string;
@@ -15,6 +17,7 @@ export declare const useLogsContext: () => {
15
17
  setSearchData(state: import("immer/dist/internal").WritableDraft<{
16
18
  logs: import("../models/Log").Log[];
17
19
  searchData: import("../models/SearchData").SearchData;
20
+ Timezone: "UTC" | "Server";
18
21
  }>, { payload }: {
19
22
  payload: any;
20
23
  type: string;
@@ -22,6 +25,7 @@ export declare const useLogsContext: () => {
22
25
  setStartFilter(state: import("immer/dist/internal").WritableDraft<{
23
26
  logs: import("../models/Log").Log[];
24
27
  searchData: import("../models/SearchData").SearchData;
28
+ Timezone: "UTC" | "Server";
25
29
  }>, { payload }: {
26
30
  payload: any;
27
31
  type: string;
@@ -29,6 +33,7 @@ export declare const useLogsContext: () => {
29
33
  setEndFilter(state: import("immer/dist/internal").WritableDraft<{
30
34
  logs: import("../models/Log").Log[];
31
35
  searchData: import("../models/SearchData").SearchData;
36
+ Timezone: "UTC" | "Server";
32
37
  }>, { payload }: {
33
38
  payload: any;
34
39
  type: string;
@@ -36,6 +41,7 @@ export declare const useLogsContext: () => {
36
41
  setSearchFilter(state: import("immer/dist/internal").WritableDraft<{
37
42
  logs: import("../models/Log").Log[];
38
43
  searchData: import("../models/SearchData").SearchData;
44
+ Timezone: "UTC" | "Server";
39
45
  }>, { payload }: {
40
46
  payload: any;
41
47
  type: string;
@@ -43,6 +49,7 @@ export declare const useLogsContext: () => {
43
49
  setLogTypeCodeFilter(state: import("immer/dist/internal").WritableDraft<{
44
50
  logs: import("../models/Log").Log[];
45
51
  searchData: import("../models/SearchData").SearchData;
52
+ Timezone: "UTC" | "Server";
46
53
  }>, { payload }: {
47
54
  payload: any;
48
55
  type: string;
@@ -50,6 +57,15 @@ export declare const useLogsContext: () => {
50
57
  resetFilters(state: import("immer/dist/internal").WritableDraft<{
51
58
  logs: import("../models/Log").Log[];
52
59
  searchData: import("../models/SearchData").SearchData;
60
+ Timezone: "UTC" | "Server";
61
+ }>, { payload }: {
62
+ payload: any;
63
+ type: string;
64
+ }): void;
65
+ setTimezone(state: import("immer/dist/internal").WritableDraft<{
66
+ logs: import("../models/Log").Log[];
67
+ searchData: import("../models/SearchData").SearchData;
68
+ Timezone: "UTC" | "Server";
53
69
  }>, { payload }: {
54
70
  payload: any;
55
71
  type: string;
@@ -3,10 +3,12 @@ import { SearchData } from "../models/SearchData";
3
3
  export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
4
4
  logs: Log[];
5
5
  searchData: SearchData;
6
+ Timezone: "UTC" | "Server";
6
7
  }, {
7
8
  setLogs(state: import("immer/dist/internal").WritableDraft<{
8
9
  logs: Log[];
9
10
  searchData: SearchData;
11
+ Timezone: "UTC" | "Server";
10
12
  }>, { payload }: {
11
13
  payload: any;
12
14
  type: string;
@@ -14,6 +16,7 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
14
16
  setSearchData(state: import("immer/dist/internal").WritableDraft<{
15
17
  logs: Log[];
16
18
  searchData: SearchData;
19
+ Timezone: "UTC" | "Server";
17
20
  }>, { payload }: {
18
21
  payload: any;
19
22
  type: string;
@@ -21,6 +24,7 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
21
24
  setStartFilter(state: import("immer/dist/internal").WritableDraft<{
22
25
  logs: Log[];
23
26
  searchData: SearchData;
27
+ Timezone: "UTC" | "Server";
24
28
  }>, { payload }: {
25
29
  payload: any;
26
30
  type: string;
@@ -28,6 +32,7 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
28
32
  setEndFilter(state: import("immer/dist/internal").WritableDraft<{
29
33
  logs: Log[];
30
34
  searchData: SearchData;
35
+ Timezone: "UTC" | "Server";
31
36
  }>, { payload }: {
32
37
  payload: any;
33
38
  type: string;
@@ -35,6 +40,7 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
35
40
  setSearchFilter(state: import("immer/dist/internal").WritableDraft<{
36
41
  logs: Log[];
37
42
  searchData: SearchData;
43
+ Timezone: "UTC" | "Server";
38
44
  }>, { payload }: {
39
45
  payload: any;
40
46
  type: string;
@@ -42,6 +48,7 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
42
48
  setLogTypeCodeFilter(state: import("immer/dist/internal").WritableDraft<{
43
49
  logs: Log[];
44
50
  searchData: SearchData;
51
+ Timezone: "UTC" | "Server";
45
52
  }>, { payload }: {
46
53
  payload: any;
47
54
  type: string;
@@ -49,6 +56,15 @@ export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
49
56
  resetFilters(state: import("immer/dist/internal").WritableDraft<{
50
57
  logs: Log[];
51
58
  searchData: SearchData;
59
+ Timezone: "UTC" | "Server";
60
+ }>, { payload }: {
61
+ payload: any;
62
+ type: string;
63
+ }): void;
64
+ setTimezone(state: import("immer/dist/internal").WritableDraft<{
65
+ logs: Log[];
66
+ searchData: SearchData;
67
+ Timezone: "UTC" | "Server";
52
68
  }>, { payload }: {
53
69
  payload: any;
54
70
  type: string;
@@ -1,6 +1,4 @@
1
1
  import React from "react";
2
- import "ag-grid-enterprise/styles/ag-grid.css";
3
- import "ag-grid-enterprise/styles/ag-theme-balham.min.css";
4
2
  import { Action } from "../../../models/Action";
5
3
  interface Props {
6
4
  actionsOfProfile: Action[];
@@ -1,4 +1,3 @@
1
1
  import React from "react";
2
- import "ag-grid-community/styles/ag-theme-material.min.css";
3
2
  declare const QueryCacheInvalidations: React.FC;
4
3
  export default QueryCacheInvalidations;
@@ -1,7 +1,4 @@
1
1
  import * as React from "react";
2
- import "ag-grid-community/styles/ag-grid.css";
3
- import "ag-grid-community/styles/ag-theme-material.css";
4
- import "ag-grid-enterprise";
5
2
  type Props = {
6
3
  getShiftsCrewsFromAPI: Function;
7
4
  isLoading: boolean;
@@ -1,4 +1,3 @@
1
- import "ag-grid-community/styles/ag-theme-material.min.css";
2
1
  import * as React from "react";
3
2
  type Props = {
4
3
  getUsersFromAPI: Function;
@@ -1,7 +1,4 @@
1
1
  import React, { Component } from "react";
2
- export declare class SimpleTextControl extends Component<any> {
3
- render(): React.JSX.Element;
4
- }
5
2
  export declare class SimplePasswordControl extends Component<any> {
6
3
  render(): React.JSX.Element;
7
4
  }
@@ -16,13 +13,6 @@ export type NumericTextControlProps = {
16
13
  name: any;
17
14
  typeNumber: any;
18
15
  };
19
- export declare const NumericTextControl: (props: NumericTextControlProps) => React.JSX.Element;
20
- export declare class HorizontalTextControl extends Component<any> {
21
- render(): React.JSX.Element;
22
- }
23
- export declare class SimpleTextAreaControl extends Component<any> {
24
- render(): React.JSX.Element;
25
- }
26
16
  interface SimpleSelectorControlProps {
27
17
  title?: string;
28
18
  dataSource?: any[];
@@ -35,6 +25,5 @@ interface SimpleSelectorControlProps {
35
25
  export declare function SimpleSelectorControl({ title, dataSource, selectedValue, onChange, showColor, styleList, hasChoose, }: SimpleSelectorControlProps): React.JSX.Element;
36
26
  export declare const MultipleSelectorControl: (props: any) => React.JSX.Element;
37
27
  export declare const CheckBoxControl: (props: any) => React.JSX.Element;
38
- export declare const UploadFileControl: (props: any) => React.JSX.Element;
39
28
  export * from "./TreePickerControl";
40
29
  export * from "./TreePickerControlV2";