@tanstack/solid-query-devtools 5.87.1 → 5.87.3
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/build/index.d.cts +3 -2
- package/build/index.d.ts +3 -2
- package/package.json +2 -2
- package/src/devtoolsPanel.tsx +2 -1
package/build/index.d.cts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as solid_js from 'solid-js';
|
|
2
|
+
import { JSX } from 'solid-js';
|
|
2
3
|
import { DevtoolsButtonPosition, DevtoolsPosition, DevtoolsErrorType } from '@tanstack/query-devtools';
|
|
3
4
|
import { QueryClient } from '@tanstack/solid-query';
|
|
4
5
|
|
|
@@ -65,7 +66,7 @@ interface DevtoolsPanelOptions {
|
|
|
65
66
|
* @example { height: '100%' }
|
|
66
67
|
* @example { height: '100%', width: '100%' }
|
|
67
68
|
*/
|
|
68
|
-
style?:
|
|
69
|
+
style?: JSX.CSSProperties;
|
|
69
70
|
/**
|
|
70
71
|
* Callback function that is called when the devtools panel is closed
|
|
71
72
|
*/
|
|
@@ -75,7 +76,7 @@ interface DevtoolsPanelOptions {
|
|
|
75
76
|
*/
|
|
76
77
|
hideDisabledQueries?: boolean;
|
|
77
78
|
}
|
|
78
|
-
declare function SolidQueryDevtoolsPanel$1(props: DevtoolsPanelOptions):
|
|
79
|
+
declare function SolidQueryDevtoolsPanel$1(props: DevtoolsPanelOptions): JSX.Element;
|
|
79
80
|
|
|
80
81
|
declare const SolidQueryDevtools: typeof SolidQueryDevtools$1;
|
|
81
82
|
declare const SolidQueryDevtoolsPanel: typeof SolidQueryDevtoolsPanel$1;
|
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as solid_js from 'solid-js';
|
|
2
|
+
import { JSX } from 'solid-js';
|
|
2
3
|
import { DevtoolsButtonPosition, DevtoolsPosition, DevtoolsErrorType } from '@tanstack/query-devtools';
|
|
3
4
|
import { QueryClient } from '@tanstack/solid-query';
|
|
4
5
|
|
|
@@ -65,7 +66,7 @@ interface DevtoolsPanelOptions {
|
|
|
65
66
|
* @example { height: '100%' }
|
|
66
67
|
* @example { height: '100%', width: '100%' }
|
|
67
68
|
*/
|
|
68
|
-
style?:
|
|
69
|
+
style?: JSX.CSSProperties;
|
|
69
70
|
/**
|
|
70
71
|
* Callback function that is called when the devtools panel is closed
|
|
71
72
|
*/
|
|
@@ -75,7 +76,7 @@ interface DevtoolsPanelOptions {
|
|
|
75
76
|
*/
|
|
76
77
|
hideDisabledQueries?: boolean;
|
|
77
78
|
}
|
|
78
|
-
declare function SolidQueryDevtoolsPanel$1(props: DevtoolsPanelOptions):
|
|
79
|
+
declare function SolidQueryDevtoolsPanel$1(props: DevtoolsPanelOptions): JSX.Element;
|
|
79
80
|
|
|
80
81
|
declare const SolidQueryDevtools: typeof SolidQueryDevtools$1;
|
|
81
82
|
declare const SolidQueryDevtoolsPanel: typeof SolidQueryDevtoolsPanel$1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-query-devtools",
|
|
3
|
-
"version": "5.87.
|
|
3
|
+
"version": "5.87.3",
|
|
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.
|
|
47
|
+
"@tanstack/query-devtools": "5.87.3"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"npm-run-all2": "^5.0.0",
|
package/src/devtoolsPanel.tsx
CHANGED
|
@@ -3,6 +3,7 @@ import { onlineManager, useQueryClient } from '@tanstack/solid-query'
|
|
|
3
3
|
import { TanstackQueryDevtoolsPanel } from '@tanstack/query-devtools'
|
|
4
4
|
import type { DevtoolsErrorType } from '@tanstack/query-devtools'
|
|
5
5
|
import type { QueryClient } from '@tanstack/solid-query'
|
|
6
|
+
import type { JSX } from 'solid-js'
|
|
6
7
|
|
|
7
8
|
export interface DevtoolsPanelOptions {
|
|
8
9
|
/**
|
|
@@ -28,7 +29,7 @@ export interface DevtoolsPanelOptions {
|
|
|
28
29
|
* @example { height: '100%' }
|
|
29
30
|
* @example { height: '100%', width: '100%' }
|
|
30
31
|
*/
|
|
31
|
-
style?:
|
|
32
|
+
style?: JSX.CSSProperties
|
|
32
33
|
|
|
33
34
|
/**
|
|
34
35
|
* Callback function that is called when the devtools panel is closed
|