@dexteel/mesf-core 6.0.5 → 6.1.1
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/.github/workflows/release-please-v6.yml +0 -45
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +39 -0
- package/dist/configuration/pages/log/components/Filters/codeFilter.d.ts +2 -2
- package/dist/configuration/pages/log/data/LogTypeCodes.d.ts +5 -4
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +202 -78
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/components/chart/sections/header.d.ts +1 -1
- package/dist/pages/trendings/components/chart/sections/trending-chart.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,48 +16,3 @@ jobs:
|
|
|
16
16
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
17
17
|
target-branch: 'next-ng'
|
|
18
18
|
default-branch: 'next-ng'
|
|
19
|
-
|
|
20
|
-
- uses: actions/checkout@v4
|
|
21
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
22
|
-
|
|
23
|
-
- name: Setup Node.js
|
|
24
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
25
|
-
uses: actions/setup-node@v4
|
|
26
|
-
with:
|
|
27
|
-
node-version: 'lts/hydrogen' # Adjust this to your Node.js version
|
|
28
|
-
|
|
29
|
-
- name: Update Node.js package versions
|
|
30
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
31
|
-
run: |
|
|
32
|
-
version="${{ steps.release.outputs.version }}"
|
|
33
|
-
find . -name "package.json" -type f -print0 | while IFS= read -r -d '' file; do
|
|
34
|
-
jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
|
|
35
|
-
done
|
|
36
|
-
|
|
37
|
-
- name: Update CHANGELOG.md
|
|
38
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
39
|
-
run: |
|
|
40
|
-
version="${{ steps.release.outputs.version }}"
|
|
41
|
-
date=$(date +"%Y-%m-%d")
|
|
42
|
-
echo -e "# Changelog\n\n## [${version}] - ${date}\n\n${{ steps.release.outputs.changelog }}\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
|
|
43
|
-
|
|
44
|
-
- name: Commit changes
|
|
45
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
46
|
-
run: |
|
|
47
|
-
git config --local user.email "action@github.com"
|
|
48
|
-
git config --local user.name "GitHub Action"
|
|
49
|
-
git add .
|
|
50
|
-
git commit -m "chore: update versions and CHANGELOG for ${{ steps.release.outputs.version }}" || echo "No changes to commit"
|
|
51
|
-
git push
|
|
52
|
-
|
|
53
|
-
- name: Create Release
|
|
54
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
55
|
-
uses: actions/create-release@v1
|
|
56
|
-
env:
|
|
57
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
58
|
-
with:
|
|
59
|
-
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
60
|
-
release_name: Release ${{ steps.release.outputs.version }}
|
|
61
|
-
body: ${{ steps.release.outputs.changelog }}
|
|
62
|
-
draft: false
|
|
63
|
-
prerelease: false
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [6.1.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.1.0...@dexteel/mesf-core-v6.1.1) (2025-10-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **devops:** remove unnecessary code from release-please yaml ([51f15d2](https://github.com/dexteel/mesf-core-frontend/commit/51f15d20b3c0130ce47375294b77eb59d3e42aa1))
|
|
9
|
+
* **Trendings:** optimize chart updates and add request cancellation for zoom/pan ([#504](https://github.com/dexteel/mesf-core-frontend/issues/504)) ([2277a65](https://github.com/dexteel/mesf-core-frontend/commit/2277a653360ab379d18b1ead252ff480f9eb16f9))
|
|
10
|
+
|
|
11
|
+
## [6.1.0] - 2025-10-13
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Changelog
|
|
16
|
+
|
|
17
|
+
## [6.1.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.0.5...@dexteel/mesf-core-v6.1.0) (2025-10-13)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **asset:** export CRUD dialogs for reuse across projects ([#503](https://github.com/dexteel/mesf-core-frontend/issues/503)) ([d1b94bf](https://github.com/dexteel/mesf-core-frontend/commit/d1b94bf20020c5906179fc27ffd86bb455eba2c7))
|
|
23
|
+
* **Code Filter:** Improve type handling and display logic ([d98401c](https://github.com/dexteel/mesf-core-frontend/commit/d98401c7f6790e136186a4ddc8d625ca00923dca))
|
|
24
|
+
* **Table Logs:** Update log type handling and add 'Debug' log type ([0b7ad35](https://github.com/dexteel/mesf-core-frontend/commit/0b7ad35325fd07d52758173e8101a0b4413ec2a1))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **Logbook:** adjust Asset column to display complete data with text wrapping ([#502](https://github.com/dexteel/mesf-core-frontend/issues/502)) ([e539a25](https://github.com/dexteel/mesf-core-frontend/commit/e539a2508aee1a36008959ce9bba787cb596249d))
|
|
30
|
+
* **Table Jobs:** Update context menu id ([3b41af5](https://github.com/dexteel/mesf-core-frontend/commit/3b41af57b5130da6dd8b92d860cc3a0fcd5adc23))
|
|
31
|
+
* **Table Jobs:** Update context menu id ([40718d8](https://github.com/dexteel/mesf-core-frontend/commit/40718d8d855dbffc9e8d4692b500f8983f48c3f7))
|
|
32
|
+
* **Table Jobs:** Use onRowClicked instead of onRowSelected ([127de26](https://github.com/dexteel/mesf-core-frontend/commit/127de2678903219e727ef9b85ccf03a55599d102))
|
|
33
|
+
* **Table Jobs:** Use onRowClicked instead of onRowSelected ([5e1b15e](https://github.com/dexteel/mesf-core-frontend/commit/5e1b15e9645ee024510e447974787f9fda1d14e4))
|
|
34
|
+
* Update release-please-v6.yml ([e61411c](https://github.com/dexteel/mesf-core-frontend/commit/e61411c04211a3ee1875709ab09451035b7f89e5))
|
|
35
|
+
|
|
36
|
+
## [6.0.5] - 2025-10-02
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
1
40
|
# Changelog
|
|
2
41
|
|
|
3
42
|
## [6.0.5](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.0.4...@dexteel/mesf-core-v6.0.5) (2025-10-02)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type Props = {
|
|
3
|
-
LogTypeCode:
|
|
4
|
-
setLogTypeCodeFilter: (logTypeCode:
|
|
3
|
+
LogTypeCode: string[];
|
|
4
|
+
setLogTypeCodeFilter: (logTypeCode: string[]) => void;
|
|
5
5
|
};
|
|
6
6
|
export declare const CodeFilter: ({ LogTypeCode, setLogTypeCodeFilter }: Props) => React.JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export declare const LOG_TYPE_CODES: {
|
|
2
|
-
A: {
|
|
3
|
-
id: string;
|
|
4
|
-
description: string;
|
|
5
|
-
};
|
|
6
2
|
I: {
|
|
7
3
|
id: string;
|
|
8
4
|
color: string;
|
|
@@ -18,4 +14,9 @@ export declare const LOG_TYPE_CODES: {
|
|
|
18
14
|
color: string;
|
|
19
15
|
description: string;
|
|
20
16
|
};
|
|
17
|
+
D: {
|
|
18
|
+
id: string;
|
|
19
|
+
color: string;
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
21
22
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,9 @@ export * from "./components/shared/buttons/button-with-loading";
|
|
|
8
8
|
export * from "./configuration";
|
|
9
9
|
export { searchAssets } from "./configuration/pages/asset/components/TreeAsset";
|
|
10
10
|
export { AssetTreePicker } from "./controls/asset-tree-picker/AssetTreePicker";
|
|
11
|
+
export { CreateNewAssetDialog } from "./configuration/pages/asset/components/dialogs/create-new-asset-dialog";
|
|
12
|
+
export { EditAssetDialog } from "./configuration/pages/asset/components/dialogs/edit-asset-dialog";
|
|
13
|
+
export { RemoveAssetDialog } from "./configuration/pages/asset/components/dialogs/remove-asset-dialog";
|
|
11
14
|
export * from "./configuration/pages/users/models/User";
|
|
12
15
|
export * from "./configuration/pages/users/repositories/UsersRepository";
|
|
13
16
|
export * from "./context/assetContext";
|
|
@@ -23,6 +26,9 @@ export * from "./MESFMain";
|
|
|
23
26
|
export { logbookNavbar, logbookRoutesMESF } from "./pages/logbook";
|
|
24
27
|
export { MESFLogbookEntry } from "./pages/logbook/entry/index";
|
|
25
28
|
export { routeLogbookEntry } from "./pages/logbook/entry/LogbookPage";
|
|
29
|
+
export type { Entry } from "./pages/logbook/entry/models/Entry";
|
|
30
|
+
export { ENTRY_INITIAL_VALUES } from "./pages/logbook/entry/models/Entry";
|
|
31
|
+
export { getEntries } from "./pages/logbook/entry/repository/LogbookRepository";
|
|
26
32
|
export { MESFLogbookReport } from "./pages/logbook/report/index";
|
|
27
33
|
export { routeLogbookReport } from "./pages/logbook/report/LogbookPage";
|
|
28
34
|
export * from "./pages/trendings/TrendingsPage";
|