@tanstack/svelte-query-devtools 5.0.0-beta.18 → 5.0.0-beta.23

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/svelte-query-devtools",
3
- "version": "5.0.0-beta.18",
3
+ "version": "5.0.0-beta.23",
4
4
  "description": "Developer tools to interact with and visualize the TanStack/svelte-query cache",
5
5
  "author": "Lachlan Collins",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "esm-env": "^1.0.0",
32
- "@tanstack/query-devtools": "5.0.0-beta.14"
32
+ "@tanstack/query-devtools": "5.0.0-beta.20"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@sveltejs/package": "^2.2.0",
@@ -37,11 +37,11 @@
37
37
  "eslint-plugin-svelte": "^2.32.0",
38
38
  "svelte": "^4.0.0",
39
39
  "svelte-check": "^3.4.4",
40
- "@tanstack/svelte-query": "5.0.0-beta.18"
40
+ "@tanstack/svelte-query": "5.0.0-beta.23"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "svelte": ">=3 <5",
44
- "@tanstack/svelte-query": "^5.0.0-beta.18"
44
+ "@tanstack/svelte-query": "^5.0.0-beta.23"
45
45
  },
46
46
  "scripts": {
47
47
  "clean": "rimraf ./dist && rimraf ./coverage",
@@ -14,7 +14,7 @@
14
14
  export let buttonPosition: DevtoolsButtonPosition = 'bottom-left'
15
15
  export let position: DevtoolsPosition = 'bottom'
16
16
  export let client: QueryClient = useQueryClient()
17
- export let errorTypes: DevToolsErrorType[] = []
17
+ export let errorTypes: Array<DevToolsErrorType> = []
18
18
 
19
19
  let ref: HTMLDivElement
20
20
  let devtools: TanstackQueryDevtools | undefined