@tanstack/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.
|
@@ -34,7 +34,7 @@ declare interface ContentViewProps {
|
|
|
34
34
|
localStore: StorageObject<string>;
|
|
35
35
|
setLocalStore: StorageSetter<string, unknown>;
|
|
36
36
|
showPanelViewOnly?: boolean;
|
|
37
|
-
onClose?: () =>
|
|
37
|
+
onClose?: () => void;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
export declare const convertRemToPixels: (rem: number) => number;
|
|
@@ -208,7 +208,7 @@ declare interface QueryDevtoolsProps {
|
|
|
208
208
|
initialIsOpen?: boolean;
|
|
209
209
|
errorTypes?: Array<DevtoolsErrorType>;
|
|
210
210
|
shadowDOMTarget?: ShadowRoot;
|
|
211
|
-
onClose?: () =>
|
|
211
|
+
onClose?: () => void;
|
|
212
212
|
hideDisabledQueries?: boolean;
|
|
213
213
|
theme?: Theme;
|
|
214
214
|
}
|
|
@@ -274,7 +274,7 @@ export { TanstackQueryDevtoolsPanel as TanstackQueryDevtoolsPanel_alias_1 }
|
|
|
274
274
|
declare interface TanstackQueryDevtoolsPanelConfig extends QueryDevtoolsProps {
|
|
275
275
|
styleNonce?: string;
|
|
276
276
|
shadowDOMTarget?: ShadowRoot;
|
|
277
|
-
onClose?: () =>
|
|
277
|
+
onClose?: () => void;
|
|
278
278
|
}
|
|
279
279
|
export { TanstackQueryDevtoolsPanelConfig }
|
|
280
280
|
export { TanstackQueryDevtoolsPanelConfig as TanstackQueryDevtoolsPanelConfig_alias_1 }
|
|
@@ -34,7 +34,7 @@ declare interface ContentViewProps {
|
|
|
34
34
|
localStore: StorageObject<string>;
|
|
35
35
|
setLocalStore: StorageSetter<string, unknown>;
|
|
36
36
|
showPanelViewOnly?: boolean;
|
|
37
|
-
onClose?: () =>
|
|
37
|
+
onClose?: () => void;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
export declare const convertRemToPixels: (rem: number) => number;
|
|
@@ -208,7 +208,7 @@ declare interface QueryDevtoolsProps {
|
|
|
208
208
|
initialIsOpen?: boolean;
|
|
209
209
|
errorTypes?: Array<DevtoolsErrorType>;
|
|
210
210
|
shadowDOMTarget?: ShadowRoot;
|
|
211
|
-
onClose?: () =>
|
|
211
|
+
onClose?: () => void;
|
|
212
212
|
hideDisabledQueries?: boolean;
|
|
213
213
|
theme?: Theme;
|
|
214
214
|
}
|
|
@@ -274,7 +274,7 @@ export { TanstackQueryDevtoolsPanel as TanstackQueryDevtoolsPanel_alias_1 }
|
|
|
274
274
|
declare interface TanstackQueryDevtoolsPanelConfig extends QueryDevtoolsProps {
|
|
275
275
|
styleNonce?: string;
|
|
276
276
|
shadowDOMTarget?: ShadowRoot;
|
|
277
|
-
onClose?: () =>
|
|
277
|
+
onClose?: () => void;
|
|
278
278
|
}
|
|
279
279
|
export { TanstackQueryDevtoolsPanelConfig }
|
|
280
280
|
export { TanstackQueryDevtoolsPanelConfig as TanstackQueryDevtoolsPanelConfig_alias_1 }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/query-devtools",
|
|
3
|
-
"version": "5.100.
|
|
3
|
+
"version": "5.100.4",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack Query cache",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"superjson": "^2.2.2",
|
|
58
58
|
"tsup-preset-solid": "^2.2.0",
|
|
59
59
|
"vite-plugin-solid": "^2.11.6",
|
|
60
|
-
"@tanstack/query-core": "5.100.
|
|
60
|
+
"@tanstack/query-core": "5.100.4"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"clean": "premove ./build ./coverage ./dist-ts",
|
package/src/Devtools.tsx
CHANGED
|
@@ -18,7 +18,7 @@ import type { Signal } from 'solid-js'
|
|
|
18
18
|
export interface TanstackQueryDevtoolsPanelConfig extends QueryDevtoolsProps {
|
|
19
19
|
styleNonce?: string
|
|
20
20
|
shadowDOMTarget?: ShadowRoot
|
|
21
|
-
onClose?: () =>
|
|
21
|
+
onClose?: () => void
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
class TanstackQueryDevtoolsPanel {
|