@stoker-platform/web-app 0.5.49 → 0.5.51
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 +13 -13
- package/src/Filters.tsx +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: update dependencies
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @stoker-platform/node-client@0.5.33
|
|
10
|
+
- @stoker-platform/utils@0.5.27
|
|
11
|
+
- @stoker-platform/web-client@0.5.29
|
|
12
|
+
|
|
13
|
+
## 0.5.50
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- fix: prevent clearing relation list filter
|
|
18
|
+
|
|
3
19
|
## 0.5.49
|
|
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.51",
|
|
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.43.0",
|
|
54
|
+
"@stoker-platform/node-client": "0.5.33",
|
|
55
|
+
"@stoker-platform/utils": "0.5.27",
|
|
56
|
+
"@stoker-platform/web-client": "0.5.29",
|
|
57
57
|
"@tanstack/react-table": "^8.21.3",
|
|
58
58
|
"@types/react": "18.3.13",
|
|
59
59
|
"@types/react-dom": "18.3.1",
|
|
60
|
-
"@vitejs/plugin-react": "^5.
|
|
60
|
+
"@vitejs/plugin-react": "^5.2.0",
|
|
61
61
|
"ai": "^5.0.44",
|
|
62
|
-
"algoliasearch": "^5.
|
|
62
|
+
"algoliasearch": "^5.49.2",
|
|
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": "^0.
|
|
67
|
+
"firebase": "^12.10.0",
|
|
68
|
+
"lucide-react": "^0.577.0",
|
|
69
69
|
"minisearch": "^7.2.0",
|
|
70
70
|
"moment-timezone": "latest",
|
|
71
71
|
"qrcode.react": "^4.2.0",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"react-dnd-html5-backend": "^16.0.1",
|
|
78
78
|
"react-dom": "18.3.1",
|
|
79
79
|
"react-helmet": "^6.1.0",
|
|
80
|
-
"react-hook-form": "^7.71.
|
|
80
|
+
"react-hook-form": "^7.71.2",
|
|
81
81
|
"react-resizable-panels": "^3.0.6",
|
|
82
|
-
"react-router": "^7.13.
|
|
82
|
+
"react-router": "^7.13.1",
|
|
83
83
|
"react-window": "^1.8.11",
|
|
84
84
|
"react-window-infinite-loader": "^1.0.10",
|
|
85
85
|
"recharts": "^2.15.4",
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
"@types/react-window": "^1.8.8",
|
|
104
104
|
"@types/react-window-infinite-loader": "^1.0.9",
|
|
105
105
|
"@vite-pwa/assets-generator": "^1.0.2",
|
|
106
|
-
"autoprefixer": "^10.4.
|
|
107
|
-
"postcss": "^8.5.
|
|
106
|
+
"autoprefixer": "^10.4.27",
|
|
107
|
+
"postcss": "^8.5.8",
|
|
108
108
|
"tailwindcss": "^3.4.19",
|
|
109
109
|
"vite-plugin-pwa": "^1.2.0"
|
|
110
110
|
},
|
package/src/Filters.tsx
CHANGED
|
@@ -727,6 +727,7 @@ export function Filters({ collection, excluded, relationList }: FiltersProps) {
|
|
|
727
727
|
}
|
|
728
728
|
filters.forEach((filter) => {
|
|
729
729
|
if (filter.type === "status" || filter.type === "range") return
|
|
730
|
+
if (relationList && relationList.field === filter.field) return
|
|
730
731
|
const field = getField(fields, filter.field)
|
|
731
732
|
if (!field) return
|
|
732
733
|
if (filter.type === "select") {
|