@tanstack/query-devtools 5.27.6 → 5.27.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.
- package/build/Devtools/{3GD3OJ5X.jsx → A63KNBMQ.jsx} +1 -1
- package/build/Devtools/{XCT7HWYW.jsx → HPBPMTAC.jsx} +1 -1
- package/build/Devtools/{TSTTTWSP.js → HSODRENB.js} +1 -1
- package/build/Devtools/{DNNKSY26.js → NISTJ3CZ.js} +1 -1
- package/build/dev.cjs +2 -2
- package/build/dev.js +1 -1
- package/build/dev.jsx +1 -1
- package/build/index.cjs +2 -2
- package/build/index.js +1 -1
- package/build/index.jsx +1 -1
- package/package.json +1 -1
- package/src/Devtools.tsx +1 -2
|
@@ -10458,6 +10458,7 @@ var [selectedMutationId, setSelectedMutationId] = createSignal(
|
|
|
10458
10458
|
null
|
|
10459
10459
|
);
|
|
10460
10460
|
var [panelWidth, setPanelWidth] = createSignal(0);
|
|
10461
|
+
var [offline, setOffline] = createSignal(false);
|
|
10461
10462
|
var PiPContext = createContext(
|
|
10462
10463
|
void 0
|
|
10463
10464
|
);
|
|
@@ -10929,7 +10930,6 @@ var ContentView = (props) => {
|
|
|
10929
10930
|
const mutationSortOrder = createMemo(
|
|
10930
10931
|
() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER
|
|
10931
10932
|
);
|
|
10932
|
-
const [offline, setOffline] = createSignal(false);
|
|
10933
10933
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
10934
10934
|
const mutationSortFn = createMemo(
|
|
10935
10935
|
() => mutationSortFns[mutationSort()]
|
|
@@ -10459,6 +10459,7 @@ var [selectedMutationId, setSelectedMutationId] = createSignal(
|
|
|
10459
10459
|
null
|
|
10460
10460
|
);
|
|
10461
10461
|
var [panelWidth, setPanelWidth] = createSignal(0);
|
|
10462
|
+
var [offline, setOffline] = createSignal(false);
|
|
10462
10463
|
var PiPContext = createContext(
|
|
10463
10464
|
void 0
|
|
10464
10465
|
);
|
|
@@ -10930,7 +10931,6 @@ var ContentView = (props) => {
|
|
|
10930
10931
|
const mutationSortOrder = createMemo(
|
|
10931
10932
|
() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER
|
|
10932
10933
|
);
|
|
10933
|
-
const [offline, setOffline] = createSignal(false);
|
|
10934
10934
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
10935
10935
|
const mutationSortFn = createMemo(
|
|
10936
10936
|
() => mutationSortFns[mutationSort()]
|
|
@@ -9557,6 +9557,7 @@ var DEFAULT_MUTATION_SORT_FN_NAME = Object.keys(mutationSortFns)[0];
|
|
|
9557
9557
|
var [selectedQueryHash, setSelectedQueryHash] = createSignal(null);
|
|
9558
9558
|
var [selectedMutationId, setSelectedMutationId] = createSignal(null);
|
|
9559
9559
|
var [panelWidth, setPanelWidth] = createSignal(0);
|
|
9560
|
+
var [offline, setOffline] = createSignal(false);
|
|
9560
9561
|
var PiPContext = createContext(void 0);
|
|
9561
9562
|
var PiPProvider = (props) => {
|
|
9562
9563
|
const [pipWindow, setPipWindow] = createSignal(null);
|
|
@@ -10056,7 +10057,6 @@ var ContentView = (props) => {
|
|
|
10056
10057
|
const sortOrder = createMemo(() => Number(props.localStore.sortOrder) || DEFAULT_SORT_ORDER);
|
|
10057
10058
|
const mutationSort = createMemo(() => props.localStore.mutationSort || DEFAULT_MUTATION_SORT_FN_NAME);
|
|
10058
10059
|
const mutationSortOrder = createMemo(() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER);
|
|
10059
|
-
const [offline, setOffline] = createSignal(false);
|
|
10060
10060
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
10061
10061
|
const mutationSortFn = createMemo(() => mutationSortFns[mutationSort()]);
|
|
10062
10062
|
const onlineManager = createMemo(() => useQueryDevtoolsContext().onlineManager);
|
|
@@ -9556,6 +9556,7 @@ var DEFAULT_MUTATION_SORT_FN_NAME = Object.keys(mutationSortFns)[0];
|
|
|
9556
9556
|
var [selectedQueryHash, setSelectedQueryHash] = createSignal(null);
|
|
9557
9557
|
var [selectedMutationId, setSelectedMutationId] = createSignal(null);
|
|
9558
9558
|
var [panelWidth, setPanelWidth] = createSignal(0);
|
|
9559
|
+
var [offline, setOffline] = createSignal(false);
|
|
9559
9560
|
var PiPContext = createContext(void 0);
|
|
9560
9561
|
var PiPProvider = (props) => {
|
|
9561
9562
|
const [pipWindow, setPipWindow] = createSignal(null);
|
|
@@ -10055,7 +10056,6 @@ var ContentView = (props) => {
|
|
|
10055
10056
|
const sortOrder = createMemo(() => Number(props.localStore.sortOrder) || DEFAULT_SORT_ORDER);
|
|
10056
10057
|
const mutationSort = createMemo(() => props.localStore.mutationSort || DEFAULT_MUTATION_SORT_FN_NAME);
|
|
10057
10058
|
const mutationSortOrder = createMemo(() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER);
|
|
10058
|
-
const [offline, setOffline] = createSignal(false);
|
|
10059
10059
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
10060
10060
|
const mutationSortFn = createMemo(() => mutationSortFns[mutationSort()]);
|
|
10061
10061
|
const onlineManager = createMemo(() => useQueryDevtoolsContext().onlineManager);
|
package/build/dev.cjs
CHANGED
|
@@ -12910,7 +12910,7 @@ var Devtools_exports = {};
|
|
|
12910
12910
|
__export(Devtools_exports, {
|
|
12911
12911
|
default: () => Devtools_default
|
|
12912
12912
|
});
|
|
12913
|
-
var _tmpl$25, _tmpl$26, _tmpl$33, _tmpl$43, _tmpl$53, _tmpl$63, _tmpl$73, _tmpl$83, _tmpl$93, _tmpl$103, _tmpl$113, _tmpl$122, _tmpl$132, _tmpl$142, _tmpl$152, _tmpl$162, _tmpl$172, _tmpl$182, _tmpl$192, _tmpl$202, _tmpl$212, _tmpl$222, _tmpl$232, _tmpl$242, _tmpl$252, _tmpl$262, _tmpl$27, _tmpl$28, _tmpl$29, _tmpl$30, _tmpl$31, _tmpl$322, firstBreakpoint, secondBreakpoint, thirdBreakpoint, BUTTON_POSITION, POSITION, THEME_PREFERENCE, INITIAL_IS_OPEN, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_SORT_FN_NAME, DEFAULT_SORT_ORDER, DEFAULT_MUTATION_SORT_FN_NAME, selectedQueryHash, setSelectedQueryHash, selectedMutationId, setSelectedMutationId, panelWidth, setPanelWidth, PiPContext, PiPProvider, usePiPWindow, DevtoolsComponent, Devtools_default, Devtools, PiPPanel, DevtoolsPanel, ContentView, QueryRow, MutationRow, QueryStatusCount, MutationStatusCount, QueryStatus, QueryDetails, MutationDetails, queryCacheMap, setupQueryCacheSubscription, createSubscribeToQueryCacheBatcher, mutationCacheMap, setupMutationCacheSubscription, createSubscribeToMutationCacheBatcher, stylesFactory2, lightStyles2, darkStyles2;
|
|
12913
|
+
var _tmpl$25, _tmpl$26, _tmpl$33, _tmpl$43, _tmpl$53, _tmpl$63, _tmpl$73, _tmpl$83, _tmpl$93, _tmpl$103, _tmpl$113, _tmpl$122, _tmpl$132, _tmpl$142, _tmpl$152, _tmpl$162, _tmpl$172, _tmpl$182, _tmpl$192, _tmpl$202, _tmpl$212, _tmpl$222, _tmpl$232, _tmpl$242, _tmpl$252, _tmpl$262, _tmpl$27, _tmpl$28, _tmpl$29, _tmpl$30, _tmpl$31, _tmpl$322, firstBreakpoint, secondBreakpoint, thirdBreakpoint, BUTTON_POSITION, POSITION, THEME_PREFERENCE, INITIAL_IS_OPEN, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_SORT_FN_NAME, DEFAULT_SORT_ORDER, DEFAULT_MUTATION_SORT_FN_NAME, selectedQueryHash, setSelectedQueryHash, selectedMutationId, setSelectedMutationId, panelWidth, setPanelWidth, offline, setOffline, PiPContext, PiPProvider, usePiPWindow, DevtoolsComponent, Devtools_default, Devtools, PiPPanel, DevtoolsPanel, ContentView, QueryRow, MutationRow, QueryStatusCount, MutationStatusCount, QueryStatus, QueryDetails, MutationDetails, queryCacheMap, setupQueryCacheSubscription, createSubscribeToQueryCacheBatcher, mutationCacheMap, setupMutationCacheSubscription, createSubscribeToMutationCacheBatcher, stylesFactory2, lightStyles2, darkStyles2;
|
|
12914
12914
|
var init_Devtools = __esm({
|
|
12915
12915
|
"src/Devtools.tsx"() {
|
|
12916
12916
|
init_web();
|
|
@@ -12986,6 +12986,7 @@ var init_Devtools = __esm({
|
|
|
12986
12986
|
[selectedQueryHash, setSelectedQueryHash] = createSignal(null);
|
|
12987
12987
|
[selectedMutationId, setSelectedMutationId] = createSignal(null);
|
|
12988
12988
|
[panelWidth, setPanelWidth] = createSignal(0);
|
|
12989
|
+
[offline, setOffline] = createSignal(false);
|
|
12989
12990
|
PiPContext = createContext(void 0);
|
|
12990
12991
|
PiPProvider = (props) => {
|
|
12991
12992
|
const [pipWindow, setPipWindow] = createSignal(null);
|
|
@@ -13485,7 +13486,6 @@ var init_Devtools = __esm({
|
|
|
13485
13486
|
const sortOrder = createMemo(() => Number(props.localStore.sortOrder) || DEFAULT_SORT_ORDER);
|
|
13486
13487
|
const mutationSort = createMemo(() => props.localStore.mutationSort || DEFAULT_MUTATION_SORT_FN_NAME);
|
|
13487
13488
|
const mutationSortOrder = createMemo(() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER);
|
|
13488
|
-
const [offline, setOffline] = createSignal(false);
|
|
13489
13489
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
13490
13490
|
const mutationSortFn = createMemo(() => mutationSortFns[mutationSort()]);
|
|
13491
13491
|
const onlineManager = createMemo(() => useQueryDevtoolsContext().onlineManager);
|
package/build/dev.js
CHANGED
|
@@ -69,7 +69,7 @@ var TanstackQueryDevtools = class {
|
|
|
69
69
|
if (this.#Component) {
|
|
70
70
|
Devtools = this.#Component;
|
|
71
71
|
} else {
|
|
72
|
-
Devtools = lazy(() => import('./Devtools/
|
|
72
|
+
Devtools = lazy(() => import('./Devtools/HSODRENB.js'));
|
|
73
73
|
this.#Component = Devtools;
|
|
74
74
|
}
|
|
75
75
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
package/build/dev.jsx
CHANGED
|
@@ -73,7 +73,7 @@ var TanstackQueryDevtools = class {
|
|
|
73
73
|
if (this.#Component) {
|
|
74
74
|
Devtools = this.#Component;
|
|
75
75
|
} else {
|
|
76
|
-
Devtools = lazy(() => import("./Devtools/
|
|
76
|
+
Devtools = lazy(() => import("./Devtools/HPBPMTAC.jsx"));
|
|
77
77
|
this.#Component = Devtools;
|
|
78
78
|
}
|
|
79
79
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
package/build/index.cjs
CHANGED
|
@@ -12908,7 +12908,7 @@ var Devtools_exports = {};
|
|
|
12908
12908
|
__export(Devtools_exports, {
|
|
12909
12909
|
default: () => Devtools_default
|
|
12910
12910
|
});
|
|
12911
|
-
var _tmpl$25, _tmpl$26, _tmpl$33, _tmpl$43, _tmpl$53, _tmpl$63, _tmpl$73, _tmpl$83, _tmpl$93, _tmpl$103, _tmpl$113, _tmpl$122, _tmpl$132, _tmpl$142, _tmpl$152, _tmpl$162, _tmpl$172, _tmpl$182, _tmpl$192, _tmpl$202, _tmpl$212, _tmpl$222, _tmpl$232, _tmpl$242, _tmpl$252, _tmpl$262, _tmpl$27, _tmpl$28, _tmpl$29, _tmpl$30, _tmpl$31, _tmpl$322, firstBreakpoint, secondBreakpoint, thirdBreakpoint, BUTTON_POSITION, POSITION, THEME_PREFERENCE, INITIAL_IS_OPEN, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_SORT_FN_NAME, DEFAULT_SORT_ORDER, DEFAULT_MUTATION_SORT_FN_NAME, selectedQueryHash, setSelectedQueryHash, selectedMutationId, setSelectedMutationId, panelWidth, setPanelWidth, PiPContext, PiPProvider, usePiPWindow, DevtoolsComponent, Devtools_default, Devtools, PiPPanel, DevtoolsPanel, ContentView, QueryRow, MutationRow, QueryStatusCount, MutationStatusCount, QueryStatus, QueryDetails, MutationDetails, queryCacheMap, setupQueryCacheSubscription, createSubscribeToQueryCacheBatcher, mutationCacheMap, setupMutationCacheSubscription, createSubscribeToMutationCacheBatcher, stylesFactory2, lightStyles2, darkStyles2;
|
|
12911
|
+
var _tmpl$25, _tmpl$26, _tmpl$33, _tmpl$43, _tmpl$53, _tmpl$63, _tmpl$73, _tmpl$83, _tmpl$93, _tmpl$103, _tmpl$113, _tmpl$122, _tmpl$132, _tmpl$142, _tmpl$152, _tmpl$162, _tmpl$172, _tmpl$182, _tmpl$192, _tmpl$202, _tmpl$212, _tmpl$222, _tmpl$232, _tmpl$242, _tmpl$252, _tmpl$262, _tmpl$27, _tmpl$28, _tmpl$29, _tmpl$30, _tmpl$31, _tmpl$322, firstBreakpoint, secondBreakpoint, thirdBreakpoint, BUTTON_POSITION, POSITION, THEME_PREFERENCE, INITIAL_IS_OPEN, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_SORT_FN_NAME, DEFAULT_SORT_ORDER, DEFAULT_MUTATION_SORT_FN_NAME, selectedQueryHash, setSelectedQueryHash, selectedMutationId, setSelectedMutationId, panelWidth, setPanelWidth, offline, setOffline, PiPContext, PiPProvider, usePiPWindow, DevtoolsComponent, Devtools_default, Devtools, PiPPanel, DevtoolsPanel, ContentView, QueryRow, MutationRow, QueryStatusCount, MutationStatusCount, QueryStatus, QueryDetails, MutationDetails, queryCacheMap, setupQueryCacheSubscription, createSubscribeToQueryCacheBatcher, mutationCacheMap, setupMutationCacheSubscription, createSubscribeToMutationCacheBatcher, stylesFactory2, lightStyles2, darkStyles2;
|
|
12912
12912
|
var init_Devtools = __esm({
|
|
12913
12913
|
"src/Devtools.tsx"() {
|
|
12914
12914
|
init_web();
|
|
@@ -12984,6 +12984,7 @@ var init_Devtools = __esm({
|
|
|
12984
12984
|
[selectedQueryHash, setSelectedQueryHash] = createSignal(null);
|
|
12985
12985
|
[selectedMutationId, setSelectedMutationId] = createSignal(null);
|
|
12986
12986
|
[panelWidth, setPanelWidth] = createSignal(0);
|
|
12987
|
+
[offline, setOffline] = createSignal(false);
|
|
12987
12988
|
PiPContext = createContext(void 0);
|
|
12988
12989
|
PiPProvider = (props) => {
|
|
12989
12990
|
const [pipWindow, setPipWindow] = createSignal(null);
|
|
@@ -13483,7 +13484,6 @@ var init_Devtools = __esm({
|
|
|
13483
13484
|
const sortOrder = createMemo(() => Number(props.localStore.sortOrder) || DEFAULT_SORT_ORDER);
|
|
13484
13485
|
const mutationSort = createMemo(() => props.localStore.mutationSort || DEFAULT_MUTATION_SORT_FN_NAME);
|
|
13485
13486
|
const mutationSortOrder = createMemo(() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER);
|
|
13486
|
-
const [offline, setOffline] = createSignal(false);
|
|
13487
13487
|
const sortFn = createMemo(() => sortFns[sort()]);
|
|
13488
13488
|
const mutationSortFn = createMemo(() => mutationSortFns[mutationSort()]);
|
|
13489
13489
|
const onlineManager = createMemo(() => useQueryDevtoolsContext().onlineManager);
|
package/build/index.js
CHANGED
|
@@ -69,7 +69,7 @@ var TanstackQueryDevtools = class {
|
|
|
69
69
|
if (this.#Component) {
|
|
70
70
|
Devtools = this.#Component;
|
|
71
71
|
} else {
|
|
72
|
-
Devtools = lazy(() => import('./Devtools/
|
|
72
|
+
Devtools = lazy(() => import('./Devtools/NISTJ3CZ.js'));
|
|
73
73
|
this.#Component = Devtools;
|
|
74
74
|
}
|
|
75
75
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
package/build/index.jsx
CHANGED
|
@@ -73,7 +73,7 @@ var TanstackQueryDevtools = class {
|
|
|
73
73
|
if (this.#Component) {
|
|
74
74
|
Devtools = this.#Component;
|
|
75
75
|
} else {
|
|
76
|
-
Devtools = lazy(() => import("./Devtools/
|
|
76
|
+
Devtools = lazy(() => import("./Devtools/A63KNBMQ.jsx"));
|
|
77
77
|
this.#Component = Devtools;
|
|
78
78
|
}
|
|
79
79
|
setupStyleSheet(this.#styleNonce, this.#shadowDOMTarget);
|
package/package.json
CHANGED
package/src/Devtools.tsx
CHANGED
|
@@ -110,6 +110,7 @@ const [selectedMutationId, setSelectedMutationId] = createSignal<number | null>(
|
|
|
110
110
|
null,
|
|
111
111
|
)
|
|
112
112
|
const [panelWidth, setPanelWidth] = createSignal(0)
|
|
113
|
+
const [offline, setOffline] = createSignal(false)
|
|
113
114
|
|
|
114
115
|
export type DevtoolsComponentType = Component<QueryDevtoolsProps> & {
|
|
115
116
|
shadowDOMTarget?: ShadowRoot
|
|
@@ -776,8 +777,6 @@ const ContentView: Component<DevtoolsPanelProps> = (props) => {
|
|
|
776
777
|
() => Number(props.localStore.mutationSortOrder) || DEFAULT_SORT_ORDER,
|
|
777
778
|
) as () => 1 | -1
|
|
778
779
|
|
|
779
|
-
const [offline, setOffline] = createSignal(false)
|
|
780
|
-
|
|
781
780
|
const sortFn = createMemo(() => sortFns[sort() as string])
|
|
782
781
|
const mutationSortFn = createMemo(
|
|
783
782
|
() => mutationSortFns[mutationSort() as string],
|