@tanstack/query-devtools 5.91.1 → 5.93.0
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/{7HGFFDPC.js → B5PP2USH.js} +2 -2
- package/build/DevtoolsComponent/{Q7LWSL4U.js → BAGVG3AX.js} +2 -2
- package/build/DevtoolsPanelComponent/{ONXD5SSW.js → KZB72KQG.js} +2 -2
- package/build/DevtoolsPanelComponent/{VLTTJS3N.js → WI32IQVE.js} +2 -2
- package/build/chunk/{CXOMC62J.js → 6FXOYLZD.js} +4 -4
- package/build/chunk/{EIDV623S.js → 73LUVHE2.js} +4 -4
- package/build/chunk/{MIMHJGAX.js → HNLWDMU5.js} +190 -129
- package/build/chunk/{COYS3TMU.js → NITRNJ62.js} +188 -130
- package/build/dev.cjs +194 -134
- package/build/dev.js +3 -3
- package/build/index.cjs +193 -134
- package/build/index.js +3 -3
- package/package.json +3 -3
- package/src/Devtools.tsx +150 -23
- package/src/contexts/PiPContext.tsx +17 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { sortFns, mutationSortFns, createContext, splitProps, createMemo, createComponent, mergeProps, createUniqueId, createSignal, createEffect, onCleanup, Show, on, delegateEvents, Dynamic, useContext, template, createRenderEffect, setAttribute, memo, Portal, untrack, isServer, onMount, createComputed, getOwner, use, insert, className, getSidedProp, getQueryStatusColor, getMutationStatusColor, getQueryStatusLabel, spread, getQueryStatusColorByLabel, displayValue, For, batch, clearDelegatedEvents,
|
|
1
|
+
import { sortFns, mutationSortFns, createContext, splitProps, createMemo, createComponent, mergeProps, createUniqueId, createSignal, createEffect, onCleanup, Show, on, delegateEvents, Dynamic, useContext, template, createRenderEffect, setAttribute, memo, Portal, untrack, isServer, onMount, createComputed, getOwner, use, insert, className, getSidedProp, convertRemToPixels, getQueryStatusColor, getMutationStatusColor, getQueryStatusLabel, spread, getQueryStatusColorByLabel, displayValue, For, batch, clearDelegatedEvents, serialize, Index, updateNestedDataByPath, $TRACK, createRoot, DEV, addEventListener, stringify, Switch, Match, deleteNestedDataByPath, useTransition } from './6FXOYLZD.js';
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.3_solid-js@1.9.7/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
4
4
|
var isClient = !isServer;
|
|
@@ -297,6 +297,8 @@ function useQueryDevtoolsContext() {
|
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
// src/contexts/PiPContext.tsx
|
|
300
|
+
var PipOpenError = class extends Error {
|
|
301
|
+
};
|
|
300
302
|
var PiPContext = createContext(void 0);
|
|
301
303
|
var PiPProvider = (props) => {
|
|
302
304
|
const [pipWindow, setPipWindow] = createSignal(null);
|
|
@@ -313,7 +315,7 @@ var PiPProvider = (props) => {
|
|
|
313
315
|
}
|
|
314
316
|
const pip = window.open("", "TSQD-Devtools-Panel", `width=${width},height=${height},popup`);
|
|
315
317
|
if (!pip) {
|
|
316
|
-
throw new
|
|
318
|
+
throw new PipOpenError("Failed to open popup. Please allow popups for this site to view the devtools in picture-in-picture mode.");
|
|
317
319
|
}
|
|
318
320
|
pip.document.head.innerHTML = "";
|
|
319
321
|
pip.document.body.innerHTML = "";
|
|
@@ -357,7 +359,17 @@ var PiPProvider = (props) => {
|
|
|
357
359
|
createEffect(() => {
|
|
358
360
|
const pip_open = props.localStore.pip_open ?? "false";
|
|
359
361
|
if (pip_open === "true" && !props.disabled) {
|
|
360
|
-
|
|
362
|
+
try {
|
|
363
|
+
requestPipWindow(Number(window.innerWidth), Number(props.localStore.height || PIP_DEFAULT_HEIGHT));
|
|
364
|
+
} catch (error) {
|
|
365
|
+
if (error instanceof PipOpenError) {
|
|
366
|
+
console.error(error.message);
|
|
367
|
+
props.setLocalStore("pip_open", "false");
|
|
368
|
+
props.setLocalStore("open", "false");
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
371
|
+
throw error;
|
|
372
|
+
}
|
|
361
373
|
}
|
|
362
374
|
});
|
|
363
375
|
createEffect(() => {
|
|
@@ -1010,7 +1022,7 @@ function getAccessorAttributes(accessor) {
|
|
|
1010
1022
|
};
|
|
1011
1023
|
}
|
|
1012
1024
|
|
|
1013
|
-
// ../../node_modules/.pnpm/goober@2.1.16_csstype@3.
|
|
1025
|
+
// ../../node_modules/.pnpm/goober@2.1.16_csstype@3.2.3/node_modules/goober/dist/goober.modern.js
|
|
1014
1026
|
var e = { data: "" };
|
|
1015
1027
|
var t = (t2) => "object" == typeof window ? ((t2 ? t2.querySelector("#_goober") : window._goober) || Object.assign((t2 || document.head).appendChild(document.createElement("style")), { innerHTML: " ", id: "_goober" })).firstChild : t2 || e;
|
|
1016
1028
|
var l = /(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g;
|
|
@@ -1300,7 +1312,7 @@ var TransitionGroup = (props) => {
|
|
|
1300
1312
|
};
|
|
1301
1313
|
|
|
1302
1314
|
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.2_solid-js@1.9.7/node_modules/@solid-primitives/keyed/dist/index.js
|
|
1303
|
-
var FALLBACK = Symbol("fallback");
|
|
1315
|
+
var FALLBACK = /* @__PURE__ */ Symbol("fallback");
|
|
1304
1316
|
function dispose(list) {
|
|
1305
1317
|
for (const o2 of list)
|
|
1306
1318
|
o2.dispose();
|
|
@@ -8834,6 +8846,7 @@ var CopyButton = (props) => {
|
|
|
8834
8846
|
setCopyState("NoCopy");
|
|
8835
8847
|
}, 1500);
|
|
8836
8848
|
}, (err) => {
|
|
8849
|
+
console.error("Failed to copy: ", err);
|
|
8837
8850
|
setCopyState("ErrorCopy");
|
|
8838
8851
|
setTimeout(() => {
|
|
8839
8852
|
setCopyState("NoCopy");
|
|
@@ -9455,9 +9468,9 @@ delegateEvents(["click"]);
|
|
|
9455
9468
|
// src/Devtools.tsx
|
|
9456
9469
|
var _tmpl$25 = /* @__PURE__ */ template(`<div><div aria-hidden=true></div><button type=button aria-label="Open Tanstack query devtools"class=tsqd-open-btn>`);
|
|
9457
9470
|
var _tmpl$26 = /* @__PURE__ */ template(`<div>`);
|
|
9458
|
-
var _tmpl$33 = /* @__PURE__ */ template(`<aside aria-label="Tanstack query devtools"><div></div><button aria-label="Close tanstack query devtools">`);
|
|
9459
|
-
var _tmpl$43 = /* @__PURE__ */ template(`<select name=tsqd-queries-filter-sort>`);
|
|
9460
|
-
var _tmpl$53 = /* @__PURE__ */ template(`<select name=tsqd-mutations-filter-sort>`);
|
|
9471
|
+
var _tmpl$33 = /* @__PURE__ */ template(`<aside aria-label="Tanstack query devtools"><div role=separator aria-label="Resize devtools panel"tabindex=0></div><button aria-label="Close tanstack query devtools">`);
|
|
9472
|
+
var _tmpl$43 = /* @__PURE__ */ template(`<select name=tsqd-queries-filter-sort aria-label="Sort queries by">`);
|
|
9473
|
+
var _tmpl$53 = /* @__PURE__ */ template(`<select name=tsqd-mutations-filter-sort aria-label="Sort mutations by">`);
|
|
9461
9474
|
var _tmpl$63 = /* @__PURE__ */ template(`<span>Asc`);
|
|
9462
9475
|
var _tmpl$73 = /* @__PURE__ */ template(`<span>Desc`);
|
|
9463
9476
|
var _tmpl$83 = /* @__PURE__ */ template(`<button aria-label="Open in picture-in-picture mode"title="Open in picture-in-picture mode">`);
|
|
@@ -9478,19 +9491,19 @@ var _tmpl$202 = /* @__PURE__ */ template(`<div><div class=tsqd-queries-container
|
|
|
9478
9491
|
var _tmpl$212 = /* @__PURE__ */ template(`<div><div class=tsqd-mutations-container>`);
|
|
9479
9492
|
var _tmpl$222 = /* @__PURE__ */ template(`<div><div><div><button aria-label="Close Tanstack query devtools"><span>TANSTACK</span><span> v</span></button></div></div><div><div><div><input aria-label="Filter queries by query key"type=text placeholder=Filter name=tsqd-query-filter-input></div><div></div><button class=tsqd-query-filter-sort-order-btn></button></div><div><button aria-label="Clear query cache"></button><button>`);
|
|
9480
9493
|
var _tmpl$232 = /* @__PURE__ */ template(`<option>Sort by `);
|
|
9481
|
-
var _tmpl$242 = /* @__PURE__ */ template(`<div class=tsqd-query-disabled-indicator>disabled`);
|
|
9482
|
-
var _tmpl$252 = /* @__PURE__ */ template(`<div class=tsqd-query-static-indicator>static`);
|
|
9494
|
+
var _tmpl$242 = /* @__PURE__ */ template(`<div class=tsqd-query-disabled-indicator aria-hidden=true>disabled`);
|
|
9495
|
+
var _tmpl$252 = /* @__PURE__ */ template(`<div class=tsqd-query-static-indicator aria-hidden=true>static`);
|
|
9483
9496
|
var _tmpl$262 = /* @__PURE__ */ template(`<button><div></div><code class=tsqd-query-hash>`);
|
|
9484
9497
|
var _tmpl$27 = /* @__PURE__ */ template(`<div role=tooltip id=tsqd-status-tooltip>`);
|
|
9485
9498
|
var _tmpl$28 = /* @__PURE__ */ template(`<span>`);
|
|
9486
|
-
var _tmpl$29 = /* @__PURE__ */ template(`<button><span></span><span>`);
|
|
9487
|
-
var _tmpl$30 = /* @__PURE__ */ template(`<button><span></span> Error`);
|
|
9488
|
-
var _tmpl$31 = /* @__PURE__ */ template(`<div><span></span>Trigger Error<select><option value=""disabled selected>`);
|
|
9499
|
+
var _tmpl$29 = /* @__PURE__ */ template(`<button><span aria-hidden=true></span><span>`);
|
|
9500
|
+
var _tmpl$30 = /* @__PURE__ */ template(`<button><span aria-hidden=true></span> Error`);
|
|
9501
|
+
var _tmpl$31 = /* @__PURE__ */ template(`<div><span aria-hidden=true></span>Trigger Error<select aria-label="Select error type to trigger"><option value=""disabled selected>`);
|
|
9489
9502
|
var _tmpl$322 = /* @__PURE__ */ template(`<div class="tsqd-query-details-explorer-container tsqd-query-details-data-explorer">`);
|
|
9490
|
-
var _tmpl$332 = /* @__PURE__ */ template(`<form><textarea name=data></textarea><div><span></span><div><button type=button>Cancel</button><button>Save`);
|
|
9491
|
-
var _tmpl$34 = /* @__PURE__ */ template(`<div><div
|
|
9503
|
+
var _tmpl$332 = /* @__PURE__ */ template(`<form><textarea name=data aria-label="Edit query data as JSON"></textarea><div><span></span><div><button type=button>Cancel</button><button>Save`);
|
|
9504
|
+
var _tmpl$34 = /* @__PURE__ */ template(`<div><div role=heading aria-level=2>Query Details</div><div><div class=tsqd-query-details-summary><pre><code></code></pre><span role=status aria-live=polite></span></div><div class=tsqd-query-details-observers-count><span>Observers:</span><span></span></div><div class=tsqd-query-details-last-updated><span>Last Updated:</span><span></span></div></div><div role=heading aria-level=2>Actions</div><div><button><span aria-hidden=true></span>Refetch</button><button><span aria-hidden=true></span>Invalidate</button><button><span aria-hidden=true></span>Reset</button><button><span aria-hidden=true></span>Remove</button><button><span aria-hidden=true></span> Loading</button></div><div role=heading aria-level=2>Data </div><div role=heading aria-level=2>Query Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer">`);
|
|
9492
9505
|
var _tmpl$35 = /* @__PURE__ */ template(`<option>`);
|
|
9493
|
-
var _tmpl$36 = /* @__PURE__ */ template(`<div><div
|
|
9506
|
+
var _tmpl$36 = /* @__PURE__ */ template(`<div><div role=heading aria-level=2>Mutation Details</div><div><div class=tsqd-query-details-summary><pre><code></code></pre><span role=status aria-live=polite></span></div><div class=tsqd-query-details-last-updated><span>Submitted At:</span><span></span></div></div><div role=heading aria-level=2>Variables Details</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer"></div><div role=heading aria-level=2>Context Details</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer"></div><div role=heading aria-level=2>Data Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer"></div><div role=heading aria-level=2>Mutations Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer">`);
|
|
9494
9507
|
var [selectedQueryHash, setSelectedQueryHash] = createSignal(null);
|
|
9495
9508
|
var [selectedMutationId, setSelectedMutationId] = createSignal(null);
|
|
9496
9509
|
var [panelWidth, setPanelWidth] = createSignal(0);
|
|
@@ -9746,6 +9759,10 @@ var DraggablePanel = (props) => {
|
|
|
9746
9759
|
const styles = createMemo(() => {
|
|
9747
9760
|
return theme() === "dark" ? darkStyles2(css) : lightStyles2(css);
|
|
9748
9761
|
});
|
|
9762
|
+
let closeBtnRef;
|
|
9763
|
+
onMount(() => {
|
|
9764
|
+
closeBtnRef.focus();
|
|
9765
|
+
});
|
|
9749
9766
|
const [isResizing, setIsResizing] = createSignal(false);
|
|
9750
9767
|
const position = createMemo(() => props.localStore.position || useQueryDevtoolsContext().position || POSITION);
|
|
9751
9768
|
const handleDragStart = (event) => {
|
|
@@ -9789,7 +9806,7 @@ var DraggablePanel = (props) => {
|
|
|
9789
9806
|
setIsResizing(false);
|
|
9790
9807
|
}
|
|
9791
9808
|
document.removeEventListener("mousemove", runDrag, false);
|
|
9792
|
-
document.removeEventListener("
|
|
9809
|
+
document.removeEventListener("mouseup", unsubscribe, false);
|
|
9793
9810
|
};
|
|
9794
9811
|
document.addEventListener("mousemove", runDrag, false);
|
|
9795
9812
|
document.addEventListener("mouseup", unsubscribe, false);
|
|
@@ -9850,8 +9867,32 @@ var DraggablePanel = (props) => {
|
|
|
9850
9867
|
var _el$7 = _tmpl$33(), _el$8 = _el$7.firstChild, _el$9 = _el$8.nextSibling;
|
|
9851
9868
|
var _ref$3 = panelRef;
|
|
9852
9869
|
typeof _ref$3 === "function" ? use(_ref$3, _el$7) : panelRef = _el$7;
|
|
9870
|
+
_el$8.$$keydown = (e2) => {
|
|
9871
|
+
const step = 10;
|
|
9872
|
+
const minHeight = convertRemToPixels(3.5);
|
|
9873
|
+
const minWidth = convertRemToPixels(12);
|
|
9874
|
+
if (position() === "top" || position() === "bottom") {
|
|
9875
|
+
if (e2.key === "ArrowUp" || e2.key === "ArrowDown") {
|
|
9876
|
+
e2.preventDefault();
|
|
9877
|
+
const currentHeight = Number(props.localStore.height || DEFAULT_HEIGHT);
|
|
9878
|
+
const delta = position() === "bottom" ? e2.key === "ArrowUp" ? step : -10 : e2.key === "ArrowDown" ? step : -10;
|
|
9879
|
+
const newHeight = Math.max(minHeight, currentHeight + delta);
|
|
9880
|
+
props.setLocalStore("height", String(newHeight));
|
|
9881
|
+
}
|
|
9882
|
+
} else {
|
|
9883
|
+
if (e2.key === "ArrowLeft" || e2.key === "ArrowRight") {
|
|
9884
|
+
e2.preventDefault();
|
|
9885
|
+
const currentWidth = Number(props.localStore.width || DEFAULT_WIDTH);
|
|
9886
|
+
const delta = position() === "right" ? e2.key === "ArrowLeft" ? step : -10 : e2.key === "ArrowRight" ? step : -10;
|
|
9887
|
+
const newWidth = Math.max(minWidth, currentWidth + delta);
|
|
9888
|
+
props.setLocalStore("width", String(newWidth));
|
|
9889
|
+
}
|
|
9890
|
+
}
|
|
9891
|
+
};
|
|
9853
9892
|
_el$8.$$mousedown = handleDragStart;
|
|
9854
9893
|
_el$9.$$click = () => props.setLocalStore("open", "false");
|
|
9894
|
+
var _ref$4 = closeBtnRef;
|
|
9895
|
+
typeof _ref$4 === "function" ? use(_ref$4, _el$9) : closeBtnRef = _el$9;
|
|
9855
9896
|
insert(_el$9, createComponent(ChevronDown, {}));
|
|
9856
9897
|
insert(_el$7, createComponent(ContentView, props), null);
|
|
9857
9898
|
createRenderEffect((_p$) => {
|
|
@@ -9859,19 +9900,25 @@ var DraggablePanel = (props) => {
|
|
|
9859
9900
|
[css`
|
|
9860
9901
|
min-width: min-content;
|
|
9861
9902
|
`]: panelWidth() < thirdBreakpoint && (position() === "right" || position() === "left")
|
|
9862
|
-
}, "tsqd-main-panel"), _v$2 = position() === "bottom" || position() === "top" ? `${props.localStore.height || DEFAULT_HEIGHT}px` : "auto", _v$3 = position() === "right" || position() === "left" ? `${props.localStore.width || DEFAULT_WIDTH}px` : "auto", _v$4 = clsx(styles().dragHandle, styles()[`dragHandle-position-${position()}`], "tsqd-drag-handle"), _v$
|
|
9903
|
+
}, "tsqd-main-panel"), _v$2 = position() === "bottom" || position() === "top" ? `${props.localStore.height || DEFAULT_HEIGHT}px` : "auto", _v$3 = position() === "right" || position() === "left" ? `${props.localStore.width || DEFAULT_WIDTH}px` : "auto", _v$4 = position() === "top" || position() === "bottom" ? "horizontal" : "vertical", _v$5 = position() === "top" || position() === "bottom" ? convertRemToPixels(3.5) : convertRemToPixels(12), _v$6 = position() === "top" || position() === "bottom" ? Number(props.localStore.height || DEFAULT_HEIGHT) : Number(props.localStore.width || DEFAULT_WIDTH), _v$7 = clsx(styles().dragHandle, styles()[`dragHandle-position-${position()}`], "tsqd-drag-handle"), _v$8 = clsx(styles().closeBtn, styles()[`closeBtn-position-${position()}`], "tsqd-minimize-btn");
|
|
9863
9904
|
_v$ !== _p$.e && className(_el$7, _p$.e = _v$);
|
|
9864
9905
|
_v$2 !== _p$.t && ((_p$.t = _v$2) != null ? _el$7.style.setProperty("height", _v$2) : _el$7.style.removeProperty("height"));
|
|
9865
9906
|
_v$3 !== _p$.a && ((_p$.a = _v$3) != null ? _el$7.style.setProperty("width", _v$3) : _el$7.style.removeProperty("width"));
|
|
9866
|
-
_v$4 !== _p$.o &&
|
|
9867
|
-
_v$5 !== _p$.i &&
|
|
9907
|
+
_v$4 !== _p$.o && setAttribute(_el$8, "aria-orientation", _p$.o = _v$4);
|
|
9908
|
+
_v$5 !== _p$.i && setAttribute(_el$8, "aria-valuemin", _p$.i = _v$5);
|
|
9909
|
+
_v$6 !== _p$.n && setAttribute(_el$8, "aria-valuenow", _p$.n = _v$6);
|
|
9910
|
+
_v$7 !== _p$.s && className(_el$8, _p$.s = _v$7);
|
|
9911
|
+
_v$8 !== _p$.h && className(_el$9, _p$.h = _v$8);
|
|
9868
9912
|
return _p$;
|
|
9869
9913
|
}, {
|
|
9870
9914
|
e: void 0,
|
|
9871
9915
|
t: void 0,
|
|
9872
9916
|
a: void 0,
|
|
9873
9917
|
o: void 0,
|
|
9874
|
-
i: void 0
|
|
9918
|
+
i: void 0,
|
|
9919
|
+
n: void 0,
|
|
9920
|
+
s: void 0,
|
|
9921
|
+
h: void 0
|
|
9875
9922
|
});
|
|
9876
9923
|
return _el$7;
|
|
9877
9924
|
})();
|
|
@@ -9936,8 +9983,8 @@ var ContentView = (props) => {
|
|
|
9936
9983
|
};
|
|
9937
9984
|
return [(() => {
|
|
9938
9985
|
var _el$0 = _tmpl$222(), _el$1 = _el$0.firstChild, _el$10 = _el$1.firstChild, _el$11 = _el$10.firstChild, _el$12 = _el$11.firstChild, _el$13 = _el$12.nextSibling, _el$14 = _el$13.firstChild, _el$15 = _el$1.nextSibling, _el$16 = _el$15.firstChild, _el$17 = _el$16.firstChild, _el$18 = _el$17.firstChild, _el$19 = _el$17.nextSibling, _el$22 = _el$19.nextSibling, _el$25 = _el$16.nextSibling, _el$26 = _el$25.firstChild, _el$27 = _el$26.nextSibling;
|
|
9939
|
-
var _ref$
|
|
9940
|
-
typeof _ref$
|
|
9986
|
+
var _ref$5 = containerRef;
|
|
9987
|
+
typeof _ref$5 === "function" ? use(_ref$5, _el$0) : containerRef = _el$0;
|
|
9941
9988
|
_el$11.$$click = () => {
|
|
9942
9989
|
if (!pip().pipWindow && !props.showPanelViewOnly) {
|
|
9943
9990
|
props.setLocalStore("open", "false");
|
|
@@ -9956,6 +10003,7 @@ var ContentView = (props) => {
|
|
|
9956
10003
|
get value() {
|
|
9957
10004
|
return selectedView();
|
|
9958
10005
|
},
|
|
10006
|
+
"aria-label": "Toggle between queries and mutations view",
|
|
9959
10007
|
onChange: (value) => {
|
|
9960
10008
|
setSelectedView(value);
|
|
9961
10009
|
setSelectedQueryHash(null);
|
|
@@ -10302,12 +10350,12 @@ var ContentView = (props) => {
|
|
|
10302
10350
|
get ["class"]() {
|
|
10303
10351
|
return clsx(styles().settingsMenu, "tsqd-settings-submenu");
|
|
10304
10352
|
},
|
|
10305
|
-
"aria-label": "Hide disabled queries setting",
|
|
10306
10353
|
get children() {
|
|
10307
10354
|
return createComponent(dropdown_menu_exports.RadioGroup, {
|
|
10308
10355
|
get value() {
|
|
10309
10356
|
return props.localStore.hideDisabledQueries;
|
|
10310
10357
|
},
|
|
10358
|
+
"aria-label": "Hide disabled queries setting",
|
|
10311
10359
|
onChange: (value) => props.setLocalStore("hideDisabledQueries", value),
|
|
10312
10360
|
get children() {
|
|
10313
10361
|
return [createComponent(dropdown_menu_exports.RadioItem, {
|
|
@@ -10398,33 +10446,33 @@ var ContentView = (props) => {
|
|
|
10398
10446
|
}
|
|
10399
10447
|
}), null);
|
|
10400
10448
|
createRenderEffect((_p$) => {
|
|
10401
|
-
var _v$
|
|
10449
|
+
var _v$9 = clsx(styles().queriesContainer, panelWidth() < secondBreakpoint && (selectedQueryHash() || selectedMutationId()) && css`
|
|
10402
10450
|
height: 50%;
|
|
10403
10451
|
max-height: 50%;
|
|
10404
10452
|
`, panelWidth() < secondBreakpoint && !(selectedQueryHash() || selectedMutationId()) && css`
|
|
10405
10453
|
height: 100%;
|
|
10406
10454
|
max-height: 100%;
|
|
10407
|
-
`, "tsqd-queries-container"), _v$
|
|
10408
|
-
_v$
|
|
10409
|
-
_v$
|
|
10410
|
-
_v$
|
|
10411
|
-
_v$
|
|
10412
|
-
_v$
|
|
10413
|
-
_v$
|
|
10414
|
-
_v$
|
|
10415
|
-
_v$
|
|
10416
|
-
_v$
|
|
10417
|
-
_v$
|
|
10418
|
-
_v$
|
|
10419
|
-
_v$
|
|
10420
|
-
_v$
|
|
10421
|
-
_v$
|
|
10422
|
-
_v$
|
|
10423
|
-
_v$
|
|
10424
|
-
_v$
|
|
10425
|
-
_v$
|
|
10426
|
-
_v$
|
|
10427
|
-
_v$
|
|
10455
|
+
`, "tsqd-queries-container"), _v$0 = clsx(styles().row, "tsqd-header"), _v$1 = styles().logoAndToggleContainer, _v$10 = clsx(styles().logo, "tsqd-text-logo-container"), _v$11 = clsx(styles().tanstackLogo, "tsqd-text-logo-tanstack"), _v$12 = clsx(styles().queryFlavorLogo, "tsqd-text-logo-query-flavor"), _v$13 = clsx(styles().row, "tsqd-filters-actions-container"), _v$14 = clsx(styles().filtersContainer, "tsqd-filters-container"), _v$15 = clsx(styles().filterInput, "tsqd-query-filter-textfield-container"), _v$16 = clsx("tsqd-query-filter-textfield"), _v$17 = clsx(styles().filterSelect, "tsqd-query-filter-sort-container"), _v$18 = `Sort order ${(selectedView() === "queries" ? sortOrder() : mutationSortOrder()) === -1 ? "descending" : "ascending"}`, _v$19 = (selectedView() === "queries" ? sortOrder() : mutationSortOrder()) === -1, _v$20 = clsx(styles().actionsContainer, "tsqd-actions-container"), _v$21 = clsx(styles().actionsBtn, "tsqd-actions-btn", "tsqd-action-clear-cache"), _v$22 = `Clear ${selectedView()} cache`, _v$23 = clsx(styles().actionsBtn, offline() && styles().actionsBtnOffline, "tsqd-actions-btn", "tsqd-action-mock-offline-behavior"), _v$24 = `${offline() ? "Unset offline mocking behavior" : "Mock offline behavior"}`, _v$25 = offline(), _v$26 = `${offline() ? "Unset offline mocking behavior" : "Mock offline behavior"}`;
|
|
10456
|
+
_v$9 !== _p$.e && className(_el$0, _p$.e = _v$9);
|
|
10457
|
+
_v$0 !== _p$.t && className(_el$1, _p$.t = _v$0);
|
|
10458
|
+
_v$1 !== _p$.a && className(_el$10, _p$.a = _v$1);
|
|
10459
|
+
_v$10 !== _p$.o && className(_el$11, _p$.o = _v$10);
|
|
10460
|
+
_v$11 !== _p$.i && className(_el$12, _p$.i = _v$11);
|
|
10461
|
+
_v$12 !== _p$.n && className(_el$13, _p$.n = _v$12);
|
|
10462
|
+
_v$13 !== _p$.s && className(_el$15, _p$.s = _v$13);
|
|
10463
|
+
_v$14 !== _p$.h && className(_el$16, _p$.h = _v$14);
|
|
10464
|
+
_v$15 !== _p$.r && className(_el$17, _p$.r = _v$15);
|
|
10465
|
+
_v$16 !== _p$.d && className(_el$18, _p$.d = _v$16);
|
|
10466
|
+
_v$17 !== _p$.l && className(_el$19, _p$.l = _v$17);
|
|
10467
|
+
_v$18 !== _p$.u && setAttribute(_el$22, "aria-label", _p$.u = _v$18);
|
|
10468
|
+
_v$19 !== _p$.c && setAttribute(_el$22, "aria-pressed", _p$.c = _v$19);
|
|
10469
|
+
_v$20 !== _p$.w && className(_el$25, _p$.w = _v$20);
|
|
10470
|
+
_v$21 !== _p$.m && className(_el$26, _p$.m = _v$21);
|
|
10471
|
+
_v$22 !== _p$.f && setAttribute(_el$26, "title", _p$.f = _v$22);
|
|
10472
|
+
_v$23 !== _p$.y && className(_el$27, _p$.y = _v$23);
|
|
10473
|
+
_v$24 !== _p$.g && setAttribute(_el$27, "aria-label", _p$.g = _v$24);
|
|
10474
|
+
_v$25 !== _p$.p && setAttribute(_el$27, "aria-pressed", _p$.p = _v$25);
|
|
10475
|
+
_v$26 !== _p$.b && setAttribute(_el$27, "title", _p$.b = _v$26);
|
|
10428
10476
|
return _p$;
|
|
10429
10477
|
}, {
|
|
10430
10478
|
e: void 0,
|
|
@@ -10537,10 +10585,10 @@ var QueryRow = (props) => {
|
|
|
10537
10585
|
}
|
|
10538
10586
|
}), null);
|
|
10539
10587
|
createRenderEffect((_p$) => {
|
|
10540
|
-
var _v$
|
|
10541
|
-
_v$
|
|
10542
|
-
_v$
|
|
10543
|
-
_v$
|
|
10588
|
+
var _v$27 = clsx(styles().queryRow, selectedQueryHash() === props.query.queryHash && styles().selectedQueryRow, "tsqd-query-row"), _v$28 = `Query key ${props.query.queryHash}${isDisabled() ? ", disabled" : ""}${isStatic() ? ", static" : ""}`, _v$29 = clsx(getObserverCountColorStyles(), "tsqd-query-observer-count");
|
|
10589
|
+
_v$27 !== _p$.e && className(_el$50, _p$.e = _v$27);
|
|
10590
|
+
_v$28 !== _p$.t && setAttribute(_el$50, "aria-label", _p$.t = _v$28);
|
|
10591
|
+
_v$29 !== _p$.a && className(_el$51, _p$.a = _v$29);
|
|
10544
10592
|
return _p$;
|
|
10545
10593
|
}, {
|
|
10546
10594
|
e: void 0,
|
|
@@ -10648,10 +10696,10 @@ var MutationRow = (props) => {
|
|
|
10648
10696
|
}), null);
|
|
10649
10697
|
insert(_el$57, () => new Date(props.mutation.state.submittedAt).toLocaleString(), null);
|
|
10650
10698
|
createRenderEffect((_p$) => {
|
|
10651
|
-
var _v$
|
|
10652
|
-
_v$
|
|
10653
|
-
_v$
|
|
10654
|
-
_v$
|
|
10699
|
+
var _v$30 = clsx(styles().queryRow, selectedMutationId() === props.mutation.mutationId && styles().selectedQueryRow, "tsqd-query-row"), _v$31 = `Mutation submitted at ${new Date(props.mutation.state.submittedAt).toLocaleString()}`, _v$32 = clsx(getObserverCountColorStyles(), "tsqd-query-observer-count");
|
|
10700
|
+
_v$30 !== _p$.e && className(_el$55, _p$.e = _v$30);
|
|
10701
|
+
_v$31 !== _p$.t && setAttribute(_el$55, "aria-label", _p$.t = _v$31);
|
|
10702
|
+
_v$32 !== _p$.a && className(_el$56, _p$.a = _v$32);
|
|
10655
10703
|
return _p$;
|
|
10656
10704
|
}, {
|
|
10657
10705
|
e: void 0,
|
|
@@ -10803,8 +10851,8 @@ var QueryStatus = (props) => {
|
|
|
10803
10851
|
});
|
|
10804
10852
|
return (() => {
|
|
10805
10853
|
var _el$60 = _tmpl$29(), _el$62 = _el$60.firstChild, _el$64 = _el$62.nextSibling;
|
|
10806
|
-
var _ref$
|
|
10807
|
-
typeof _ref$
|
|
10854
|
+
var _ref$6 = tagRef;
|
|
10855
|
+
typeof _ref$6 === "function" ? use(_ref$6, _el$60) : tagRef = _el$60;
|
|
10808
10856
|
_el$60.addEventListener("mouseleave", () => {
|
|
10809
10857
|
setMouseOver(false);
|
|
10810
10858
|
setFocused(false);
|
|
@@ -10816,6 +10864,9 @@ var QueryStatus = (props) => {
|
|
|
10816
10864
|
get disabled() {
|
|
10817
10865
|
return showLabel();
|
|
10818
10866
|
},
|
|
10867
|
+
get ["aria-label"]() {
|
|
10868
|
+
return `${props.label}: ${props.count}`;
|
|
10869
|
+
},
|
|
10819
10870
|
get ["class"]() {
|
|
10820
10871
|
return clsx(styles().queryStatusTag, !showLabel() && css`
|
|
10821
10872
|
cursor: pointer;
|
|
@@ -10851,17 +10902,17 @@ var QueryStatus = (props) => {
|
|
|
10851
10902
|
}), _el$64);
|
|
10852
10903
|
insert(_el$64, () => props.count);
|
|
10853
10904
|
createRenderEffect((_p$) => {
|
|
10854
|
-
var _v$
|
|
10905
|
+
var _v$33 = clsx(css`
|
|
10855
10906
|
width: ${tokens.size[1.5]};
|
|
10856
10907
|
height: ${tokens.size[1.5]};
|
|
10857
10908
|
border-radius: ${tokens.border.radius.full};
|
|
10858
10909
|
background-color: ${tokens.colors[props.color][500]};
|
|
10859
|
-
`, "tsqd-query-status-tag-dot"), _v$
|
|
10910
|
+
`, "tsqd-query-status-tag-dot"), _v$34 = clsx(styles().queryStatusCount, props.count > 0 && props.color !== "gray" && css`
|
|
10860
10911
|
background-color: ${t2(colors[props.color][100], colors[props.color][900])};
|
|
10861
10912
|
color: ${t2(colors[props.color][700], colors[props.color][300])};
|
|
10862
10913
|
`, "tsqd-query-status-tag-count");
|
|
10863
|
-
_v$
|
|
10864
|
-
_v$
|
|
10914
|
+
_v$33 !== _p$.e && className(_el$62, _p$.e = _v$33);
|
|
10915
|
+
_v$34 !== _p$.t && className(_el$64, _p$.t = _v$34);
|
|
10865
10916
|
return _p$;
|
|
10866
10917
|
}, {
|
|
10867
10918
|
e: void 0,
|
|
@@ -10931,6 +10982,7 @@ var QueryDetails = () => {
|
|
|
10931
10982
|
const error = errorType?.initializer(activeQueryVal) ?? new Error("Unknown error from devtools");
|
|
10932
10983
|
const __previousQueryOptions = activeQueryVal.options;
|
|
10933
10984
|
activeQueryVal.setState({
|
|
10985
|
+
data: void 0,
|
|
10934
10986
|
status: "error",
|
|
10935
10987
|
error,
|
|
10936
10988
|
fetchMeta: {
|
|
@@ -11062,14 +11114,14 @@ var QueryDetails = () => {
|
|
|
11062
11114
|
};
|
|
11063
11115
|
insert(_el$91, () => queryStatus() === "error" ? "Restore" : "Trigger", _el$93);
|
|
11064
11116
|
createRenderEffect((_p$) => {
|
|
11065
|
-
var _v$
|
|
11117
|
+
var _v$35 = clsx(css`
|
|
11066
11118
|
color: ${t2(colors.red[500], colors.red[400])};
|
|
11067
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-error"), _v$
|
|
11119
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-error"), _v$36 = queryStatus() === "pending", _v$37 = css`
|
|
11068
11120
|
background-color: ${t2(colors.red[500], colors.red[400])};
|
|
11069
11121
|
`;
|
|
11070
|
-
_v$
|
|
11071
|
-
_v$
|
|
11072
|
-
_v$
|
|
11122
|
+
_v$35 !== _p$.e && className(_el$91, _p$.e = _v$35);
|
|
11123
|
+
_v$36 !== _p$.t && (_el$91.disabled = _p$.t = _v$36);
|
|
11124
|
+
_v$37 !== _p$.a && className(_el$92, _p$.a = _v$37);
|
|
11073
11125
|
return _p$;
|
|
11074
11126
|
}, {
|
|
11075
11127
|
e: void 0,
|
|
@@ -11102,12 +11154,12 @@ var QueryDetails = () => {
|
|
|
11102
11154
|
}), null);
|
|
11103
11155
|
insert(_el$94, createComponent(ChevronDown, {}), null);
|
|
11104
11156
|
createRenderEffect((_p$) => {
|
|
11105
|
-
var _v$
|
|
11157
|
+
var _v$38 = clsx(styles().actionsSelect, "tsqd-query-details-actions-btn", "tsqd-query-details-action-error-multiple"), _v$39 = css`
|
|
11106
11158
|
background-color: ${tokens.colors.red[400]};
|
|
11107
|
-
`, _v$
|
|
11108
|
-
_v$
|
|
11109
|
-
_v$
|
|
11110
|
-
_v$
|
|
11159
|
+
`, _v$40 = queryStatus() === "pending";
|
|
11160
|
+
_v$38 !== _p$.e && className(_el$94, _p$.e = _v$38);
|
|
11161
|
+
_v$39 !== _p$.t && className(_el$95, _p$.t = _v$39);
|
|
11162
|
+
_v$40 !== _p$.a && (_el$97.disabled = _p$.a = _v$40);
|
|
11111
11163
|
return _p$;
|
|
11112
11164
|
}, {
|
|
11113
11165
|
e: void 0,
|
|
@@ -11165,19 +11217,19 @@ var QueryDetails = () => {
|
|
|
11165
11217
|
insert(_el$105, () => dataEditError() ? "Invalid Value" : "");
|
|
11166
11218
|
_el$107.$$click = () => setDataMode("view");
|
|
11167
11219
|
createRenderEffect((_p$) => {
|
|
11168
|
-
var _v$
|
|
11220
|
+
var _v$41 = clsx(styles().devtoolsEditForm, "tsqd-query-details-data-editor"), _v$42 = styles().devtoolsEditTextarea, _v$43 = dataEditError(), _v$44 = styles().devtoolsEditFormActions, _v$45 = styles().devtoolsEditFormError, _v$46 = styles().devtoolsEditFormActionContainer, _v$47 = clsx(styles().devtoolsEditFormAction, css`
|
|
11169
11221
|
color: ${t2(colors.gray[600], colors.gray[300])};
|
|
11170
|
-
`), _v$
|
|
11222
|
+
`), _v$48 = clsx(styles().devtoolsEditFormAction, css`
|
|
11171
11223
|
color: ${t2(colors.blue[600], colors.blue[400])};
|
|
11172
11224
|
`);
|
|
11173
|
-
_v$
|
|
11174
|
-
_v$
|
|
11175
|
-
_v$
|
|
11176
|
-
_v$
|
|
11177
|
-
_v$
|
|
11178
|
-
_v$
|
|
11179
|
-
_v$
|
|
11180
|
-
_v$
|
|
11225
|
+
_v$41 !== _p$.e && className(_el$102, _p$.e = _v$41);
|
|
11226
|
+
_v$42 !== _p$.t && className(_el$103, _p$.t = _v$42);
|
|
11227
|
+
_v$43 !== _p$.a && setAttribute(_el$103, "data-error", _p$.a = _v$43);
|
|
11228
|
+
_v$44 !== _p$.o && className(_el$104, _p$.o = _v$44);
|
|
11229
|
+
_v$45 !== _p$.i && className(_el$105, _p$.i = _v$45);
|
|
11230
|
+
_v$46 !== _p$.n && className(_el$106, _p$.n = _v$46);
|
|
11231
|
+
_v$47 !== _p$.s && className(_el$107, _p$.s = _v$47);
|
|
11232
|
+
_v$48 !== _p$.h && className(_el$108, _p$.h = _v$48);
|
|
11181
11233
|
return _p$;
|
|
11182
11234
|
}, {
|
|
11183
11235
|
e: void 0,
|
|
@@ -11201,51 +11253,51 @@ var QueryDetails = () => {
|
|
|
11201
11253
|
}
|
|
11202
11254
|
}));
|
|
11203
11255
|
createRenderEffect((_p$) => {
|
|
11204
|
-
var _v$
|
|
11256
|
+
var _v$49 = clsx(styles().detailsContainer, "tsqd-query-details-container"), _v$50 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$51 = clsx(styles().detailsBody, "tsqd-query-details-summary-container"), _v$52 = clsx(styles().queryDetailsStatus, getQueryStatusColors()), _v$53 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$54 = clsx(styles().actionsBody, "tsqd-query-details-actions-container"), _v$55 = clsx(css`
|
|
11205
11257
|
color: ${t2(colors.blue[600], colors.blue[400])};
|
|
11206
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-refetch"), _v$
|
|
11258
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-refetch"), _v$56 = statusLabel() === "fetching", _v$57 = css`
|
|
11207
11259
|
background-color: ${t2(colors.blue[600], colors.blue[400])};
|
|
11208
|
-
`, _v$
|
|
11260
|
+
`, _v$58 = clsx(css`
|
|
11209
11261
|
color: ${t2(colors.yellow[600], colors.yellow[400])};
|
|
11210
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-invalidate"), _v$
|
|
11262
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-invalidate"), _v$59 = queryStatus() === "pending", _v$60 = css`
|
|
11211
11263
|
background-color: ${t2(colors.yellow[600], colors.yellow[400])};
|
|
11212
|
-
`, _v$
|
|
11264
|
+
`, _v$61 = clsx(css`
|
|
11213
11265
|
color: ${t2(colors.gray[600], colors.gray[300])};
|
|
11214
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-reset"), _v$
|
|
11266
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-reset"), _v$62 = queryStatus() === "pending", _v$63 = css`
|
|
11215
11267
|
background-color: ${t2(colors.gray[600], colors.gray[400])};
|
|
11216
|
-
`, _v$
|
|
11268
|
+
`, _v$64 = clsx(css`
|
|
11217
11269
|
color: ${t2(colors.pink[500], colors.pink[400])};
|
|
11218
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-remove"), _v$
|
|
11270
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-remove"), _v$65 = statusLabel() === "fetching", _v$66 = css`
|
|
11219
11271
|
background-color: ${t2(colors.pink[500], colors.pink[400])};
|
|
11220
|
-
`, _v$
|
|
11272
|
+
`, _v$67 = clsx(css`
|
|
11221
11273
|
color: ${t2(colors.cyan[500], colors.cyan[400])};
|
|
11222
|
-
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-loading"), _v$
|
|
11274
|
+
`, "tsqd-query-details-actions-btn", "tsqd-query-details-action-loading"), _v$68 = restoringLoading(), _v$69 = css`
|
|
11223
11275
|
background-color: ${t2(colors.cyan[500], colors.cyan[400])};
|
|
11224
|
-
`, _v$
|
|
11225
|
-
_v$
|
|
11226
|
-
_v$
|
|
11227
|
-
_v$
|
|
11228
|
-
_v$
|
|
11229
|
-
_v$
|
|
11230
|
-
_v$
|
|
11231
|
-
_v$
|
|
11232
|
-
_v$
|
|
11233
|
-
_v$
|
|
11234
|
-
_v$
|
|
11235
|
-
_v$
|
|
11236
|
-
_v$
|
|
11237
|
-
_v$
|
|
11238
|
-
_v$
|
|
11239
|
-
_v$
|
|
11240
|
-
_v$
|
|
11241
|
-
_v$
|
|
11242
|
-
_v$
|
|
11243
|
-
_v$
|
|
11244
|
-
_v$
|
|
11245
|
-
_v$
|
|
11246
|
-
_v$
|
|
11247
|
-
_v$
|
|
11248
|
-
_v$
|
|
11276
|
+
`, _v$70 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$71 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$72 = tokens.size[2];
|
|
11277
|
+
_v$49 !== _p$.e && className(_el$65, _p$.e = _v$49);
|
|
11278
|
+
_v$50 !== _p$.t && className(_el$66, _p$.t = _v$50);
|
|
11279
|
+
_v$51 !== _p$.a && className(_el$67, _p$.a = _v$51);
|
|
11280
|
+
_v$52 !== _p$.o && className(_el$71, _p$.o = _v$52);
|
|
11281
|
+
_v$53 !== _p$.i && className(_el$78, _p$.i = _v$53);
|
|
11282
|
+
_v$54 !== _p$.n && className(_el$79, _p$.n = _v$54);
|
|
11283
|
+
_v$55 !== _p$.s && className(_el$80, _p$.s = _v$55);
|
|
11284
|
+
_v$56 !== _p$.h && (_el$80.disabled = _p$.h = _v$56);
|
|
11285
|
+
_v$57 !== _p$.r && className(_el$81, _p$.r = _v$57);
|
|
11286
|
+
_v$58 !== _p$.d && className(_el$82, _p$.d = _v$58);
|
|
11287
|
+
_v$59 !== _p$.l && (_el$82.disabled = _p$.l = _v$59);
|
|
11288
|
+
_v$60 !== _p$.u && className(_el$83, _p$.u = _v$60);
|
|
11289
|
+
_v$61 !== _p$.c && className(_el$84, _p$.c = _v$61);
|
|
11290
|
+
_v$62 !== _p$.w && (_el$84.disabled = _p$.w = _v$62);
|
|
11291
|
+
_v$63 !== _p$.m && className(_el$85, _p$.m = _v$63);
|
|
11292
|
+
_v$64 !== _p$.f && className(_el$86, _p$.f = _v$64);
|
|
11293
|
+
_v$65 !== _p$.y && (_el$86.disabled = _p$.y = _v$65);
|
|
11294
|
+
_v$66 !== _p$.g && className(_el$87, _p$.g = _v$66);
|
|
11295
|
+
_v$67 !== _p$.p && className(_el$88, _p$.p = _v$67);
|
|
11296
|
+
_v$68 !== _p$.b && (_el$88.disabled = _p$.b = _v$68);
|
|
11297
|
+
_v$69 !== _p$.T && className(_el$89, _p$.T = _v$69);
|
|
11298
|
+
_v$70 !== _p$.A && className(_el$99, _p$.A = _v$70);
|
|
11299
|
+
_v$71 !== _p$.O && className(_el$109, _p$.O = _v$71);
|
|
11300
|
+
_v$72 !== _p$.I && ((_p$.I = _v$72) != null ? _el$110.style.setProperty("padding", _v$72) : _el$110.style.removeProperty("padding"));
|
|
11249
11301
|
return _p$;
|
|
11250
11302
|
}, {
|
|
11251
11303
|
e: void 0,
|
|
@@ -11379,19 +11431,19 @@ var MutationDetails = () => {
|
|
|
11379
11431
|
}
|
|
11380
11432
|
}));
|
|
11381
11433
|
createRenderEffect((_p$) => {
|
|
11382
|
-
var _v$
|
|
11383
|
-
_v$
|
|
11384
|
-
_v$
|
|
11385
|
-
_v$
|
|
11386
|
-
_v$
|
|
11387
|
-
_v$
|
|
11388
|
-
_v$
|
|
11389
|
-
_v$
|
|
11390
|
-
_v$
|
|
11391
|
-
_v$
|
|
11392
|
-
_v$
|
|
11393
|
-
_v$
|
|
11394
|
-
_v$
|
|
11434
|
+
var _v$73 = clsx(styles().detailsContainer, "tsqd-query-details-container"), _v$74 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$75 = clsx(styles().detailsBody, "tsqd-query-details-summary-container"), _v$76 = clsx(styles().queryDetailsStatus, getQueryStatusColors()), _v$77 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$78 = tokens.size[2], _v$79 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$80 = tokens.size[2], _v$81 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$82 = tokens.size[2], _v$83 = clsx(styles().detailsHeader, "tsqd-query-details-header"), _v$84 = tokens.size[2];
|
|
11435
|
+
_v$73 !== _p$.e && className(_el$112, _p$.e = _v$73);
|
|
11436
|
+
_v$74 !== _p$.t && className(_el$113, _p$.t = _v$74);
|
|
11437
|
+
_v$75 !== _p$.a && className(_el$114, _p$.a = _v$75);
|
|
11438
|
+
_v$76 !== _p$.o && className(_el$118, _p$.o = _v$76);
|
|
11439
|
+
_v$77 !== _p$.i && className(_el$122, _p$.i = _v$77);
|
|
11440
|
+
_v$78 !== _p$.n && ((_p$.n = _v$78) != null ? _el$123.style.setProperty("padding", _v$78) : _el$123.style.removeProperty("padding"));
|
|
11441
|
+
_v$79 !== _p$.s && className(_el$124, _p$.s = _v$79);
|
|
11442
|
+
_v$80 !== _p$.h && ((_p$.h = _v$80) != null ? _el$125.style.setProperty("padding", _v$80) : _el$125.style.removeProperty("padding"));
|
|
11443
|
+
_v$81 !== _p$.r && className(_el$126, _p$.r = _v$81);
|
|
11444
|
+
_v$82 !== _p$.d && ((_p$.d = _v$82) != null ? _el$127.style.setProperty("padding", _v$82) : _el$127.style.removeProperty("padding"));
|
|
11445
|
+
_v$83 !== _p$.l && className(_el$128, _p$.l = _v$83);
|
|
11446
|
+
_v$84 !== _p$.u && ((_p$.u = _v$84) != null ? _el$129.style.setProperty("padding", _v$84) : _el$129.style.removeProperty("padding"));
|
|
11395
11447
|
return _p$;
|
|
11396
11448
|
}, {
|
|
11397
11449
|
e: void 0,
|
|
@@ -11796,6 +11848,15 @@ var stylesFactory2 = (theme, css) => {
|
|
|
11796
11848
|
&:hover {
|
|
11797
11849
|
background-color: ${colors.purple[400]}${t2("", alpha[90])};
|
|
11798
11850
|
}
|
|
11851
|
+
&:focus {
|
|
11852
|
+
outline: none;
|
|
11853
|
+
background-color: ${colors.purple[400]}${t2("", alpha[90])};
|
|
11854
|
+
}
|
|
11855
|
+
&:focus-visible {
|
|
11856
|
+
outline: 2px solid ${colors.blue[800]};
|
|
11857
|
+
outline-offset: -2px;
|
|
11858
|
+
background-color: ${colors.purple[400]}${t2("", alpha[90])};
|
|
11859
|
+
}
|
|
11799
11860
|
z-index: 4;
|
|
11800
11861
|
`,
|
|
11801
11862
|
"dragHandle-position-top": css`
|
|
@@ -12548,7 +12609,7 @@ var stylesFactory2 = (theme, css) => {
|
|
|
12548
12609
|
};
|
|
12549
12610
|
var lightStyles2 = (css) => stylesFactory2("light", css);
|
|
12550
12611
|
var darkStyles2 = (css) => stylesFactory2("dark", css);
|
|
12551
|
-
delegateEvents(["click", "mousedown", "input"]);
|
|
12612
|
+
delegateEvents(["click", "mousedown", "keydown", "input"]);
|
|
12552
12613
|
/*! Bundled license information:
|
|
12553
12614
|
|
|
12554
12615
|
@tanstack/match-sorter-utils/build/lib/index.mjs:
|