@tanstack/query-devtools 5.61.3 → 5.62.9
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/DevtoolsComponent/{J4KIDTAX.js → E3YREIG7.js} +2 -2
- package/build/DevtoolsComponent/{ODZEGOMN.js → HO4MOOFI.js} +2 -2
- package/build/DevtoolsPanelComponent/{NRCOYQNA.js → HUY7CZI3.js} +2 -2
- package/build/DevtoolsPanelComponent/{WIHLL4YB.js → LFXA4CB4.js} +2 -2
- package/build/chunk/{ENCIAF4A.js → B4MFY5CR.js} +43 -43
- package/build/chunk/{BLREPECS.js → JAANZ2TG.js} +362 -198
- package/build/chunk/{T4EIIERB.js → JAD5ECXD.js} +362 -198
- package/build/chunk/{T3PN5275.js → NDYUDEEA.js} +43 -43
- package/build/dev.cjs +456 -292
- package/build/dev.js +3 -3
- package/build/index.cjs +456 -292
- package/build/index.js +3 -3
- package/package.json +3 -3
- package/src/Devtools.tsx +4 -1
package/build/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createSignal, render, lazy, setupStyleSheet, createComponent, mergeProps } from './chunk/
|
|
1
|
+
import { createSignal, render, lazy, setupStyleSheet, createComponent, mergeProps } from './chunk/JAANZ2TG.js';
|
|
2
2
|
|
|
3
3
|
// src/TanstackQueryDevtools.tsx
|
|
4
4
|
var TanstackQueryDevtools = class {
|
|
@@ -69,7 +69,7 @@ var TanstackQueryDevtools = class {
|
|
|
69
69
|
if (this.#Component) {
|
|
70
70
|
Devtools = this.#Component;
|
|
71
71
|
} else {
|
|
72
|
-
Devtools = lazy(() => import('./DevtoolsComponent/
|
|
72
|
+
Devtools = lazy(() => import('./DevtoolsComponent/HO4MOOFI.js'));
|
|
73
73
|
this.#Component = Devtools;
|
|
74
74
|
}
|
|
75
75
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
|
@@ -192,7 +192,7 @@ var TanstackQueryDevtoolsPanel = class {
|
|
|
192
192
|
if (this.#Component) {
|
|
193
193
|
Devtools = this.#Component;
|
|
194
194
|
} else {
|
|
195
|
-
Devtools = lazy(() => import('./DevtoolsPanelComponent/
|
|
195
|
+
Devtools = lazy(() => import('./DevtoolsPanelComponent/HUY7CZI3.js'));
|
|
196
196
|
this.#Component = Devtools;
|
|
197
197
|
}
|
|
198
198
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/query-devtools",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.62.9",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack Query cache",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"@tanstack/match-sorter-utils": "^8.19.4",
|
|
51
51
|
"clsx": "^2.1.1",
|
|
52
52
|
"goober": "^2.1.16",
|
|
53
|
-
"solid-js": "^1.
|
|
53
|
+
"solid-js": "^1.9.3",
|
|
54
54
|
"solid-transition-group": "^0.2.3",
|
|
55
55
|
"superjson": "^2.2.1",
|
|
56
56
|
"tsup-preset-solid": "^2.2.0",
|
|
57
57
|
"vite-plugin-solid": "^2.10.2",
|
|
58
|
-
"@tanstack/query-core": "5.
|
|
58
|
+
"@tanstack/query-core": "5.62.9"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {}
|
|
61
61
|
}
|
package/src/Devtools.tsx
CHANGED
|
@@ -1622,7 +1622,10 @@ const QueryStatus: Component<QueryStatusProps> = (props) => {
|
|
|
1622
1622
|
css`
|
|
1623
1623
|
cursor: pointer;
|
|
1624
1624
|
&:hover {
|
|
1625
|
-
background: ${t(
|
|
1625
|
+
background: ${t(
|
|
1626
|
+
colors.gray[200],
|
|
1627
|
+
colors.darkGray[400],
|
|
1628
|
+
)}${alpha[80]};
|
|
1626
1629
|
}
|
|
1627
1630
|
`,
|
|
1628
1631
|
'tsqd-query-status-tag',
|