@dexteel/mesf-core 4.20.0 → 4.20.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
- ".": "4.20.0"
2
+ ".": "4.20.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ # Changelog
2
+
3
+ ## [4.20.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.20.1...@dexteel/mesf-core-v4.20.2) (2024-09-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Config Logs:** Improve styles and performance ([b73b522](https://github.com/dexteel/mesf-core-frontend/commit/b73b522c65d763b2223eccf48c4403864ae3e660))
9
+ * **tree-picker-control-v2:** Fix input style ([7cc68b9](https://github.com/dexteel/mesf-core-frontend/commit/7cc68b98510397d973fd8b8f949688caab4557e0))
10
+
11
+ ## [4.20.1] - 2024-09-10
12
+
13
+
14
+
15
+ # Changelog
16
+
17
+ ## [4.20.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.20.0...@dexteel/mesf-core-v4.20.1) (2024-09-10)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **TreePickerControlV2:** add disabled property ([95b14dc](https://github.com/dexteel/mesf-core-frontend/commit/95b14dc13f812449dc936e117417e1edfe7523d8))
23
+
24
+ ## [4.20.0] - 2024-09-04
25
+
26
+
27
+
1
28
  # Changelog
2
29
 
3
30
  ## [4.20.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.19.0...@dexteel/mesf-core-v4.20.0) (2024-09-04)
@@ -1,4 +1,4 @@
1
- import * as React from "react";
1
+ import React from "react";
2
2
  type Props = {};
3
3
  export declare const Logs: (prop: Props) => React.JSX.Element;
4
4
  export {};
@@ -1,3 +1,11 @@
1
1
  import * as React from "react";
2
+ import { Log } from "../../models/Log";
2
3
  import "ag-grid-enterprise";
3
- export declare const TableLogs: () => React.JSX.Element;
4
+ import { SearchData } from "../../models/SearchData";
5
+ interface Props {
6
+ isLoading: boolean;
7
+ rowData: Log[];
8
+ refreshData: ({ Start, End, Search, LogTypeCode, }: SearchData) => Promise<(() => void) | undefined>;
9
+ }
10
+ export declare const TableLogs: ({ isLoading, rowData, refreshData }: Props) => React.JSX.Element;
11
+ export {};
@@ -1,4 +1,21 @@
1
1
  export declare const LOG_TYPE_CODES: {
2
- id: string;
3
- description: string;
4
- }[];
2
+ A: {
3
+ id: string;
4
+ description: string;
5
+ };
6
+ I: {
7
+ id: string;
8
+ color: string;
9
+ description: string;
10
+ };
11
+ E: {
12
+ id: string;
13
+ color: string;
14
+ description: string;
15
+ };
16
+ W: {
17
+ id: string;
18
+ color: string;
19
+ description: string;
20
+ };
21
+ };
@@ -1 +1 @@
1
- export declare const GetLogs: (Start: Date, End: Date, Search: string, LogTypeCode: number | string | null) => Promise<import("../../../../services/ApiService").ResponseMESF>;
1
+ export declare const getLogs: (Start: Date, End: Date, Search: string, LogTypeCode: number | string | null) => Promise<import("../../../../services/ApiService").ResponseMESF>;
@@ -0,0 +1 @@
1
+ export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"root" | "card" | "filters" | "form">;
@@ -6,6 +6,7 @@ type TreePickerControlProps = {
6
6
  setListAssetDrawings?: Function;
7
7
  onSuccess?: (success: boolean) => void;
8
8
  showClearButton?: boolean;
9
+ disabled?: boolean;
9
10
  dataSource: TreeNode;
10
11
  [key: string]: any;
11
12
  };