@tanstack/solid-query-devtools 5.100.3 → 5.100.4
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.
|
@@ -88,7 +88,7 @@ declare interface DevtoolsPanelOptions {
|
|
|
88
88
|
/**
|
|
89
89
|
* Callback function that is called when the devtools panel is closed
|
|
90
90
|
*/
|
|
91
|
-
onClose?: () =>
|
|
91
|
+
onClose?: () => void;
|
|
92
92
|
/**
|
|
93
93
|
* Set this to true to hide disabled queries from the devtools panel.
|
|
94
94
|
*/
|
|
@@ -88,7 +88,7 @@ declare interface DevtoolsPanelOptions {
|
|
|
88
88
|
/**
|
|
89
89
|
* Callback function that is called when the devtools panel is closed
|
|
90
90
|
*/
|
|
91
|
-
onClose?: () =>
|
|
91
|
+
onClose?: () => void;
|
|
92
92
|
/**
|
|
93
93
|
* Set this to true to hide disabled queries from the devtools panel.
|
|
94
94
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-query-devtools",
|
|
3
|
-
"version": "5.100.
|
|
3
|
+
"version": "5.100.4",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack/solid-query Query cache",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"!src/__tests__"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@tanstack/query-devtools": "5.100.
|
|
47
|
+
"@tanstack/query-devtools": "5.100.4"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@solidjs/testing-library": "^0.8.10",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"solid-js": "^1.9.7",
|
|
53
53
|
"tsup-preset-solid": "^2.2.0",
|
|
54
54
|
"vite-plugin-solid": "^2.11.6",
|
|
55
|
-
"@tanstack/solid-query": "5.100.
|
|
55
|
+
"@tanstack/solid-query": "5.100.4"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"solid-js": "^1.6.0",
|
|
59
|
-
"@tanstack/solid-query": "^5.100.
|
|
59
|
+
"@tanstack/solid-query": "^5.100.4"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"clean": "premove ./build ./coverage ./dist-ts",
|
package/src/devtoolsPanel.tsx
CHANGED
|
@@ -34,7 +34,7 @@ export interface DevtoolsPanelOptions {
|
|
|
34
34
|
/**
|
|
35
35
|
* Callback function that is called when the devtools panel is closed
|
|
36
36
|
*/
|
|
37
|
-
onClose?: () =>
|
|
37
|
+
onClose?: () => void
|
|
38
38
|
/**
|
|
39
39
|
* Set this to true to hide disabled queries from the devtools panel.
|
|
40
40
|
*/
|