@tanstack/query-devtools 5.93.0 → 5.94.5
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/{B5PP2USH.js → V4HPSUGU.js} +2 -2
- package/build/DevtoolsComponent/{BAGVG3AX.js → XMTSMVTM.js} +2 -2
- package/build/DevtoolsPanelComponent/{KZB72KQG.js → AY2UQYZQ.js} +2 -2
- package/build/DevtoolsPanelComponent/{WI32IQVE.js → MMQ4R4NB.js} +2 -2
- package/build/_tsup-dts-rollup.d.cts +629 -0
- package/build/_tsup-dts-rollup.d.ts +629 -0
- package/build/chunk/{NITRNJ62.js → 7NWEGSOJ.js} +1779 -1777
- package/build/chunk/{6FXOYLZD.js → EO4IN5ML.js} +215 -59
- package/build/chunk/{HNLWDMU5.js → JMCFIHKA.js} +1779 -1777
- package/build/chunk/{73LUVHE2.js → L3CSWQ7H.js} +215 -59
- package/build/dev.cjs +2525 -2258
- package/build/dev.d.cts +8 -0
- package/build/dev.d.ts +8 -0
- package/build/dev.js +3 -3
- package/build/index.cjs +2525 -2258
- package/build/index.d.cts +8 -69
- package/build/index.d.ts +8 -69
- package/build/index.js +3 -3
- package/package.json +5 -6
package/build/dev.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { DevtoolsButtonPosition } from './_tsup-dts-rollup.cjs';
|
|
2
|
+
export { DevtoolsErrorType } from './_tsup-dts-rollup.cjs';
|
|
3
|
+
export { DevtoolsPosition } from './_tsup-dts-rollup.cjs';
|
|
4
|
+
export { Theme } from './_tsup-dts-rollup.cjs';
|
|
5
|
+
export { TanstackQueryDevtools_alias_1 as TanstackQueryDevtools } from './_tsup-dts-rollup.cjs';
|
|
6
|
+
export { TanstackQueryDevtoolsConfig_alias_1 as TanstackQueryDevtoolsConfig } from './_tsup-dts-rollup.cjs';
|
|
7
|
+
export { TanstackQueryDevtoolsPanel_alias_1 as TanstackQueryDevtoolsPanel } from './_tsup-dts-rollup.cjs';
|
|
8
|
+
export { TanstackQueryDevtoolsPanelConfig_alias_1 as TanstackQueryDevtoolsPanelConfig } from './_tsup-dts-rollup.cjs';
|
package/build/dev.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { DevtoolsButtonPosition } from './_tsup-dts-rollup.js';
|
|
2
|
+
export { DevtoolsErrorType } from './_tsup-dts-rollup.js';
|
|
3
|
+
export { DevtoolsPosition } from './_tsup-dts-rollup.js';
|
|
4
|
+
export { Theme } from './_tsup-dts-rollup.js';
|
|
5
|
+
export { TanstackQueryDevtools_alias_1 as TanstackQueryDevtools } from './_tsup-dts-rollup.js';
|
|
6
|
+
export { TanstackQueryDevtoolsConfig_alias_1 as TanstackQueryDevtoolsConfig } from './_tsup-dts-rollup.js';
|
|
7
|
+
export { TanstackQueryDevtoolsPanel_alias_1 as TanstackQueryDevtoolsPanel } from './_tsup-dts-rollup.js';
|
|
8
|
+
export { TanstackQueryDevtoolsPanelConfig_alias_1 as TanstackQueryDevtoolsPanelConfig } from './_tsup-dts-rollup.js';
|
package/build/dev.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/EO4IN5ML.js';
|
|
2
2
|
|
|
3
3
|
// src/TanstackQueryDevtools.tsx
|
|
4
4
|
var TanstackQueryDevtools = class {
|
|
@@ -80,7 +80,7 @@ var TanstackQueryDevtools = class {
|
|
|
80
80
|
if (this.#Component) {
|
|
81
81
|
Devtools = this.#Component;
|
|
82
82
|
} else {
|
|
83
|
-
Devtools = lazy(() => import('./DevtoolsComponent/
|
|
83
|
+
Devtools = lazy(() => import('./DevtoolsComponent/XMTSMVTM.js'));
|
|
84
84
|
this.#Component = Devtools;
|
|
85
85
|
}
|
|
86
86
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
|
@@ -220,7 +220,7 @@ var TanstackQueryDevtoolsPanel = class {
|
|
|
220
220
|
if (this.#Component) {
|
|
221
221
|
Devtools = this.#Component;
|
|
222
222
|
} else {
|
|
223
|
-
Devtools = lazy(() => import('./DevtoolsPanelComponent/
|
|
223
|
+
Devtools = lazy(() => import('./DevtoolsPanelComponent/AY2UQYZQ.js'));
|
|
224
224
|
this.#Component = Devtools;
|
|
225
225
|
}
|
|
226
226
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|