@tanstack/query-devtools 5.0.0-beta.36 → 5.0.0-rc.1
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/Devtools/66PXWIOF.js +12098 -0
- package/build/Devtools/ALVY75L5.jsx +13041 -0
- package/build/Devtools/H2EROWFU.jsx +13043 -0
- package/build/Devtools/HTDVDYMT.js +12100 -0
- package/build/chunk/{C5UID3AG.js → 7MNJIXJ6.js} +235 -1
- package/build/chunk/{QGJD3TIO.js → L2WNRKEK.js} +235 -1
- package/build/chunk/{KC3COQO2.jsx → LGDS24HT.jsx} +634 -1
- package/build/chunk/{2N7SLCC6.jsx → PWC4YVZY.jsx} +634 -1
- package/build/dev.cjs +8114 -622
- package/build/dev.js +2 -2
- package/build/dev.jsx +2 -2
- package/build/index.cjs +8113 -621
- package/build/index.js +2 -2
- package/build/index.jsx +2 -2
- package/package.json +3 -2
- package/src/Devtools.tsx +257 -196
- package/src/Explorer.tsx +53 -19
- package/src/icons/index.tsx +55 -9
- package/src/theme.ts +2 -0
- package/build/Devtools/DWELN6EN.jsx +0 -5594
- package/build/Devtools/FASZSC6H.jsx +0 -5592
- package/build/Devtools/OXAQM7EL.js +0 -4839
- package/build/Devtools/PCOU65Y2.js +0 -4841
package/build/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createSignal, render, lazy, createComponent, mergeProps } from './chunk/
|
|
1
|
+
import { createSignal, render, lazy, createComponent, mergeProps } from './chunk/7MNJIXJ6.js';
|
|
2
2
|
|
|
3
3
|
// src/index.tsx
|
|
4
4
|
var TanstackQueryDevtools = class {
|
|
@@ -52,7 +52,7 @@ var TanstackQueryDevtools = class {
|
|
|
52
52
|
if (this.Component) {
|
|
53
53
|
Devtools = this.Component;
|
|
54
54
|
} else {
|
|
55
|
-
Devtools = lazy(() => import('./Devtools/
|
|
55
|
+
Devtools = lazy(() => import('./Devtools/66PXWIOF.js'));
|
|
56
56
|
this.Component = Devtools;
|
|
57
57
|
}
|
|
58
58
|
const _self$ = this;
|
package/build/index.jsx
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
createSignal,
|
|
3
3
|
lazy,
|
|
4
4
|
render
|
|
5
|
-
} from "./chunk/
|
|
5
|
+
} from "./chunk/PWC4YVZY.jsx";
|
|
6
6
|
|
|
7
7
|
// src/index.tsx
|
|
8
8
|
var TanstackQueryDevtools = class {
|
|
@@ -56,7 +56,7 @@ var TanstackQueryDevtools = class {
|
|
|
56
56
|
if (this.Component) {
|
|
57
57
|
Devtools = this.Component;
|
|
58
58
|
} else {
|
|
59
|
-
Devtools = lazy(() => import("./Devtools/
|
|
59
|
+
Devtools = lazy(() => import("./Devtools/ALVY75L5.jsx"));
|
|
60
60
|
this.Component = Devtools;
|
|
61
61
|
}
|
|
62
62
|
return <Devtools
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/query-devtools",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-rc.1",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack Query cache",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"src"
|
|
39
39
|
],
|
|
40
40
|
"devDependencies": {
|
|
41
|
+
"@kobalte/core": "^0.11.0",
|
|
41
42
|
"@solid-primitives/keyed": "^1.2.0",
|
|
42
43
|
"@solid-primitives/resize-observer": "^2.0.18",
|
|
43
44
|
"@solid-primitives/storage": "^1.3.11",
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
"superjson": "^1.12.4",
|
|
50
51
|
"tsup-preset-solid": "^2.0.1",
|
|
51
52
|
"vite-plugin-solid": "^2.7.0",
|
|
52
|
-
"@tanstack/query-core": "5.0.0-
|
|
53
|
+
"@tanstack/query-core": "5.0.0-rc.1"
|
|
53
54
|
},
|
|
54
55
|
"scripts": {
|
|
55
56
|
"clean": "rimraf ./build && rimraf ./coverage",
|