@tanstack/query-devtools 5.13.5 → 5.14.6
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/{N66J3ZXT.js → 2NWMMIDL.js} +76 -74
- package/build/Devtools/{KEJBG6PF.jsx → BBKE7EDU.jsx} +96 -93
- package/build/Devtools/{YGZHNM6M.jsx → RB22CS4R.jsx} +95 -94
- package/build/Devtools/{JDX7DFYK.js → WVILHGEF.js} +76 -74
- package/build/chunk/{NCBN5K2V.js → 3UQ4PA5F.js} +61 -49
- package/build/chunk/{LRQXE5TJ.jsx → 4WPHY6P7.jsx} +61 -49
- package/build/chunk/{7TPOKDOT.js → CQKFH7YS.js} +61 -49
- package/build/chunk/{EFDUVU65.jsx → OVQD3YQS.jsx} +61 -49
- package/build/dev.cjs +146 -142
- package/build/dev.js +2 -2
- package/build/dev.jsx +2 -2
- package/build/index.cjs +146 -142
- package/build/index.js +2 -2
- package/build/index.jsx +2 -2
- package/package.json +6 -6
- package/src/Devtools.tsx +0 -3
- package/src/fonts.ts +0 -7
|
@@ -49,7 +49,7 @@ import {
|
|
|
49
49
|
use,
|
|
50
50
|
useContext,
|
|
51
51
|
useTransition
|
|
52
|
-
} from "../chunk/
|
|
52
|
+
} from "../chunk/4WPHY6P7.jsx";
|
|
53
53
|
|
|
54
54
|
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
55
55
|
var characterMap = {
|
|
@@ -885,37 +885,37 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
885
885
|
return memo;
|
|
886
886
|
}
|
|
887
887
|
|
|
888
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.
|
|
888
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.1/node_modules/solid-transition-group/dist/index.js
|
|
889
889
|
function createClassnames(props) {
|
|
890
890
|
return createMemo(() => {
|
|
891
891
|
const name = props.name || "s";
|
|
892
892
|
return {
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
893
|
+
enterActive: (props.enterActiveClass || name + "-enter-active").split(" "),
|
|
894
|
+
enter: (props.enterClass || name + "-enter").split(" "),
|
|
895
|
+
enterTo: (props.enterToClass || name + "-enter-to").split(" "),
|
|
896
|
+
exitActive: (props.exitActiveClass || name + "-exit-active").split(" "),
|
|
897
|
+
exit: (props.exitClass || name + "-exit").split(" "),
|
|
898
|
+
exitTo: (props.exitToClass || name + "-exit-to").split(" "),
|
|
899
|
+
move: (props.moveClass || name + "-move").split(" ")
|
|
900
900
|
};
|
|
901
901
|
});
|
|
902
902
|
}
|
|
903
903
|
function nextFrame(fn) {
|
|
904
904
|
requestAnimationFrame(() => requestAnimationFrame(fn));
|
|
905
905
|
}
|
|
906
|
-
function enterTransition(
|
|
907
|
-
const {
|
|
906
|
+
function enterTransition(classes, events, el, done) {
|
|
907
|
+
const { onBeforeEnter, onEnter, onAfterEnter } = events;
|
|
908
908
|
onBeforeEnter?.(el);
|
|
909
|
-
el.classList.add(...
|
|
910
|
-
el.classList.add(...
|
|
909
|
+
el.classList.add(...classes.enter);
|
|
910
|
+
el.classList.add(...classes.enterActive);
|
|
911
911
|
queueMicrotask(() => {
|
|
912
912
|
if (!el.parentNode)
|
|
913
913
|
return done?.();
|
|
914
914
|
onEnter?.(el, () => endTransition());
|
|
915
915
|
});
|
|
916
916
|
nextFrame(() => {
|
|
917
|
-
el.classList.remove(...
|
|
918
|
-
el.classList.add(...
|
|
917
|
+
el.classList.remove(...classes.enter);
|
|
918
|
+
el.classList.add(...classes.enterTo);
|
|
919
919
|
if (!onEnter || onEnter.length < 2) {
|
|
920
920
|
el.addEventListener("transitionend", endTransition);
|
|
921
921
|
el.addEventListener("animationend", endTransition);
|
|
@@ -926,23 +926,23 @@ function enterTransition(classnames, events, el, done) {
|
|
|
926
926
|
done?.();
|
|
927
927
|
el.removeEventListener("transitionend", endTransition);
|
|
928
928
|
el.removeEventListener("animationend", endTransition);
|
|
929
|
-
el.classList.remove(...
|
|
930
|
-
el.classList.remove(...
|
|
929
|
+
el.classList.remove(...classes.enterActive);
|
|
930
|
+
el.classList.remove(...classes.enterTo);
|
|
931
931
|
onAfterEnter?.(el);
|
|
932
932
|
}
|
|
933
933
|
}
|
|
934
934
|
}
|
|
935
|
-
function exitTransition(
|
|
936
|
-
const {
|
|
935
|
+
function exitTransition(classes, events, el, done) {
|
|
936
|
+
const { onBeforeExit, onExit, onAfterExit } = events;
|
|
937
937
|
if (!el.parentNode)
|
|
938
938
|
return done?.();
|
|
939
939
|
onBeforeExit?.(el);
|
|
940
|
-
el.classList.add(...
|
|
941
|
-
el.classList.add(...
|
|
940
|
+
el.classList.add(...classes.exit);
|
|
941
|
+
el.classList.add(...classes.exitActive);
|
|
942
942
|
onExit?.(el, () => endTransition());
|
|
943
943
|
nextFrame(() => {
|
|
944
|
-
el.classList.remove(...
|
|
945
|
-
el.classList.add(...
|
|
944
|
+
el.classList.remove(...classes.exit);
|
|
945
|
+
el.classList.add(...classes.exitTo);
|
|
946
946
|
if (!onExit || onExit.length < 2) {
|
|
947
947
|
el.addEventListener("transitionend", endTransition);
|
|
948
948
|
el.addEventListener("animationend", endTransition);
|
|
@@ -953,8 +953,8 @@ function exitTransition(classnames, events, el, done) {
|
|
|
953
953
|
done?.();
|
|
954
954
|
el.removeEventListener("transitionend", endTransition);
|
|
955
955
|
el.removeEventListener("animationend", endTransition);
|
|
956
|
-
el.classList.remove(...
|
|
957
|
-
el.classList.remove(...
|
|
956
|
+
el.classList.remove(...classes.exitActive);
|
|
957
|
+
el.classList.remove(...classes.exitTo);
|
|
958
958
|
onAfterExit?.(el);
|
|
959
959
|
}
|
|
960
960
|
}
|
|
@@ -992,11 +992,11 @@ var TransitionGroup = (props) => {
|
|
|
992
992
|
let endTransition2 = function(e2) {
|
|
993
993
|
if (e2.target === el || /transform$/.test(e2.propertyName)) {
|
|
994
994
|
el.removeEventListener("transitionend", endTransition2);
|
|
995
|
-
el.classList.remove(...classes.
|
|
995
|
+
el.classList.remove(...classes.move);
|
|
996
996
|
}
|
|
997
997
|
};
|
|
998
998
|
var endTransition = endTransition2;
|
|
999
|
-
el.classList.add(...classes.
|
|
999
|
+
el.classList.add(...classes.move);
|
|
1000
1000
|
el.style.transform = el.style.transitionDuration = "";
|
|
1001
1001
|
el.addEventListener("transitionend", endTransition2);
|
|
1002
1002
|
}
|
|
@@ -1345,7 +1345,7 @@ function createEventListener(targets, type, handler, options) {
|
|
|
1345
1345
|
createRenderEffect(attachListeners);
|
|
1346
1346
|
}
|
|
1347
1347
|
|
|
1348
|
-
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.
|
|
1348
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.1/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
1349
1349
|
function makeResizeObserver(callback, options) {
|
|
1350
1350
|
if (isServer) {
|
|
1351
1351
|
return { observe: noop2, unobserve: noop2 };
|
|
@@ -3577,7 +3577,7 @@ var computePosition2 = (reference, floating, options) => {
|
|
|
3577
3577
|
});
|
|
3578
3578
|
};
|
|
3579
3579
|
|
|
3580
|
-
// ../../node_modules/.pnpm/@kobalte+core@0.11.
|
|
3580
|
+
// ../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.1/node_modules/@kobalte/core/dist/esm/index.js
|
|
3581
3581
|
var ColorModeContext = createContext();
|
|
3582
3582
|
var COLOR_MODE_STORAGE_KEY = "kb-color-mode";
|
|
3583
3583
|
function createLocalStorageManager(key) {
|
|
@@ -6228,7 +6228,7 @@ function usePopperContext() {
|
|
|
6228
6228
|
}
|
|
6229
6229
|
return context;
|
|
6230
6230
|
}
|
|
6231
|
-
var _tmpl$$
|
|
6231
|
+
var _tmpl$$f = /* @__PURE__ */ template(`<svg display="block" viewBox="0 0 30 30"><g><path fill="none" d="M23,27.8c1.1,1.2,3.4,2.2,5,2.2h2H0h2c1.7,0,3.9-1,5-2.2l6.6-7.2c0.7-0.8,2-0.8,2.7,0L23,27.8L23,27.8z"></path><path stroke="none" d="M23,27.8c1.1,1.2,3.4,2.2,5,2.2h2H0h2c1.7,0,3.9-1,5-2.2l6.6-7.2c0.7-0.8,2-0.8,2.7,0L23,27.8L23,27.8z">`);
|
|
6232
6232
|
var DEFAULT_SIZE = 30;
|
|
6233
6233
|
var HALF_DEFAULT_SIZE = DEFAULT_SIZE / 2;
|
|
6234
6234
|
var ROTATION_DEG = {
|
|
@@ -6277,7 +6277,7 @@ function PopperArrow(props) {
|
|
|
6277
6277
|
}
|
|
6278
6278
|
}, others, {
|
|
6279
6279
|
get children() {
|
|
6280
|
-
const _el$ = _tmpl$$
|
|
6280
|
+
const _el$ = _tmpl$$f(), _el$2 = _el$.firstChild, _el$3 = _el$2.firstChild;
|
|
6281
6281
|
_el$3.nextSibling;
|
|
6282
6282
|
createRenderEffect(() => setAttribute(_el$2, "transform", rotate()));
|
|
6283
6283
|
return _el$;
|
|
@@ -8061,7 +8061,7 @@ function DropdownMenuRoot(props) {
|
|
|
8061
8061
|
}, props);
|
|
8062
8062
|
return createComponent(MenuRoot, props);
|
|
8063
8063
|
}
|
|
8064
|
-
var index$
|
|
8064
|
+
var index$f = /* @__PURE__ */ Object.freeze({
|
|
8065
8065
|
__proto__: null,
|
|
8066
8066
|
Arrow: PopperArrow,
|
|
8067
8067
|
CheckboxItem: MenuCheckboxItem,
|
|
@@ -8218,7 +8218,7 @@ function RadioGroupItemIndicator(props) {
|
|
|
8218
8218
|
}
|
|
8219
8219
|
});
|
|
8220
8220
|
}
|
|
8221
|
-
var _tmpl$$
|
|
8221
|
+
var _tmpl$$7 = /* @__PURE__ */ template(`<input type="radio">`);
|
|
8222
8222
|
function RadioGroupItemInput(props) {
|
|
8223
8223
|
const formControlContext = useFormControlContext();
|
|
8224
8224
|
const radioGroupContext = useRadioGroupContext();
|
|
@@ -8255,7 +8255,7 @@ function RadioGroupItemInput(props) {
|
|
|
8255
8255
|
};
|
|
8256
8256
|
createEffect(() => onCleanup(radioContext.registerInput(others.id)));
|
|
8257
8257
|
return (() => {
|
|
8258
|
-
const _el$ = _tmpl$$
|
|
8258
|
+
const _el$ = _tmpl$$7();
|
|
8259
8259
|
_el$.addEventListener("blur", onBlur);
|
|
8260
8260
|
_el$.addEventListener("focus", onFocus);
|
|
8261
8261
|
_el$.addEventListener("change", onChange);
|
|
@@ -8296,7 +8296,7 @@ function RadioGroupItemInput(props) {
|
|
|
8296
8296
|
return _el$;
|
|
8297
8297
|
})();
|
|
8298
8298
|
}
|
|
8299
|
-
var _tmpl$$
|
|
8299
|
+
var _tmpl$$6 = /* @__PURE__ */ template(`<label>`);
|
|
8300
8300
|
function RadioGroupItemLabel(props) {
|
|
8301
8301
|
const context = useRadioGroupItemContext();
|
|
8302
8302
|
props = mergeDefaultProps({
|
|
@@ -8304,7 +8304,7 @@ function RadioGroupItemLabel(props) {
|
|
|
8304
8304
|
}, props);
|
|
8305
8305
|
createEffect(() => onCleanup(context.registerLabel(props.id)));
|
|
8306
8306
|
return (() => {
|
|
8307
|
-
const _el$ = _tmpl$$
|
|
8307
|
+
const _el$ = _tmpl$$6();
|
|
8308
8308
|
spread(_el$, mergeProps({
|
|
8309
8309
|
get ["for"]() {
|
|
8310
8310
|
return context.inputId();
|
|
@@ -8401,7 +8401,7 @@ function RadioGroupRoot(props) {
|
|
|
8401
8401
|
}
|
|
8402
8402
|
});
|
|
8403
8403
|
}
|
|
8404
|
-
var index$
|
|
8404
|
+
var index$9 = /* @__PURE__ */ Object.freeze({
|
|
8405
8405
|
__proto__: null,
|
|
8406
8406
|
Description: FormControlDescription,
|
|
8407
8407
|
ErrorMessage: FormControlErrorMessage,
|
|
@@ -8415,6 +8415,8 @@ var index$7 = /* @__PURE__ */ Object.freeze({
|
|
|
8415
8415
|
Root: RadioGroupRoot
|
|
8416
8416
|
});
|
|
8417
8417
|
var SelectContext = createContext();
|
|
8418
|
+
var SliderContext = createContext();
|
|
8419
|
+
var ThumbContext = createContext();
|
|
8418
8420
|
var SwitchContext = createContext();
|
|
8419
8421
|
var TabsContext = createContext();
|
|
8420
8422
|
var TextFieldContext = createContext();
|
|
@@ -10045,7 +10047,6 @@ var CopyButton = (props) => {
|
|
|
10045
10047
|
}, 1500);
|
|
10046
10048
|
},
|
|
10047
10049
|
(err) => {
|
|
10048
|
-
console.error("Failed to copy: ", err);
|
|
10049
10050
|
setCopyState("ErrorCopy");
|
|
10050
10051
|
setTimeout(() => {
|
|
10051
10052
|
setCopyState("NoCopy");
|
|
@@ -10423,14 +10424,6 @@ var stylesFactory = (theme) => {
|
|
|
10423
10424
|
var lightStyles = stylesFactory("light");
|
|
10424
10425
|
var darkStyles = stylesFactory("dark");
|
|
10425
10426
|
|
|
10426
|
-
// src/fonts.ts
|
|
10427
|
-
var loadFonts = () => {
|
|
10428
|
-
const link = document.createElement("link");
|
|
10429
|
-
link.href = "https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto&display=swap";
|
|
10430
|
-
link.rel = "stylesheet";
|
|
10431
|
-
document.head.appendChild(link);
|
|
10432
|
-
};
|
|
10433
|
-
|
|
10434
10427
|
// src/Devtools.tsx
|
|
10435
10428
|
var firstBreakpoint = 1024;
|
|
10436
10429
|
var secondBreakpoint = 796;
|
|
@@ -10466,7 +10459,6 @@ var DevtoolsComponent = (props) => {
|
|
|
10466
10459
|
};
|
|
10467
10460
|
var Devtools_default = DevtoolsComponent;
|
|
10468
10461
|
var Devtools = (props) => {
|
|
10469
|
-
loadFonts();
|
|
10470
10462
|
const theme = useTheme();
|
|
10471
10463
|
const styles = createMemo(() => {
|
|
10472
10464
|
return theme() === "dark" ? darkStyles2 : lightStyles2;
|
|
@@ -10823,7 +10815,7 @@ var ContentView = (props) => {
|
|
|
10823
10815
|
{useQueryDevtoolsContext().version}
|
|
10824
10816
|
</span>
|
|
10825
10817
|
</button>
|
|
10826
|
-
<index$
|
|
10818
|
+
<index$9.Root
|
|
10827
10819
|
class={clsx(styles().viewToggle)}
|
|
10828
10820
|
value={selectedView()}
|
|
10829
10821
|
onChange={(value) => {
|
|
@@ -10832,17 +10824,17 @@ var ContentView = (props) => {
|
|
|
10832
10824
|
setSelectedMutationId(null);
|
|
10833
10825
|
}}
|
|
10834
10826
|
>
|
|
10835
|
-
<index$
|
|
10836
|
-
<index$
|
|
10837
|
-
<index$
|
|
10838
|
-
<index$
|
|
10839
|
-
</index$
|
|
10840
|
-
<index$
|
|
10841
|
-
<index$
|
|
10842
|
-
<index$
|
|
10843
|
-
<index$
|
|
10844
|
-
</index$
|
|
10845
|
-
</index$
|
|
10827
|
+
<index$9.Item value="queries" class="tsqd-radio-toggle">
|
|
10828
|
+
<index$9.ItemInput />
|
|
10829
|
+
<index$9.ItemControl><index$9.ItemIndicator /></index$9.ItemControl>
|
|
10830
|
+
<index$9.ItemLabel title="Toggle Queries View">Queries</index$9.ItemLabel>
|
|
10831
|
+
</index$9.Item>
|
|
10832
|
+
<index$9.Item value="mutations" class="tsqd-radio-toggle">
|
|
10833
|
+
<index$9.ItemInput />
|
|
10834
|
+
<index$9.ItemControl><index$9.ItemIndicator /></index$9.ItemControl>
|
|
10835
|
+
<index$9.ItemLabel title="Toggle Mutations View">Mutations</index$9.ItemLabel>
|
|
10836
|
+
</index$9.Item>
|
|
10837
|
+
</index$9.Root>
|
|
10846
10838
|
</div>
|
|
10847
10839
|
<Show when={selectedView() === "queries"}><QueryStatusCount /></Show>
|
|
10848
10840
|
<Show when={selectedView() === "mutations"}><MutationStatusCount /></Show>
|
|
@@ -10963,17 +10955,17 @@ var ContentView = (props) => {
|
|
|
10963
10955
|
aria-pressed={offline()}
|
|
10964
10956
|
title={`${offline() ? "Unset offline mocking behavior" : "Mock offline behavior"}`}
|
|
10965
10957
|
>{offline() ? <Offline /> : <Wifi />}</button>
|
|
10966
|
-
<index$
|
|
10967
|
-
<index$
|
|
10958
|
+
<index$f.Root gutter={4}>
|
|
10959
|
+
<index$f.Trigger
|
|
10968
10960
|
class={clsx(
|
|
10969
10961
|
styles().actionsBtn,
|
|
10970
10962
|
"tsqd-actions-btn",
|
|
10971
10963
|
"tsqd-action-settings"
|
|
10972
10964
|
)}
|
|
10973
|
-
><Settings /></index$
|
|
10974
|
-
<index$
|
|
10965
|
+
><Settings /></index$f.Trigger>
|
|
10966
|
+
<index$f.Portal
|
|
10975
10967
|
ref={(el) => setComputedVariables(el)}
|
|
10976
|
-
><index$
|
|
10968
|
+
><index$f.Content
|
|
10977
10969
|
class={clsx(styles().settingsMenu, "tsqd-settings-menu")}
|
|
10978
10970
|
>
|
|
10979
10971
|
<div
|
|
@@ -10982,8 +10974,8 @@ var ContentView = (props) => {
|
|
|
10982
10974
|
"tsqd-settings-menu-header"
|
|
10983
10975
|
)}
|
|
10984
10976
|
>Settings</div>
|
|
10985
|
-
<index$
|
|
10986
|
-
<index$
|
|
10977
|
+
<index$f.Sub overlap gutter={8} shift={-4}>
|
|
10978
|
+
<index$f.SubTrigger
|
|
10987
10979
|
class={clsx(
|
|
10988
10980
|
styles().settingsSubTrigger,
|
|
10989
10981
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -10992,16 +10984,16 @@ var ContentView = (props) => {
|
|
|
10992
10984
|
>
|
|
10993
10985
|
<span>Position</span>
|
|
10994
10986
|
<ChevronDown />
|
|
10995
|
-
</index$
|
|
10996
|
-
<index$
|
|
10987
|
+
</index$f.SubTrigger>
|
|
10988
|
+
<index$f.Portal
|
|
10997
10989
|
ref={(el) => setComputedVariables(el)}
|
|
10998
|
-
><index$
|
|
10990
|
+
><index$f.SubContent
|
|
10999
10991
|
class={clsx(
|
|
11000
10992
|
styles().settingsMenu,
|
|
11001
10993
|
"tsqd-settings-submenu"
|
|
11002
10994
|
)}
|
|
11003
10995
|
>
|
|
11004
|
-
<index$
|
|
10996
|
+
<index$f.Item
|
|
11005
10997
|
onSelect={() => {
|
|
11006
10998
|
setDevtoolsPosition("top");
|
|
11007
10999
|
}}
|
|
@@ -11014,8 +11006,8 @@ var ContentView = (props) => {
|
|
|
11014
11006
|
>
|
|
11015
11007
|
<span>Top</span>
|
|
11016
11008
|
<ArrowUp />
|
|
11017
|
-
</index$
|
|
11018
|
-
<index$
|
|
11009
|
+
</index$f.Item>
|
|
11010
|
+
<index$f.Item
|
|
11019
11011
|
onSelect={() => {
|
|
11020
11012
|
setDevtoolsPosition("bottom");
|
|
11021
11013
|
}}
|
|
@@ -11028,8 +11020,8 @@ var ContentView = (props) => {
|
|
|
11028
11020
|
>
|
|
11029
11021
|
<span>Bottom</span>
|
|
11030
11022
|
<ArrowDown />
|
|
11031
|
-
</index$
|
|
11032
|
-
<index$
|
|
11023
|
+
</index$f.Item>
|
|
11024
|
+
<index$f.Item
|
|
11033
11025
|
onSelect={() => {
|
|
11034
11026
|
setDevtoolsPosition("left");
|
|
11035
11027
|
}}
|
|
@@ -11042,8 +11034,8 @@ var ContentView = (props) => {
|
|
|
11042
11034
|
>
|
|
11043
11035
|
<span>Left</span>
|
|
11044
11036
|
<ArrowLeft />
|
|
11045
|
-
</index$
|
|
11046
|
-
<index$
|
|
11037
|
+
</index$f.Item>
|
|
11038
|
+
<index$f.Item
|
|
11047
11039
|
onSelect={() => {
|
|
11048
11040
|
setDevtoolsPosition("right");
|
|
11049
11041
|
}}
|
|
@@ -11056,11 +11048,11 @@ var ContentView = (props) => {
|
|
|
11056
11048
|
>
|
|
11057
11049
|
<span>Right</span>
|
|
11058
11050
|
<ArrowRight />
|
|
11059
|
-
</index$
|
|
11060
|
-
</index$
|
|
11061
|
-
</index$
|
|
11062
|
-
<index$
|
|
11063
|
-
<index$
|
|
11051
|
+
</index$f.Item>
|
|
11052
|
+
</index$f.SubContent></index$f.Portal>
|
|
11053
|
+
</index$f.Sub>
|
|
11054
|
+
<index$f.Sub overlap gutter={8} shift={-4}>
|
|
11055
|
+
<index$f.SubTrigger
|
|
11064
11056
|
class={clsx(
|
|
11065
11057
|
styles().settingsSubTrigger,
|
|
11066
11058
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -11069,16 +11061,16 @@ var ContentView = (props) => {
|
|
|
11069
11061
|
>
|
|
11070
11062
|
<span>Theme</span>
|
|
11071
11063
|
<ChevronDown />
|
|
11072
|
-
</index$
|
|
11073
|
-
<index$
|
|
11064
|
+
</index$f.SubTrigger>
|
|
11065
|
+
<index$f.Portal
|
|
11074
11066
|
ref={(el) => setComputedVariables(el)}
|
|
11075
|
-
><index$
|
|
11067
|
+
><index$f.SubContent
|
|
11076
11068
|
class={clsx(
|
|
11077
11069
|
styles().settingsMenu,
|
|
11078
11070
|
"tsqd-settings-submenu"
|
|
11079
11071
|
)}
|
|
11080
11072
|
>
|
|
11081
|
-
<index$
|
|
11073
|
+
<index$f.Item
|
|
11082
11074
|
onSelect={() => {
|
|
11083
11075
|
props.setLocalStore("theme_preference", "light");
|
|
11084
11076
|
}}
|
|
@@ -11092,8 +11084,8 @@ var ContentView = (props) => {
|
|
|
11092
11084
|
>
|
|
11093
11085
|
<span>Light</span>
|
|
11094
11086
|
<Sun />
|
|
11095
|
-
</index$
|
|
11096
|
-
<index$
|
|
11087
|
+
</index$f.Item>
|
|
11088
|
+
<index$f.Item
|
|
11097
11089
|
onSelect={() => {
|
|
11098
11090
|
props.setLocalStore("theme_preference", "dark");
|
|
11099
11091
|
}}
|
|
@@ -11107,8 +11099,8 @@ var ContentView = (props) => {
|
|
|
11107
11099
|
>
|
|
11108
11100
|
<span>Dark</span>
|
|
11109
11101
|
<Moon />
|
|
11110
|
-
</index$
|
|
11111
|
-
<index$
|
|
11102
|
+
</index$f.Item>
|
|
11103
|
+
<index$f.Item
|
|
11112
11104
|
onSelect={() => {
|
|
11113
11105
|
props.setLocalStore("theme_preference", "system");
|
|
11114
11106
|
}}
|
|
@@ -11122,11 +11114,11 @@ var ContentView = (props) => {
|
|
|
11122
11114
|
>
|
|
11123
11115
|
<span>System</span>
|
|
11124
11116
|
<Monitor />
|
|
11125
|
-
</index$
|
|
11126
|
-
</index$
|
|
11127
|
-
</index$
|
|
11128
|
-
</index$
|
|
11129
|
-
</index$
|
|
11117
|
+
</index$f.Item>
|
|
11118
|
+
</index$f.SubContent></index$f.Portal>
|
|
11119
|
+
</index$f.Sub>
|
|
11120
|
+
</index$f.Content></index$f.Portal>
|
|
11121
|
+
</index$f.Root>
|
|
11130
11122
|
</div>
|
|
11131
11123
|
</div>
|
|
11132
11124
|
<Show when={selectedView() === "queries"}><div
|
|
@@ -13451,6 +13443,15 @@ export {
|
|
|
13451
13443
|
* https://github.com/ariakit/ariakit/blob/f2a96973de523d67e41eec983263936c489ef3e2/packages/ariakit/src/hovercard/__utils/debug-polygon.ts
|
|
13452
13444
|
*)
|
|
13453
13445
|
|
|
13446
|
+
@kobalte/core/dist/esm/index.js:
|
|
13447
|
+
(*!
|
|
13448
|
+
* Portions of this file are based on code from react-spectrum.
|
|
13449
|
+
* Apache License Version 2.0, Copyright 2020 Adobe.
|
|
13450
|
+
*
|
|
13451
|
+
* Credits to the React Spectrum team:
|
|
13452
|
+
* https://github.com/adobe/react-spectrum/blob/1ddcde7b4fef9af7f08e11bb78d71fe60bbcc64b/packages/@react-stately/slider/src/useSliderState.ts
|
|
13453
|
+
*)
|
|
13454
|
+
|
|
13454
13455
|
@kobalte/core/dist/esm/index.js:
|
|
13455
13456
|
(*!
|
|
13456
13457
|
* Portions of this file are based on code from react-spectrum.
|