@dexteel/mesf-core 5.14.1 → 5.14.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.
@@ -12,52 +12,6 @@ jobs:
12
12
  - uses: googleapis/release-please-action@v4
13
13
  id: release
14
14
  with:
15
- command: manifest
16
15
  token: ${{ secrets.GITHUB_TOKEN }}
17
16
  target-branch: 'next'
18
17
  default-branch: 'next'
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
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "5.14.1"
2
+ ".": "5.14.3"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # Changelog
2
+
3
+ ## [5.14.3](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v5.14.2...mesf-core-v5.14.3) (2025-10-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * expand external dependencies in Rollup config ([890e36c](https://github.com/dexteel/mesf-core-frontend/commit/890e36ced395b57f4620fa64d482c5ed1c6b50d2))
9
+
10
+ ## [5.14.2](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v5.14.1...mesf-core-v5.14.2) (2025-10-28)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add debugging info ([7a6cc97](https://github.com/dexteel/mesf-core-frontend/commit/7a6cc978f94d22ade442d273ed3450db61e22832))
16
+
17
+ ## [5.14.1] - 2025-09-23
18
+
19
+
20
+
1
21
  # Changelog
2
22
 
3
23
  ## [5.14.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.14.0...@dexteel/mesf-core-v5.14.1) (2025-09-23)
@@ -1,7 +1,8 @@
1
1
  import React, { type ReactNode } from "react";
2
+ import { AuthConfig } from "./account";
2
3
  import { ConfigurationsType } from "./configurationMenu";
3
4
  interface Props {
4
- authentication: any;
5
+ authentication: AuthConfig;
5
6
  routes: ReactNode;
6
7
  navbar: ReactNode;
7
8
  navbarTitle?: string;
package/dist/index.esm.js CHANGED
@@ -63,7 +63,7 @@ import AccountTreeIcon from '@material-ui/icons/AccountTree';
63
63
  import Code from '@material-ui/icons/Code';
64
64
  import TreeItem from '@material-ui/lab/TreeItem';
65
65
  import TreeView from '@material-ui/lab/TreeView';
66
- import { useSpring, animated } from '@react-spring/web';
66
+ import { useSpring, animated } from 'react-spring';
67
67
  import { DataGrid, GridOverlay } from '@material-ui/data-grid';
68
68
  import GetAppIcon from '@material-ui/icons/GetApp';
69
69
  import PersonOutlineIcon from '@material-ui/icons/PersonOutline';
@@ -8004,9 +8004,13 @@ var UserProvider = function (_a) {
8004
8004
  setPermissionsLoaded(true);
8005
8005
  }
8006
8006
  if (resp && resp.Profiles) {
8007
- profilesArray = resp.Profiles.split(",");
8008
- actions.setProfiles(profilesArray);
8009
- setProfilesLoaded(true);
8007
+ console.log("resp.Profiles type:", typeof resp.Profiles);
8008
+ console.log("resp.Profiles value:", resp.Profiles);
8009
+ if (typeof resp.Profiles === "string") {
8010
+ profilesArray = resp.Profiles.split(",");
8011
+ actions.setProfiles(profilesArray);
8012
+ setProfilesLoaded(true);
8013
+ }
8010
8014
  }
8011
8015
  return [3 /*break*/, 4];
8012
8016
  case 3: