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