@stoker-platform/web-app 0.5.60 → 0.5.61
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 +10 -0
- package/package.json +4 -4
- package/src/Collection.tsx +3 -1
- package/vite.config.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @stoker-platform/web-app
|
|
2
2
|
|
|
3
|
+
## 0.5.61
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: add ID to single relation nodes
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @stoker-platform/node-client@0.5.40
|
|
10
|
+
- @stoker-platform/utils@0.5.34
|
|
11
|
+
- @stoker-platform/web-client@0.5.38
|
|
12
|
+
|
|
3
13
|
## 0.5.60
|
|
4
14
|
|
|
5
15
|
### 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.61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"scripts": {
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
52
52
|
"@react-google-maps/api": "^2.20.8",
|
|
53
53
|
"@sentry/react": "^10.47.0",
|
|
54
|
-
"@stoker-platform/node-client": "0.5.
|
|
55
|
-
"@stoker-platform/utils": "0.5.
|
|
56
|
-
"@stoker-platform/web-client": "0.5.
|
|
54
|
+
"@stoker-platform/node-client": "0.5.40",
|
|
55
|
+
"@stoker-platform/utils": "0.5.34",
|
|
56
|
+
"@stoker-platform/web-client": "0.5.38",
|
|
57
57
|
"@tanstack/react-table": "^8.21.3",
|
|
58
58
|
"@types/react": "18.3.13",
|
|
59
59
|
"@types/react-dom": "18.3.1",
|
package/src/Collection.tsx
CHANGED
|
@@ -642,7 +642,9 @@ function Collection({
|
|
|
642
642
|
isPreloadCacheEnabled && relationList?.loadAll
|
|
643
643
|
? {
|
|
644
644
|
label: `${labels.collection}-${relationList?.field}`,
|
|
645
|
-
constraints: [
|
|
645
|
+
constraints: [
|
|
646
|
+
[`${relationList?.field}_Single.id`, "==", relationParent?.id],
|
|
647
|
+
],
|
|
646
648
|
}
|
|
647
649
|
: undefined,
|
|
648
650
|
} as SubscribeManyOptions,
|