@shipfox/client-shell 3.0.1 → 5.0.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/dist/components/auth-shell.d.ts +13 -0
- package/dist/components/auth-shell.d.ts.map +1 -0
- package/dist/components/auth-shell.js +68 -0
- package/dist/components/auth-shell.js.map +1 -0
- package/dist/core/session.d.ts +20 -0
- package/dist/core/session.d.ts.map +1 -0
- package/dist/core/session.js +3 -0
- package/dist/core/session.js.map +1 -0
- package/dist/hooks/api/session-mapper.d.ts +5 -0
- package/dist/hooks/api/session-mapper.d.ts.map +1 -0
- package/dist/hooks/api/session-mapper.js +20 -0
- package/dist/hooks/api/session-mapper.js.map +1 -0
- package/dist/runtime/auth.d.ts +14 -22
- package/dist/runtime/auth.d.ts.map +1 -1
- package/dist/runtime/auth.js +83 -31
- package/dist/runtime/auth.js.map +1 -1
- package/dist/runtime/index.d.ts +3 -0
- package/dist/runtime/index.d.ts.map +1 -1
- package/dist/runtime/index.js +2 -0
- package/dist/runtime/index.js.map +1 -1
- package/dist/runtime/last-workspace.d.ts +1 -1
- package/dist/runtime/last-workspace.d.ts.map +1 -1
- package/dist/runtime/last-workspace.js +33 -14
- package/dist/runtime/last-workspace.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +5 -27
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/client-shell",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -41,11 +41,12 @@
|
|
|
41
41
|
"@tanstack/router-core": "^1.171.13",
|
|
42
42
|
"tsx": "^4.22.4",
|
|
43
43
|
"framer-motion": "^12.23.24",
|
|
44
|
-
"@shipfox/api
|
|
44
|
+
"@shipfox/client-api": "4.0.0",
|
|
45
45
|
"@shipfox/api-workspaces-dto": "6.0.0",
|
|
46
|
-
"@shipfox/client-api": "1.0.0",
|
|
47
46
|
"@shipfox/client-config": "3.0.1",
|
|
48
|
-
"@shipfox/
|
|
47
|
+
"@shipfox/client-ui": "4.0.0",
|
|
48
|
+
"@shipfox/react-ui": "0.3.5",
|
|
49
|
+
"@shipfox/api-auth-dto": "7.1.0"
|
|
49
50
|
},
|
|
50
51
|
"peerDependencies": {
|
|
51
52
|
"@storybook/react": "^10.4.6",
|
|
@@ -62,29 +63,6 @@
|
|
|
62
63
|
"optional": true
|
|
63
64
|
}
|
|
64
65
|
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@storybook/react": "^10.0.0",
|
|
67
|
-
"@tanstack/react-query": "^5.101.0",
|
|
68
|
-
"@tanstack/react-router": "^1.170.16",
|
|
69
|
-
"@testing-library/jest-dom": "^6.6.3",
|
|
70
|
-
"@testing-library/react": "^16.3.2",
|
|
71
|
-
"@types/react": "^19.1.11",
|
|
72
|
-
"@types/react-dom": "^19.1.7",
|
|
73
|
-
"jotai": "^2.19.1",
|
|
74
|
-
"jsdom": "^29.0.0",
|
|
75
|
-
"react": "^19.1.1",
|
|
76
|
-
"react-dom": "^19.1.1",
|
|
77
|
-
"vite": "^8.0.3",
|
|
78
|
-
"zod": "^4.4.3",
|
|
79
|
-
"@shipfox/application-release": "0.1.4",
|
|
80
|
-
"@shipfox/biome": "1.8.2",
|
|
81
|
-
"@shipfox/client-test-setup": "0.0.3",
|
|
82
|
-
"@shipfox/swc": "1.2.6",
|
|
83
|
-
"@shipfox/ts-config": "1.3.8",
|
|
84
|
-
"@shipfox/typescript": "1.1.7",
|
|
85
|
-
"@shipfox/tool-utils": "1.2.0",
|
|
86
|
-
"@shipfox/vitest": "1.2.3"
|
|
87
|
-
},
|
|
88
66
|
"scripts": {
|
|
89
67
|
"build": "shipfox-swc",
|
|
90
68
|
"check": "shipfox-biome-check",
|