@tanstack/svelte-query 6.1.35 → 6.1.36
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.
|
@@ -95,7 +95,7 @@ export function createRawRef(init) {
|
|
|
95
95
|
}
|
|
96
96
|
for (const key of newKeys) {
|
|
97
97
|
// @ts-expect-error
|
|
98
|
-
// This craziness is required because
|
|
98
|
+
// This craziness is required because TanStack Query defines getters for all of the keys on the object.
|
|
99
99
|
// These getters track property access, so if we access all of them here, we'll end up tracking everything.
|
|
100
100
|
// So we wrap the property access in a special function that we can identify later to lazily access the value.
|
|
101
101
|
// (See above)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/svelte-query",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.36",
|
|
4
4
|
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Svelte",
|
|
5
5
|
"author": "Lachlan Collins",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"!src/__tests__"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@tanstack/query-core": "5.101.
|
|
42
|
+
"@tanstack/query-core": "5.101.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@sveltejs/package": "^2.4.0",
|
package/src/containers.svelte.ts
CHANGED
|
@@ -94,7 +94,7 @@ export function createRawRef<T extends {} | Array<unknown>>(
|
|
|
94
94
|
}
|
|
95
95
|
for (const key of newKeys) {
|
|
96
96
|
// @ts-expect-error
|
|
97
|
-
// This craziness is required because
|
|
97
|
+
// This craziness is required because TanStack Query defines getters for all of the keys on the object.
|
|
98
98
|
// These getters track property access, so if we access all of them here, we'll end up tracking everything.
|
|
99
99
|
// So we wrap the property access in a special function that we can identify later to lazily access the value.
|
|
100
100
|
// (See above)
|