@tanstack/query-devtools 5.14.5 → 5.14.7
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/{47NOZC6N.js → 2NWMMIDL.js} +76 -65
- package/build/Devtools/{SEFWYCLN.jsx → BBKE7EDU.jsx} +95 -84
- package/build/Devtools/{QLPNQ352.jsx → RB22CS4R.jsx} +95 -84
- package/build/Devtools/{TB2FSY4I.js → WVILHGEF.js} +76 -65
- 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 -127
- package/build/dev.js +2 -2
- package/build/dev.jsx +2 -2
- package/build/index.cjs +146 -127
- package/build/index.js +2 -2
- package/build/index.jsx +2 -2
- package/package.json +6 -6
|
@@ -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();
|
|
@@ -10814,7 +10816,7 @@ var ContentView = (props) => {
|
|
|
10814
10816
|
{useQueryDevtoolsContext().version}
|
|
10815
10817
|
</span>
|
|
10816
10818
|
</button>
|
|
10817
|
-
<index$
|
|
10819
|
+
<index$9.Root
|
|
10818
10820
|
class={clsx(styles().viewToggle)}
|
|
10819
10821
|
value={selectedView()}
|
|
10820
10822
|
onChange={(value) => {
|
|
@@ -10823,17 +10825,17 @@ var ContentView = (props) => {
|
|
|
10823
10825
|
setSelectedMutationId(null);
|
|
10824
10826
|
}}
|
|
10825
10827
|
>
|
|
10826
|
-
<index$
|
|
10827
|
-
<index$
|
|
10828
|
-
<index$
|
|
10829
|
-
<index$
|
|
10830
|
-
</index$
|
|
10831
|
-
<index$
|
|
10832
|
-
<index$
|
|
10833
|
-
<index$
|
|
10834
|
-
<index$
|
|
10835
|
-
</index$
|
|
10836
|
-
</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>
|
|
10837
10839
|
</div>
|
|
10838
10840
|
<Show when={selectedView() === "queries"}><QueryStatusCount /></Show>
|
|
10839
10841
|
<Show when={selectedView() === "mutations"}><MutationStatusCount /></Show>
|
|
@@ -10954,17 +10956,17 @@ var ContentView = (props) => {
|
|
|
10954
10956
|
aria-pressed={offline()}
|
|
10955
10957
|
title={`${offline() ? "Unset offline mocking behavior" : "Mock offline behavior"}`}
|
|
10956
10958
|
>{offline() ? <Offline /> : <Wifi />}</button>
|
|
10957
|
-
<index$
|
|
10958
|
-
<index$
|
|
10959
|
+
<index$f.Root gutter={4}>
|
|
10960
|
+
<index$f.Trigger
|
|
10959
10961
|
class={clsx(
|
|
10960
10962
|
styles().actionsBtn,
|
|
10961
10963
|
"tsqd-actions-btn",
|
|
10962
10964
|
"tsqd-action-settings"
|
|
10963
10965
|
)}
|
|
10964
|
-
><Settings /></index$
|
|
10965
|
-
<index$
|
|
10966
|
+
><Settings /></index$f.Trigger>
|
|
10967
|
+
<index$f.Portal
|
|
10966
10968
|
ref={(el) => setComputedVariables(el)}
|
|
10967
|
-
><index$
|
|
10969
|
+
><index$f.Content
|
|
10968
10970
|
class={clsx(styles().settingsMenu, "tsqd-settings-menu")}
|
|
10969
10971
|
>
|
|
10970
10972
|
<div
|
|
@@ -10973,8 +10975,8 @@ var ContentView = (props) => {
|
|
|
10973
10975
|
"tsqd-settings-menu-header"
|
|
10974
10976
|
)}
|
|
10975
10977
|
>Settings</div>
|
|
10976
|
-
<index$
|
|
10977
|
-
<index$
|
|
10978
|
+
<index$f.Sub overlap gutter={8} shift={-4}>
|
|
10979
|
+
<index$f.SubTrigger
|
|
10978
10980
|
class={clsx(
|
|
10979
10981
|
styles().settingsSubTrigger,
|
|
10980
10982
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -10983,16 +10985,16 @@ var ContentView = (props) => {
|
|
|
10983
10985
|
>
|
|
10984
10986
|
<span>Position</span>
|
|
10985
10987
|
<ChevronDown />
|
|
10986
|
-
</index$
|
|
10987
|
-
<index$
|
|
10988
|
+
</index$f.SubTrigger>
|
|
10989
|
+
<index$f.Portal
|
|
10988
10990
|
ref={(el) => setComputedVariables(el)}
|
|
10989
|
-
><index$
|
|
10991
|
+
><index$f.SubContent
|
|
10990
10992
|
class={clsx(
|
|
10991
10993
|
styles().settingsMenu,
|
|
10992
10994
|
"tsqd-settings-submenu"
|
|
10993
10995
|
)}
|
|
10994
10996
|
>
|
|
10995
|
-
<index$
|
|
10997
|
+
<index$f.Item
|
|
10996
10998
|
onSelect={() => {
|
|
10997
10999
|
setDevtoolsPosition("top");
|
|
10998
11000
|
}}
|
|
@@ -11005,8 +11007,8 @@ var ContentView = (props) => {
|
|
|
11005
11007
|
>
|
|
11006
11008
|
<span>Top</span>
|
|
11007
11009
|
<ArrowUp />
|
|
11008
|
-
</index$
|
|
11009
|
-
<index$
|
|
11010
|
+
</index$f.Item>
|
|
11011
|
+
<index$f.Item
|
|
11010
11012
|
onSelect={() => {
|
|
11011
11013
|
setDevtoolsPosition("bottom");
|
|
11012
11014
|
}}
|
|
@@ -11019,8 +11021,8 @@ var ContentView = (props) => {
|
|
|
11019
11021
|
>
|
|
11020
11022
|
<span>Bottom</span>
|
|
11021
11023
|
<ArrowDown />
|
|
11022
|
-
</index$
|
|
11023
|
-
<index$
|
|
11024
|
+
</index$f.Item>
|
|
11025
|
+
<index$f.Item
|
|
11024
11026
|
onSelect={() => {
|
|
11025
11027
|
setDevtoolsPosition("left");
|
|
11026
11028
|
}}
|
|
@@ -11033,8 +11035,8 @@ var ContentView = (props) => {
|
|
|
11033
11035
|
>
|
|
11034
11036
|
<span>Left</span>
|
|
11035
11037
|
<ArrowLeft />
|
|
11036
|
-
</index$
|
|
11037
|
-
<index$
|
|
11038
|
+
</index$f.Item>
|
|
11039
|
+
<index$f.Item
|
|
11038
11040
|
onSelect={() => {
|
|
11039
11041
|
setDevtoolsPosition("right");
|
|
11040
11042
|
}}
|
|
@@ -11047,11 +11049,11 @@ var ContentView = (props) => {
|
|
|
11047
11049
|
>
|
|
11048
11050
|
<span>Right</span>
|
|
11049
11051
|
<ArrowRight />
|
|
11050
|
-
</index$
|
|
11051
|
-
</index$
|
|
11052
|
-
</index$
|
|
11053
|
-
<index$
|
|
11054
|
-
<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
|
|
11055
11057
|
class={clsx(
|
|
11056
11058
|
styles().settingsSubTrigger,
|
|
11057
11059
|
"tsqd-settings-menu-sub-trigger",
|
|
@@ -11060,16 +11062,16 @@ var ContentView = (props) => {
|
|
|
11060
11062
|
>
|
|
11061
11063
|
<span>Theme</span>
|
|
11062
11064
|
<ChevronDown />
|
|
11063
|
-
</index$
|
|
11064
|
-
<index$
|
|
11065
|
+
</index$f.SubTrigger>
|
|
11066
|
+
<index$f.Portal
|
|
11065
11067
|
ref={(el) => setComputedVariables(el)}
|
|
11066
|
-
><index$
|
|
11068
|
+
><index$f.SubContent
|
|
11067
11069
|
class={clsx(
|
|
11068
11070
|
styles().settingsMenu,
|
|
11069
11071
|
"tsqd-settings-submenu"
|
|
11070
11072
|
)}
|
|
11071
11073
|
>
|
|
11072
|
-
<index$
|
|
11074
|
+
<index$f.Item
|
|
11073
11075
|
onSelect={() => {
|
|
11074
11076
|
props.setLocalStore("theme_preference", "light");
|
|
11075
11077
|
}}
|
|
@@ -11083,8 +11085,8 @@ var ContentView = (props) => {
|
|
|
11083
11085
|
>
|
|
11084
11086
|
<span>Light</span>
|
|
11085
11087
|
<Sun />
|
|
11086
|
-
</index$
|
|
11087
|
-
<index$
|
|
11088
|
+
</index$f.Item>
|
|
11089
|
+
<index$f.Item
|
|
11088
11090
|
onSelect={() => {
|
|
11089
11091
|
props.setLocalStore("theme_preference", "dark");
|
|
11090
11092
|
}}
|
|
@@ -11098,8 +11100,8 @@ var ContentView = (props) => {
|
|
|
11098
11100
|
>
|
|
11099
11101
|
<span>Dark</span>
|
|
11100
11102
|
<Moon />
|
|
11101
|
-
</index$
|
|
11102
|
-
<index$
|
|
11103
|
+
</index$f.Item>
|
|
11104
|
+
<index$f.Item
|
|
11103
11105
|
onSelect={() => {
|
|
11104
11106
|
props.setLocalStore("theme_preference", "system");
|
|
11105
11107
|
}}
|
|
@@ -11113,11 +11115,11 @@ var ContentView = (props) => {
|
|
|
11113
11115
|
>
|
|
11114
11116
|
<span>System</span>
|
|
11115
11117
|
<Monitor />
|
|
11116
|
-
</index$
|
|
11117
|
-
</index$
|
|
11118
|
-
</index$
|
|
11119
|
-
</index$
|
|
11120
|
-
</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>
|
|
11121
11123
|
</div>
|
|
11122
11124
|
</div>
|
|
11123
11125
|
<Show when={selectedView() === "queries"}><div
|
|
@@ -13442,6 +13444,15 @@ export {
|
|
|
13442
13444
|
* https://github.com/ariakit/ariakit/blob/f2a96973de523d67e41eec983263936c489ef3e2/packages/ariakit/src/hovercard/__utils/debug-polygon.ts
|
|
13443
13445
|
*)
|
|
13444
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
|
+
|
|
13445
13456
|
@kobalte/core/dist/esm/index.js:
|
|
13446
13457
|
(*!
|
|
13447
13458
|
* Portions of this file are based on code from react-spectrum.
|