@dexteel/mesf-core 4.20.1 → 4.20.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +27 -0
- package/dist/configuration/pages/log/LogsPage.d.ts +1 -1
- package/dist/configuration/pages/log/components/LogsTable/TableLogs.d.ts +9 -1
- package/dist/configuration/pages/log/data/LogTypeCodes.d.ts +20 -3
- package/dist/configuration/pages/log/repositories/LogsRepository.d.ts +1 -1
- package/dist/configuration/pages/log/styles/tableStyles.d.ts +1 -0
- package/dist/index.esm.js +257 -260
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/configuration/pages/log/components/hook/useGetLogsFromAPI.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.20.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.20.2...@dexteel/mesf-core-v4.20.3) (2024-10-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **TreePickerControl:** control modal visibility with showAssetTree prop ([e66d710](https://github.com/dexteel/mesf-core-frontend/commit/e66d710e49e8845cddb8a47a10f08c5ee632e291))
|
|
9
|
+
|
|
10
|
+
## [4.20.2] - 2024-09-12
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Changelog
|
|
15
|
+
|
|
16
|
+
## [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)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **Config Logs:** Improve styles and performance ([b73b522](https://github.com/dexteel/mesf-core-frontend/commit/b73b522c65d763b2223eccf48c4403864ae3e660))
|
|
22
|
+
* **tree-picker-control-v2:** Fix input style ([7cc68b9](https://github.com/dexteel/mesf-core-frontend/commit/7cc68b98510397d973fd8b8f949688caab4557e0))
|
|
23
|
+
|
|
24
|
+
## [4.20.1] - 2024-09-10
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
1
28
|
# Changelog
|
|
2
29
|
|
|
3
30
|
## [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)
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
+
import { Log } from "../../models/Log";
|
|
2
3
|
import "ag-grid-enterprise";
|
|
3
|
-
|
|
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
|
-
|
|
3
|
-
|
|
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
|
|
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">;
|