@stoker-platform/web-app 0.5.82 → 0.5.84
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/CHANGELOG.md +16 -0
- package/package.json +12 -12
- package/src/main.tsx +15 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.84
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: disable Sentry in dev mode
|
|
8
|
+
|
|
9
|
+
## 0.5.83
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- chore: update dependencies
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @stoker-platform/node-client@0.5.47
|
|
16
|
+
- @stoker-platform/web-client@0.5.47
|
|
17
|
+
- @stoker-platform/utils@0.5.39
|
|
18
|
+
|
|
3
19
|
## 0.5.82
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoker-platform/web-app",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.84",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"scripts": {
|
|
@@ -50,22 +50,22 @@
|
|
|
50
50
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
51
51
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
52
52
|
"@react-google-maps/api": "^2.20.8",
|
|
53
|
-
"@sentry/react": "^10.
|
|
54
|
-
"@stoker-platform/node-client": "0.5.
|
|
55
|
-
"@stoker-platform/utils": "0.5.
|
|
56
|
-
"@stoker-platform/web-client": "0.5.
|
|
53
|
+
"@sentry/react": "^10.50.0",
|
|
54
|
+
"@stoker-platform/node-client": "0.5.47",
|
|
55
|
+
"@stoker-platform/utils": "0.5.39",
|
|
56
|
+
"@stoker-platform/web-client": "0.5.47",
|
|
57
57
|
"@tanstack/react-table": "^8.21.3",
|
|
58
58
|
"@types/react": "18.3.13",
|
|
59
59
|
"@types/react-dom": "18.3.1",
|
|
60
60
|
"@vitejs/plugin-react": "^5.2.0",
|
|
61
61
|
"ai": "^5.0.44",
|
|
62
|
-
"algoliasearch": "^5.
|
|
62
|
+
"algoliasearch": "^5.51.0",
|
|
63
63
|
"class-variance-authority": "^0.7.1",
|
|
64
64
|
"clsx": "^2.1.1",
|
|
65
65
|
"cmdk": "^1.1.1",
|
|
66
66
|
"date-fns": "^3.6.0",
|
|
67
|
-
"firebase": "^12.
|
|
68
|
-
"lucide-react": "^1.
|
|
67
|
+
"firebase": "^12.12.1",
|
|
68
|
+
"lucide-react": "^1.11.0",
|
|
69
69
|
"minisearch": "^7.2.0",
|
|
70
70
|
"moment-timezone": "latest",
|
|
71
71
|
"qrcode.react": "^4.2.0",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"react-dnd-html5-backend": "^16.0.1",
|
|
79
79
|
"react-dom": "18.3.1",
|
|
80
80
|
"react-helmet": "^6.1.0",
|
|
81
|
-
"react-hook-form": "^7.
|
|
81
|
+
"react-hook-form": "^7.74.0",
|
|
82
82
|
"react-resizable-panels": "^3.0.6",
|
|
83
|
-
"react-router": "^7.
|
|
83
|
+
"react-router": "^7.14.2",
|
|
84
84
|
"react-window": "^1.8.11",
|
|
85
85
|
"react-window-infinite-loader": "^1.0.10",
|
|
86
86
|
"recharts": "^2.15.4",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
"@types/react-window": "^1.8.8",
|
|
105
105
|
"@types/react-window-infinite-loader": "^1.0.9",
|
|
106
106
|
"@vite-pwa/assets-generator": "^1.0.2",
|
|
107
|
-
"autoprefixer": "^10.
|
|
108
|
-
"postcss": "^8.5.
|
|
107
|
+
"autoprefixer": "^10.5.0",
|
|
108
|
+
"postcss": "^8.5.10",
|
|
109
109
|
"tailwindcss": "^3.4.19",
|
|
110
110
|
"vite-plugin-pwa": "^1.2.0"
|
|
111
111
|
},
|
package/src/main.tsx
CHANGED
|
@@ -27,19 +27,21 @@ import { GlobalLoadingProvider, useGlobalLoading } from "./providers/LoadingProv
|
|
|
27
27
|
import { useToast } from "./hooks/use-toast"
|
|
28
28
|
import * as Sentry from "@sentry/react"
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
30
|
+
if (import.meta.env.STOKER_SENTRY_DSN) {
|
|
31
|
+
Sentry.init({
|
|
32
|
+
dsn: import.meta.env.STOKER_SENTRY_DSN,
|
|
33
|
+
integrations: [
|
|
34
|
+
Sentry.reactRouterV7BrowserTracingIntegration({
|
|
35
|
+
useEffect,
|
|
36
|
+
useLocation,
|
|
37
|
+
useNavigationType,
|
|
38
|
+
createRoutesFromChildren,
|
|
39
|
+
matchRoutes,
|
|
40
|
+
}),
|
|
41
|
+
],
|
|
42
|
+
tracesSampleRate: 1.0,
|
|
43
|
+
})
|
|
44
|
+
}
|
|
43
45
|
|
|
44
46
|
const sentryCreateBrowserRouter = Sentry.wrapCreateBrowserRouterV7(createBrowserRouter)
|
|
45
47
|
|