@tanstack/solid-query-devtools 5.100.6 → 5.100.8
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.
|
@@ -23,13 +23,13 @@ declare interface DevtoolsOptions {
|
|
|
23
23
|
*/
|
|
24
24
|
initialIsOpen?: boolean;
|
|
25
25
|
/**
|
|
26
|
-
* The position of the
|
|
27
|
-
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'
|
|
26
|
+
* The position of the TanStack logo to open and close the devtools panel.
|
|
27
|
+
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
|
|
28
28
|
* Defaults to 'bottom-right'.
|
|
29
29
|
*/
|
|
30
30
|
buttonPosition?: DevtoolsButtonPosition;
|
|
31
31
|
/**
|
|
32
|
-
* The position of the
|
|
32
|
+
* The position of the Solid Query devtools panel.
|
|
33
33
|
* 'top' | 'bottom' | 'left' | 'right'
|
|
34
34
|
* Defaults to 'bottom'.
|
|
35
35
|
*/
|
|
@@ -23,13 +23,13 @@ declare interface DevtoolsOptions {
|
|
|
23
23
|
*/
|
|
24
24
|
initialIsOpen?: boolean;
|
|
25
25
|
/**
|
|
26
|
-
* The position of the
|
|
27
|
-
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'
|
|
26
|
+
* The position of the TanStack logo to open and close the devtools panel.
|
|
27
|
+
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
|
|
28
28
|
* Defaults to 'bottom-right'.
|
|
29
29
|
*/
|
|
30
30
|
buttonPosition?: DevtoolsButtonPosition;
|
|
31
31
|
/**
|
|
32
|
-
* The position of the
|
|
32
|
+
* The position of the Solid Query devtools panel.
|
|
33
33
|
* 'top' | 'bottom' | 'left' | 'right'
|
|
34
34
|
* Defaults to 'bottom'.
|
|
35
35
|
*/
|
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.8",
|
|
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.8"
|
|
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.8"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"solid-js": "^1.6.0",
|
|
59
|
-
"@tanstack/solid-query": "^5.100.
|
|
59
|
+
"@tanstack/solid-query": "^5.100.8"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"clean": "premove ./build ./coverage ./dist-ts",
|
package/src/devtools.tsx
CHANGED
|
@@ -15,13 +15,13 @@ interface DevtoolsOptions {
|
|
|
15
15
|
*/
|
|
16
16
|
initialIsOpen?: boolean
|
|
17
17
|
/**
|
|
18
|
-
* The position of the
|
|
19
|
-
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'
|
|
18
|
+
* The position of the TanStack logo to open and close the devtools panel.
|
|
19
|
+
* 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'relative'
|
|
20
20
|
* Defaults to 'bottom-right'.
|
|
21
21
|
*/
|
|
22
22
|
buttonPosition?: DevtoolsButtonPosition
|
|
23
23
|
/**
|
|
24
|
-
* The position of the
|
|
24
|
+
* The position of the Solid Query devtools panel.
|
|
25
25
|
* 'top' | 'bottom' | 'left' | 'right'
|
|
26
26
|
* Defaults to 'bottom'.
|
|
27
27
|
*/
|