@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.
- 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/controls/filters/TreePickerControlV2.d.ts +1 -0
- package/dist/index.esm.js +260 -263
- 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.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,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">;
|