@dexteel/mesf-core 7.11.1 → 7.12.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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/configuration/pages/log/components/Filters/TagFilter.d.ts +9 -0
- package/dist/configuration/pages/log/models/Tag.d.ts +19 -0
- package/dist/configuration/pages/log/repositories/LogsRepository.d.ts +3 -1
- package/dist/configuration/pages/log/repositories/TagsRepository.d.ts +3 -0
- package/dist/index.esm.js +8229 -10467
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.12.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.11.2...@dexteel/mesf-core-v7.12.0) (2026-01-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **Logs:** Implement tag filtering functionality in logs ([9dc7efa](https://github.com/dexteel/mesf-core-frontend/commit/9dc7efa6b7d337bd9bc5903c45cc7a8b13a7c6de))
|
|
9
|
+
|
|
10
|
+
## [7.11.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.11.1...@dexteel/mesf-core-v7.11.2) (2026-01-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ts config:** Set target to ES2015 in compiler options ([e0ab4ce](https://github.com/dexteel/mesf-core-frontend/commit/e0ab4ce90d4b680f5c90681e9f3acae8fa4178ff))
|
|
16
|
+
|
|
3
17
|
## [7.11.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.11.0...@dexteel/mesf-core-v7.11.1) (2026-01-21)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { TagFilterContext, TagFilterType } from "../../models/Tag";
|
|
3
|
+
type Props = {
|
|
4
|
+
tagFilters: TagFilterType[];
|
|
5
|
+
setTagFilters: (filters: TagFilterType[]) => void;
|
|
6
|
+
filterContext: TagFilterContext;
|
|
7
|
+
};
|
|
8
|
+
export declare const TagFilter: ({ tagFilters, setTagFilters, filterContext, }: Props) => React.JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface Tag {
|
|
2
|
+
TagId: number;
|
|
3
|
+
TagName: string;
|
|
4
|
+
HasData: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface TagValue {
|
|
7
|
+
Value: string;
|
|
8
|
+
HasData: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface TagFilterType {
|
|
11
|
+
TagName: string;
|
|
12
|
+
Values: string[];
|
|
13
|
+
}
|
|
14
|
+
export interface TagFilterContext {
|
|
15
|
+
startDate: Date;
|
|
16
|
+
endDate: Date | null;
|
|
17
|
+
logTypeCode: string | null;
|
|
18
|
+
tagFilters: TagFilterType[];
|
|
19
|
+
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { Log } from "../models/Log";
|
|
2
|
+
import { TagFilterType } from "../models/Tag";
|
|
2
3
|
type Props = {
|
|
3
4
|
startDate: Date;
|
|
4
5
|
endDate: Date | null;
|
|
5
6
|
logTypeCode: number | string | null;
|
|
7
|
+
tagFilters?: TagFilterType[];
|
|
6
8
|
};
|
|
7
|
-
export declare const getLogs: ({ startDate, endDate, logTypeCode }: Props) => Promise<Log[]>;
|
|
9
|
+
export declare const getLogs: ({ startDate, endDate, logTypeCode, tagFilters, }: Props) => Promise<Log[]>;
|
|
8
10
|
export {};
|