@tanstack/vue-query-devtools 6.1.22 → 6.1.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.
@@ -70,7 +70,7 @@ export interface DevtoolsPanelOptions {
70
70
  /**
71
71
  * Callback function that is called when the devtools panel is closed
72
72
  */
73
- onClose?: () => unknown;
73
+ onClose?: () => void;
74
74
  /**
75
75
  * Set this to true to hide disabled queries from the devtools panel.
76
76
  */
@@ -70,7 +70,7 @@ export interface DevtoolsPanelOptions {
70
70
  /**
71
71
  * Callback function that is called when the devtools panel is closed
72
72
  */
73
- onClose?: () => unknown;
73
+ onClose?: () => void;
74
74
  /**
75
75
  * Set this to true to hide disabled queries from the devtools panel.
76
76
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/vue-query-devtools",
3
- "version": "6.1.22",
3
+ "version": "6.1.23",
4
4
  "description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "!src/__tests__"
43
43
  ],
44
44
  "dependencies": {
45
- "@tanstack/query-devtools": "5.100.3"
45
+ "@tanstack/query-devtools": "5.100.4"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@vitejs/plugin-vue": "^5.2.4",
@@ -51,11 +51,11 @@
51
51
  "vite": "^6.4.1",
52
52
  "vue": "^3.4.27",
53
53
  "vue-tsc": "^2.2.8",
54
- "@tanstack/vue-query": "5.100.3"
54
+ "@tanstack/vue-query": "5.100.4"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "vue": "^3.3.0",
58
- "@tanstack/vue-query": "^5.100.3"
58
+ "@tanstack/vue-query": "^5.100.4"
59
59
  },
60
60
  "scripts": {
61
61
  "clean": "premove ./build ./coverage ./dist-ts",
package/src/types.ts CHANGED
@@ -79,7 +79,7 @@ export interface DevtoolsPanelOptions {
79
79
  /**
80
80
  * Callback function that is called when the devtools panel is closed
81
81
  */
82
- onClose?: () => unknown
82
+ onClose?: () => void
83
83
  /**
84
84
  * Set this to true to hide disabled queries from the devtools panel.
85
85
  */