@hitachivantara/app-shell-navigation 1.3.6 → 1.3.8

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.
@@ -10,7 +10,7 @@ const useHvCurrentNavigationPath = () => {
10
10
  const paths = [];
11
11
  const selectedPathIds = selectedMenuItemId.split("-");
12
12
  selectedPathIds.forEach((item) => {
13
- const currentItem = currentItems[parseInt(item, 10)];
13
+ const currentItem = currentItems[Number(item)];
14
14
  paths.push({
15
15
  label: currentItem.label,
16
16
  path: currentItem.data ? void 0 : currentItem.href
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/app-shell-navigation",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "Hitachi Vantara UI Kit Team",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "bugs": "https://github.com/lumada-design/hv-uikit-react/issues",
17
17
  "dependencies": {
18
- "@hitachivantara/app-shell-shared": "^1.5.6",
18
+ "@hitachivantara/app-shell-shared": "^1.5.8",
19
19
  "path-to-regexp": "^8.1.0"
20
20
  },
21
21
  "peerDependencies": {
@@ -29,7 +29,7 @@
29
29
  "access": "public",
30
30
  "directory": "package"
31
31
  },
32
- "gitHead": "e4ee566c6d223e9c4a4dff9e04cd60fda4f93ead",
32
+ "gitHead": "7c14c1cfb05319faf3d647bb806d25655363cbc5",
33
33
  "exports": {
34
34
  ".": {
35
35
  "types": "./dist/types/index.d.ts",