@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/OVQD3YQS.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,6 +10047,7 @@ var CopyButton = (props) => {
|
|
|
10045
10047
|
}, 1500);
|
|
10046
10048
|
},
|
|
10047
10049
|
(err) => {
|
|
10050
|
+
console.error("Failed to copy: ", err);
|
|
10048
10051
|
setCopyState("ErrorCopy");
|
|
10049
10052
|
setTimeout(() => {
|
|
10050
10053
|
setCopyState("NoCopy");
|
|
@@ -10422,14 +10425,6 @@ var stylesFactory = (theme) => {
|
|
|
10422
10425
|
var lightStyles = stylesFactory("light");
|
|
10423
10426
|
var darkStyles = stylesFactory("dark");
|
|
10424
10427
|
|
|
10425
|
-
// src/fonts.ts
|
|
10426
|
-
var loadFonts = () => {
|
|
10427
|
-
const link = document.createElement("link");
|
|
10428
|
-
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";
|
|
10429
|
-
link.rel = "stylesheet";
|
|
10430
|
-
document.head.appendChild(link);
|
|
10431
|
-
};
|
|
10432
|
-
|
|
10433
10428
|
// src/Devtools.tsx
|
|
10434
10429
|
var firstBreakpoint = 1024;
|
|
10435
10430
|
var secondBreakpoint = 796;
|
|
@@ -10465,7 +10460,6 @@ var DevtoolsComponent = (props) => {
|
|
|
10465
10460
|
};
|
|
10466
10461
|
var Devtools_default = DevtoolsComponent;
|
|
10467
10462
|
var Devtools = (props) => {
|
|
10468
|
-
loadFonts();
|
|
10469
10463
|
const theme = useTheme();
|
|
10470
10464
|
const styles = createMemo(() => {
|
|
10471
10465
|
return theme() === "dark" ? darkStyles2 : lightStyles2;
|
|
@@ -10822,7 +10816,7 @@ var ContentView = (props) => {
|
|
|
10822
10816
|
{useQueryDevtoolsContext().version}
|
|
10823
10817
|
</span>
|
|
10824
10818
|
</button>
|
|
10825
|
-
<index$
|
|
10819
|
+
<index$9.Root
|
|
10826
10820
|
class={clsx(styles().viewToggle)}
|
|
10827
10821
|
value={selectedView()}
|
|
10828
10822
|
onChange={(value) => {
|
|
@@ -10831,17 +10825,17 @@ var ContentView = (props) => {
|
|
|
10831
10825
|
setSelectedMutationId(null);
|
|
10832
10826
|
}}
|
|
10833
10827
|
>
|
|
10834
|
-
<index$
|
|
10835
|
-
<index$
|
|
10836
|
-
<index$
|
|
10837
|
-
<index$
|
|
10838
|
-
</index$
|
|
10839
|
-
<index$
|
|
10840
|
-
<index$
|
|
10841
|
-
<index$
|
|
10842
|
-
<index$
|
|
10843
|
-
</index$
|
|
10844
|
-
</index$
|
|
10828
|
+
<index$9.Item value="queries" class="tsqd-radio-toggle">
|
|
10829
|
+
<index$9.ItemInput />
|
|
10830
|
+
<index$9.ItemControl><index$9.ItemIndicator /></index$9.ItemControl>
|
|
10831
|
+
<index$9.ItemLabel title="Toggle Queries View">Queries</index$9.ItemLabel>
|
|
10832
|
+
</index$9.Item>
|
|
10833
|
+
<index$9.Item value="mutations" class="tsqd-radio-toggle">
|
|
10834
|
+
<index$9.ItemInput />
|
|
10835
|
+
<index$9.ItemControl><index$9.ItemIndicator /></index$9.ItemControl>
|
|
10836
|
+
<index$9.ItemLabel title="Toggle Mutations View">Mutations</index$9.ItemLabel>
|
|
10837
|
+
</index$9.Item>
|
|
10838
|
+
</index$9.Root>
|
|
10845
10839
|
</div>
|
|
10846
10840
|
<Show when={selectedView() === "queries"}><QueryStatusCount /></Show>
|
|
10847
10841
|
<Show when={selectedView() === "mutations"}><MutationStatusCount /></Show>
|
|
@@ -10962,17 +10956,17 @@ var ContentView = (props) => {
|
|
|
10962
10956
|
aria-pressed={offline()}
|
|
10963
10957
|
title={`${offline() ? "Unset offline mocking behavior" : "Mock offline behavior"}`}
|
|
10964
10958
|
>{offline() ? <Offline /> : <Wifi />}</button>
|
|
10965
|
-
<index$
|
|
10966
|
-
<index$
|
|
10959
|
+
<index$f.Root gutter={4}>
|
|
10960
|
+
<index$f.Trigger
|
|
10967
10961
|
class={clsx(
|
|
10968
10962
|
styles().actionsBtn,
|
|
10969
10963
|
"tsqd-actions-btn",
|
|
10970
10964
|
"tsqd-action-settings"
|
|
10971
10965
|
)}
|
|
10972
|
-
><Settings /></index$
|
|
10973
|
-
<index$
|
|
10966
|
+
><Settings /></index$f.Trigger>
|
|
10967
|
+
<index$f.Portal
|
|
10974
10968
|
ref={(el) => setComputedVariables(el)}
|
|
10975
|
-
><index$
|
|
10969
|
+
><index$f.Content
|
|
10976
10970
|
class={clsx(styles().settingsMenu, "tsqd-settings-menu")}
|
|
10977
10971
|
>
|
|
10978
10972
|
<div
|
|
@@ -10981,8 +10975,8 @@ var ContentView = (props) => {
|
|
|
10981
10975
|
"tsqd-settings-menu-header"
|
|
10982
10976
|
)}
|
|
10983
10977
|
>Settings</div>
|
|
10984
|
-
<index$
|
|
10985
|
-
<index$
|
|
10978
|
+
<index$f.Sub overlap gutter={8} shift={-4}>
|
|
10979
|
+
<index$f.SubTrigger
|
|
10986
10980
|
class={clsx(
|
|
10987
10981
|
styles().settingsSubTrigger,
|
|
10988
10982
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -10991,16 +10985,16 @@ var ContentView = (props) => {
|
|
|
10991
10985
|
>
|
|
10992
10986
|
<span>Position</span>
|
|
10993
10987
|
<ChevronDown />
|
|
10994
|
-
</index$
|
|
10995
|
-
<index$
|
|
10988
|
+
</index$f.SubTrigger>
|
|
10989
|
+
<index$f.Portal
|
|
10996
10990
|
ref={(el) => setComputedVariables(el)}
|
|
10997
|
-
><index$
|
|
10991
|
+
><index$f.SubContent
|
|
10998
10992
|
class={clsx(
|
|
10999
10993
|
styles().settingsMenu,
|
|
11000
10994
|
"tsqd-settings-submenu"
|
|
11001
10995
|
)}
|
|
11002
10996
|
>
|
|
11003
|
-
<index$
|
|
10997
|
+
<index$f.Item
|
|
11004
10998
|
onSelect={() => {
|
|
11005
10999
|
setDevtoolsPosition("top");
|
|
11006
11000
|
}}
|
|
@@ -11013,8 +11007,8 @@ var ContentView = (props) => {
|
|
|
11013
11007
|
>
|
|
11014
11008
|
<span>Top</span>
|
|
11015
11009
|
<ArrowUp />
|
|
11016
|
-
</index$
|
|
11017
|
-
<index$
|
|
11010
|
+
</index$f.Item>
|
|
11011
|
+
<index$f.Item
|
|
11018
11012
|
onSelect={() => {
|
|
11019
11013
|
setDevtoolsPosition("bottom");
|
|
11020
11014
|
}}
|
|
@@ -11027,8 +11021,8 @@ var ContentView = (props) => {
|
|
|
11027
11021
|
>
|
|
11028
11022
|
<span>Bottom</span>
|
|
11029
11023
|
<ArrowDown />
|
|
11030
|
-
</index$
|
|
11031
|
-
<index$
|
|
11024
|
+
</index$f.Item>
|
|
11025
|
+
<index$f.Item
|
|
11032
11026
|
onSelect={() => {
|
|
11033
11027
|
setDevtoolsPosition("left");
|
|
11034
11028
|
}}
|
|
@@ -11041,8 +11035,8 @@ var ContentView = (props) => {
|
|
|
11041
11035
|
>
|
|
11042
11036
|
<span>Left</span>
|
|
11043
11037
|
<ArrowLeft />
|
|
11044
|
-
</index$
|
|
11045
|
-
<index$
|
|
11038
|
+
</index$f.Item>
|
|
11039
|
+
<index$f.Item
|
|
11046
11040
|
onSelect={() => {
|
|
11047
11041
|
setDevtoolsPosition("right");
|
|
11048
11042
|
}}
|
|
@@ -11055,11 +11049,11 @@ var ContentView = (props) => {
|
|
|
11055
11049
|
>
|
|
11056
11050
|
<span>Right</span>
|
|
11057
11051
|
<ArrowRight />
|
|
11058
|
-
</index$
|
|
11059
|
-
</index$
|
|
11060
|
-
</index$
|
|
11061
|
-
<index$
|
|
11062
|
-
<index$
|
|
11052
|
+
</index$f.Item>
|
|
11053
|
+
</index$f.SubContent></index$f.Portal>
|
|
11054
|
+
</index$f.Sub>
|
|
11055
|
+
<index$f.Sub overlap gutter={8} shift={-4}>
|
|
11056
|
+
<index$f.SubTrigger
|
|
11063
11057
|
class={clsx(
|
|
11064
11058
|
styles().settingsSubTrigger,
|
|
11065
11059
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -11068,16 +11062,16 @@ var ContentView = (props) => {
|
|
|
11068
11062
|
>
|
|
11069
11063
|
<span>Theme</span>
|
|
11070
11064
|
<ChevronDown />
|
|
11071
|
-
</index$
|
|
11072
|
-
<index$
|
|
11065
|
+
</index$f.SubTrigger>
|
|
11066
|
+
<index$f.Portal
|
|
11073
11067
|
ref={(el) => setComputedVariables(el)}
|
|
11074
|
-
><index$
|
|
11068
|
+
><index$f.SubContent
|
|
11075
11069
|
class={clsx(
|
|
11076
11070
|
styles().settingsMenu,
|
|
11077
11071
|
"tsqd-settings-submenu"
|
|
11078
11072
|
)}
|
|
11079
11073
|
>
|
|
11080
|
-
<index$
|
|
11074
|
+
<index$f.Item
|
|
11081
11075
|
onSelect={() => {
|
|
11082
11076
|
props.setLocalStore("theme_preference", "light");
|
|
11083
11077
|
}}
|
|
@@ -11091,8 +11085,8 @@ var ContentView = (props) => {
|
|
|
11091
11085
|
>
|
|
11092
11086
|
<span>Light</span>
|
|
11093
11087
|
<Sun />
|
|
11094
|
-
</index$
|
|
11095
|
-
<index$
|
|
11088
|
+
</index$f.Item>
|
|
11089
|
+
<index$f.Item
|
|
11096
11090
|
onSelect={() => {
|
|
11097
11091
|
props.setLocalStore("theme_preference", "dark");
|
|
11098
11092
|
}}
|
|
@@ -11106,8 +11100,8 @@ var ContentView = (props) => {
|
|
|
11106
11100
|
>
|
|
11107
11101
|
<span>Dark</span>
|
|
11108
11102
|
<Moon />
|
|
11109
|
-
</index$
|
|
11110
|
-
<index$
|
|
11103
|
+
</index$f.Item>
|
|
11104
|
+
<index$f.Item
|
|
11111
11105
|
onSelect={() => {
|
|
11112
11106
|
props.setLocalStore("theme_preference", "system");
|
|
11113
11107
|
}}
|
|
@@ -11121,11 +11115,11 @@ var ContentView = (props) => {
|
|
|
11121
11115
|
>
|
|
11122
11116
|
<span>System</span>
|
|
11123
11117
|
<Monitor />
|
|
11124
|
-
</index$
|
|
11125
|
-
</index$
|
|
11126
|
-
</index$
|
|
11127
|
-
</index$
|
|
11128
|
-
</index$
|
|
11118
|
+
</index$f.Item>
|
|
11119
|
+
</index$f.SubContent></index$f.Portal>
|
|
11120
|
+
</index$f.Sub>
|
|
11121
|
+
</index$f.Content></index$f.Portal>
|
|
11122
|
+
</index$f.Root>
|
|
11129
11123
|
</div>
|
|
11130
11124
|
</div>
|
|
11131
11125
|
<Show when={selectedView() === "queries"}><div
|
|
@@ -13450,6 +13444,15 @@ export {
|
|
|
13450
13444
|
* https://github.com/ariakit/ariakit/blob/f2a96973de523d67e41eec983263936c489ef3e2/packages/ariakit/src/hovercard/__utils/debug-polygon.ts
|
|
13451
13445
|
*)
|
|
13452
13446
|
|
|
13447
|
+
@kobalte/core/dist/esm/index.js:
|
|
13448
|
+
(*!
|
|
13449
|
+
* Portions of this file are based on code from react-spectrum.
|
|
13450
|
+
* Apache License Version 2.0, Copyright 2020 Adobe.
|
|
13451
|
+
*
|
|
13452
|
+
* Credits to the React Spectrum team:
|
|
13453
|
+
* https://github.com/adobe/react-spectrum/blob/1ddcde7b4fef9af7f08e11bb78d71fe60bbcc64b/packages/@react-stately/slider/src/useSliderState.ts
|
|
13454
|
+
*)
|
|
13455
|
+
|
|
13453
13456
|
@kobalte/core/dist/esm/index.js:
|
|
13454
13457
|
(*!
|
|
13455
13458
|
* Portions of this file are based on code from react-spectrum.
|