@entur-partner/app-shell 6.5.1 → 6.5.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/README.md +0 -1
- package/dist/AppShell.d.ts +1 -1
- package/dist/ConsentManagerProvider.d.ts +1 -1
- package/dist/EnvironmentBanner.d.ts +1 -1
- package/dist/PostHogProviderWrapper.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1924 -1809
- package/dist/index.mjs.map +1 -1
- package/package.json +31 -31
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur-partner/app-shell",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.2",
|
|
4
|
+
"gitHead": "cf7cf14e943d612846d778c6ab8cc1bf35377a64",
|
|
4
5
|
"license": "EUPL-1.2",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/entur/entur-partner-packages.git",
|
|
9
|
+
"directory": "packages/app-shell"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
5
14
|
"type": "module",
|
|
6
15
|
"exports": {
|
|
7
16
|
".": {
|
|
@@ -10,14 +19,6 @@
|
|
|
10
19
|
"import": "./dist/index.mjs"
|
|
11
20
|
}
|
|
12
21
|
},
|
|
13
|
-
"files": [
|
|
14
|
-
"dist"
|
|
15
|
-
],
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "https://github.com/entur/entur-partner-packages.git",
|
|
19
|
-
"directory": "packages/app-shell"
|
|
20
|
-
},
|
|
21
22
|
"publishConfig": {
|
|
22
23
|
"access": "public"
|
|
23
24
|
},
|
|
@@ -25,6 +26,26 @@
|
|
|
25
26
|
"build": "vite build && tsc -p tsconfig.build.json",
|
|
26
27
|
"test": "vitest run"
|
|
27
28
|
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@auth0/auth0-react": "2.17.0",
|
|
31
|
+
"@entur-partner/common": "11.3.1",
|
|
32
|
+
"@entur-partner/micro-frontend": "2.10.0",
|
|
33
|
+
"@entur-partner/util": "1.4.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@entur-partner/permission-client-node": "3.6.2",
|
|
37
|
+
"@entur/button": "4.0.6",
|
|
38
|
+
"@entur/dropdown": "8.1.3",
|
|
39
|
+
"@entur/expand": "3.7.7",
|
|
40
|
+
"@entur/form": "9.3.3",
|
|
41
|
+
"@entur/icons": "8.4.6",
|
|
42
|
+
"@entur/menu": "6.1.6",
|
|
43
|
+
"@entur/modal": "1.8.11",
|
|
44
|
+
"@entur/tooltip": "5.3.11",
|
|
45
|
+
"react": "19.2.7",
|
|
46
|
+
"react-dom": "19.2.7",
|
|
47
|
+
"react-router-dom": "7.16.0"
|
|
48
|
+
},
|
|
28
49
|
"peerDependencies": {
|
|
29
50
|
"@auth0/auth0-react": ">=2.2.3 <3.0.0",
|
|
30
51
|
"@entur/alert": ">=0.11.0 <1.0.0",
|
|
@@ -35,26 +56,5 @@
|
|
|
35
56
|
"react": ">=18.0.0",
|
|
36
57
|
"react-dom": ">=18.0.0",
|
|
37
58
|
"react-router-dom": ">=6.30.1"
|
|
38
|
-
}
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@auth0/auth0-react": "2.16.2",
|
|
41
|
-
"@entur-partner/common": "^11.3.0",
|
|
42
|
-
"@entur-partner/micro-frontend": "^2.10.0",
|
|
43
|
-
"@entur-partner/util": "^1.4.0"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@entur-partner/permission-client-node": "3.6.2",
|
|
47
|
-
"@entur/button": "4.0.5",
|
|
48
|
-
"@entur/dropdown": "8.1.2",
|
|
49
|
-
"@entur/expand": "3.7.6",
|
|
50
|
-
"@entur/form": "9.3.2",
|
|
51
|
-
"@entur/icons": "8.4.5",
|
|
52
|
-
"@entur/menu": "6.1.5",
|
|
53
|
-
"@entur/modal": "1.8.10",
|
|
54
|
-
"@entur/tooltip": "5.3.10",
|
|
55
|
-
"react": "19.2.5",
|
|
56
|
-
"react-dom": "19.2.5",
|
|
57
|
-
"react-router-dom": "7.14.2"
|
|
58
|
-
},
|
|
59
|
-
"gitHead": "41fe020cfd18f4fb1f688dd07e247803c54f46d3"
|
|
59
|
+
}
|
|
60
60
|
}
|