@tanstack/solid-query 5.51.24 → 5.52.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-query",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.52.2",
|
|
4
4
|
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"src"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@tanstack/query-core": "5.
|
|
47
|
+
"@tanstack/query-core": "5.52.2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"tsup-preset-solid": "^2.2.0",
|
|
@@ -689,6 +689,7 @@ describe('useInfiniteQuery', () => {
|
|
|
689
689
|
const states: Array<
|
|
690
690
|
Partial<CreateInfiniteQueryResult<InfiniteData<number>>>
|
|
691
691
|
> = []
|
|
692
|
+
|
|
692
693
|
let isRefetch = false
|
|
693
694
|
|
|
694
695
|
function Page() {
|
|
@@ -717,7 +718,7 @@ describe('useInfiniteQuery', () => {
|
|
|
717
718
|
isFetchingNextPage: state.isFetchingNextPage,
|
|
718
719
|
isFetchPreviousPageError: state.isFetchPreviousPageError,
|
|
719
720
|
isFetchingPreviousPage: state.isFetchingPreviousPage,
|
|
720
|
-
isRefetchError: state.isRefetchError,
|
|
721
|
+
isRefetchError: state.isRefetchError as true,
|
|
721
722
|
isRefetching: state.isRefetching,
|
|
722
723
|
})
|
|
723
724
|
})
|
|
@@ -828,7 +829,7 @@ describe('useInfiniteQuery', () => {
|
|
|
828
829
|
isFetchingNextPage: state.isFetchingNextPage,
|
|
829
830
|
isFetchPreviousPageError: state.isFetchPreviousPageError,
|
|
830
831
|
isFetchingPreviousPage: state.isFetchingPreviousPage,
|
|
831
|
-
isRefetchError: state.isRefetchError,
|
|
832
|
+
isRefetchError: state.isRefetchError as true,
|
|
832
833
|
isRefetching: state.isRefetching,
|
|
833
834
|
})
|
|
834
835
|
})
|
|
@@ -932,7 +933,7 @@ describe('useInfiniteQuery', () => {
|
|
|
932
933
|
isFetchingNextPage: state.isFetchingNextPage,
|
|
933
934
|
isFetchPreviousPageError: state.isFetchPreviousPageError,
|
|
934
935
|
isFetchingPreviousPage: state.isFetchingPreviousPage,
|
|
935
|
-
isRefetchError: state.isRefetchError,
|
|
936
|
+
isRefetchError: state.isRefetchError as true,
|
|
936
937
|
isRefetching: state.isRefetching,
|
|
937
938
|
})
|
|
938
939
|
})
|