@tanstack/query-devtools 5.0.0 → 5.0.3
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/{YSRICXZI.js → 3Y5CBXUA.js} +273 -198
- package/build/Devtools/{3BAJISSX.jsx → 7SMWYMBY.jsx} +247 -247
- package/build/Devtools/{4TNE5QTO.js → B2H37NSB.js} +273 -198
- package/build/Devtools/{OWSLDUSP.jsx → Y2E2LEWB.jsx} +247 -247
- package/build/chunk/{PWC4YVZY.jsx → AHAJNSNO.jsx} +299 -177
- package/build/chunk/{7MNJIXJ6.js → Z53XT47W.js} +299 -178
- package/build/dev.cjs +623 -443
- package/build/dev.js +2 -2
- package/build/dev.jsx +2 -2
- package/build/index.cjs +622 -442
- package/build/index.js +2 -2
- package/build/index.jsx +2 -2
- package/package.json +1 -1
- package/src/icons/index.tsx +86 -79
- package/build/chunk/L2WNRKEK.js +0 -1912
- package/build/chunk/LGDS24HT.jsx +0 -1948
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createContext, delegateEvents, createSignal, createMemo, createComponent, createEffect, insert, Show, createRenderEffect, className, on, onMount, setAttribute, spread, mergeProps, For, onCleanup, isServer, $PROXY, $TRACK, getListener, batch, useContext, Index, template, use, untrack, useTransition, createRoot, splitProps,
|
|
1
|
+
import { createContext, delegateEvents, createSignal, createMemo, createComponent, createEffect, insert, Show, createRenderEffect, className, on, onMount, setAttribute, spread, mergeProps, For, onCleanup, isServer, $PROXY, $TRACK, getListener, batch, createUniqueId, useContext, Index, template, use, untrack, useTransition, createRoot, splitProps, Portal, addEventListener, Switch, Match, Dynamic, children, createComputed, getOwner, DEV } from '../chunk/Z53XT47W.js';
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
4
4
|
var characterMap = {
|
|
@@ -675,7 +675,7 @@ function clsx() {
|
|
|
675
675
|
return n2;
|
|
676
676
|
}
|
|
677
677
|
|
|
678
|
-
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.
|
|
678
|
+
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.1/node_modules/@solid-primitives/transition-group/dist/index.js
|
|
679
679
|
var noop = () => {
|
|
680
680
|
};
|
|
681
681
|
function createListTransition(source, options) {
|
|
@@ -743,9 +743,12 @@ function createListTransition(source, options) {
|
|
|
743
743
|
);
|
|
744
744
|
}
|
|
745
745
|
|
|
746
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
746
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
747
747
|
var isClient = !isServer;
|
|
748
748
|
var isDev = isClient && !!DEV;
|
|
749
|
+
var noop2 = () => void 0;
|
|
750
|
+
var isNonNullable = (i2) => i2 != null;
|
|
751
|
+
var filterNonNullable = (arr) => arr.filter(isNonNullable);
|
|
749
752
|
function chain(callbacks) {
|
|
750
753
|
return (...args) => {
|
|
751
754
|
for (const callback of callbacks)
|
|
@@ -766,8 +769,42 @@ function accessWith(valueOrFn, ...args) {
|
|
|
766
769
|
return typeof valueOrFn === "function" ? valueOrFn(...args) : valueOrFn;
|
|
767
770
|
}
|
|
768
771
|
var tryOnCleanup = isDev ? (fn) => getOwner() ? onCleanup(fn) : fn : onCleanup;
|
|
772
|
+
function handleDiffArray(current, prev, handleAdded, handleRemoved) {
|
|
773
|
+
const currLength = current.length;
|
|
774
|
+
const prevLength = prev.length;
|
|
775
|
+
let i2 = 0;
|
|
776
|
+
if (!prevLength) {
|
|
777
|
+
for (; i2 < currLength; i2++)
|
|
778
|
+
handleAdded(current[i2]);
|
|
779
|
+
return;
|
|
780
|
+
}
|
|
781
|
+
if (!currLength) {
|
|
782
|
+
for (; i2 < prevLength; i2++)
|
|
783
|
+
handleRemoved(prev[i2]);
|
|
784
|
+
return;
|
|
785
|
+
}
|
|
786
|
+
for (; i2 < prevLength; i2++) {
|
|
787
|
+
if (prev[i2] !== current[i2])
|
|
788
|
+
break;
|
|
789
|
+
}
|
|
790
|
+
let prevEl;
|
|
791
|
+
let currEl;
|
|
792
|
+
prev = prev.slice(i2);
|
|
793
|
+
current = current.slice(i2);
|
|
794
|
+
for (prevEl of prev) {
|
|
795
|
+
if (!current.includes(prevEl))
|
|
796
|
+
handleRemoved(prevEl);
|
|
797
|
+
}
|
|
798
|
+
for (currEl of current) {
|
|
799
|
+
if (!prev.includes(currEl))
|
|
800
|
+
handleAdded(currEl);
|
|
801
|
+
}
|
|
802
|
+
}
|
|
769
803
|
|
|
770
|
-
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.
|
|
804
|
+
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.1/node_modules/@solid-primitives/refs/dist/index.js
|
|
805
|
+
function mergeRefs(...refs) {
|
|
806
|
+
return chain(refs);
|
|
807
|
+
}
|
|
771
808
|
var defaultElementPredicate = isServer ? (item) => item != null && typeof item === "object" && "t" in item : (item) => item instanceof Element;
|
|
772
809
|
function getResolvedElements(value, predicate) {
|
|
773
810
|
if (predicate(value))
|
|
@@ -797,7 +834,7 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
797
834
|
return memo;
|
|
798
835
|
}
|
|
799
836
|
|
|
800
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.
|
|
837
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.8.1/node_modules/solid-transition-group/dist/index.js
|
|
801
838
|
function createClassnames(props) {
|
|
802
839
|
return createMemo(() => {
|
|
803
840
|
const name = props.name || "s";
|
|
@@ -919,7 +956,7 @@ var TransitionGroup = (props) => {
|
|
|
919
956
|
});
|
|
920
957
|
};
|
|
921
958
|
|
|
922
|
-
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.
|
|
959
|
+
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.1/node_modules/@solid-primitives/keyed/dist/index.js
|
|
923
960
|
var FALLBACK = Symbol("fallback");
|
|
924
961
|
function dispose(list) {
|
|
925
962
|
for (const o2 of list)
|
|
@@ -1017,45 +1054,7 @@ function Key(props) {
|
|
|
1017
1054
|
);
|
|
1018
1055
|
}
|
|
1019
1056
|
|
|
1020
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1021
|
-
var noop3 = () => void 0;
|
|
1022
|
-
var isNonNullable2 = (i2) => i2 != null;
|
|
1023
|
-
var filterNonNullable2 = (arr) => arr.filter(isNonNullable2);
|
|
1024
|
-
var access2 = (v) => typeof v === "function" && !v.length ? v() : v;
|
|
1025
|
-
var asArray2 = (value) => Array.isArray(value) ? value : value ? [value] : [];
|
|
1026
|
-
function handleDiffArray2(current, prev, handleAdded, handleRemoved) {
|
|
1027
|
-
const currLength = current.length;
|
|
1028
|
-
const prevLength = prev.length;
|
|
1029
|
-
let i2 = 0;
|
|
1030
|
-
if (!prevLength) {
|
|
1031
|
-
for (; i2 < currLength; i2++)
|
|
1032
|
-
handleAdded(current[i2]);
|
|
1033
|
-
return;
|
|
1034
|
-
}
|
|
1035
|
-
if (!currLength) {
|
|
1036
|
-
for (; i2 < prevLength; i2++)
|
|
1037
|
-
handleRemoved(prev[i2]);
|
|
1038
|
-
return;
|
|
1039
|
-
}
|
|
1040
|
-
for (; i2 < prevLength; i2++) {
|
|
1041
|
-
if (prev[i2] !== current[i2])
|
|
1042
|
-
break;
|
|
1043
|
-
}
|
|
1044
|
-
let prevEl;
|
|
1045
|
-
let currEl;
|
|
1046
|
-
prev = prev.slice(i2);
|
|
1047
|
-
current = current.slice(i2);
|
|
1048
|
-
for (prevEl of prev) {
|
|
1049
|
-
if (!current.includes(prevEl))
|
|
1050
|
-
handleRemoved(prevEl);
|
|
1051
|
-
}
|
|
1052
|
-
for (currEl of current) {
|
|
1053
|
-
if (!prev.includes(currEl))
|
|
1054
|
-
handleAdded(currEl);
|
|
1055
|
-
}
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.7.8/node_modules/@solid-primitives/storage/dist/index.js
|
|
1057
|
+
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.1/node_modules/@solid-primitives/storage/dist/index.js
|
|
1059
1058
|
function createStorage(props) {
|
|
1060
1059
|
const [error, setError] = createSignal();
|
|
1061
1060
|
const handleError = props?.throw ? (err, fallback) => {
|
|
@@ -1274,10 +1273,30 @@ var cookieStorage = addClearMethod({
|
|
|
1274
1273
|
}
|
|
1275
1274
|
});
|
|
1276
1275
|
|
|
1277
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1276
|
+
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.1/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
1277
|
+
function makeEventListener(target, type, handler, options) {
|
|
1278
|
+
target.addEventListener(type, handler, options);
|
|
1279
|
+
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
1280
|
+
}
|
|
1281
|
+
function createEventListener(targets, type, handler, options) {
|
|
1282
|
+
if (isServer)
|
|
1283
|
+
return;
|
|
1284
|
+
const attachListeners = () => {
|
|
1285
|
+
asArray(access(targets)).forEach((el) => {
|
|
1286
|
+
if (el)
|
|
1287
|
+
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
1288
|
+
});
|
|
1289
|
+
};
|
|
1290
|
+
if (typeof targets === "function")
|
|
1291
|
+
createEffect(attachListeners);
|
|
1292
|
+
else
|
|
1293
|
+
createRenderEffect(attachListeners);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.18_solid-js@1.8.1/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
1278
1297
|
function makeResizeObserver(callback, options) {
|
|
1279
1298
|
if (isServer) {
|
|
1280
|
-
return { observe:
|
|
1299
|
+
return { observe: noop2, unobserve: noop2 };
|
|
1281
1300
|
}
|
|
1282
1301
|
const observer = new ResizeObserver(callback);
|
|
1283
1302
|
onCleanup(observer.disconnect.bind(observer));
|
|
@@ -1289,8 +1308,8 @@ function makeResizeObserver(callback, options) {
|
|
|
1289
1308
|
function createResizeObserver(targets, onResize, options) {
|
|
1290
1309
|
if (isServer)
|
|
1291
1310
|
return;
|
|
1292
|
-
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((
|
|
1293
|
-
for (const entry of
|
|
1311
|
+
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((entries2) => {
|
|
1312
|
+
for (const entry of entries2) {
|
|
1294
1313
|
const { contentRect, target } = entry, width = Math.round(contentRect.width), height = Math.round(contentRect.height), previous = previousMap.get(target);
|
|
1295
1314
|
if (!previous || previous.width !== width || previous.height !== height) {
|
|
1296
1315
|
onResize(contentRect, target, entry);
|
|
@@ -1299,34 +1318,14 @@ function createResizeObserver(targets, onResize, options) {
|
|
|
1299
1318
|
}
|
|
1300
1319
|
}, options);
|
|
1301
1320
|
createEffect((prev) => {
|
|
1302
|
-
const refs =
|
|
1303
|
-
|
|
1321
|
+
const refs = filterNonNullable(asArray(access(targets)));
|
|
1322
|
+
handleDiffArray(refs, prev, observe, unobserve);
|
|
1304
1323
|
return refs;
|
|
1305
1324
|
}, []);
|
|
1306
1325
|
}
|
|
1307
1326
|
|
|
1308
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1309
|
-
function
|
|
1310
|
-
target.addEventListener(type, handler, options);
|
|
1311
|
-
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
1312
|
-
}
|
|
1313
|
-
function createEventListener(targets, type, handler, options) {
|
|
1314
|
-
if (isServer)
|
|
1315
|
-
return;
|
|
1316
|
-
const attachListeners = () => {
|
|
1317
|
-
asArray(access(targets)).forEach((el) => {
|
|
1318
|
-
if (el)
|
|
1319
|
-
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
1320
|
-
});
|
|
1321
|
-
};
|
|
1322
|
-
if (typeof targets === "function")
|
|
1323
|
-
createEffect(attachListeners);
|
|
1324
|
-
else
|
|
1325
|
-
createRenderEffect(attachListeners);
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.7.8/node_modules/@solid-primitives/props/dist/index.js
|
|
1329
|
-
function trueFn3() {
|
|
1327
|
+
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.1/node_modules/@solid-primitives/props/dist/index.js
|
|
1328
|
+
function trueFn2() {
|
|
1330
1329
|
return true;
|
|
1331
1330
|
}
|
|
1332
1331
|
var propTraps = {
|
|
@@ -1338,8 +1337,8 @@ var propTraps = {
|
|
|
1338
1337
|
has(_, property) {
|
|
1339
1338
|
return _.has(property);
|
|
1340
1339
|
},
|
|
1341
|
-
set:
|
|
1342
|
-
deleteProperty:
|
|
1340
|
+
set: trueFn2,
|
|
1341
|
+
deleteProperty: trueFn2,
|
|
1343
1342
|
getOwnPropertyDescriptor(_, property) {
|
|
1344
1343
|
return {
|
|
1345
1344
|
configurable: true,
|
|
@@ -1347,8 +1346,8 @@ var propTraps = {
|
|
|
1347
1346
|
get() {
|
|
1348
1347
|
return _.get(property);
|
|
1349
1348
|
},
|
|
1350
|
-
set:
|
|
1351
|
-
deleteProperty:
|
|
1349
|
+
set: trueFn2,
|
|
1350
|
+
deleteProperty: trueFn2
|
|
1352
1351
|
};
|
|
1353
1352
|
},
|
|
1354
1353
|
ownKeys(_) {
|
|
@@ -1447,12 +1446,7 @@ function combineProps(...args) {
|
|
|
1447
1446
|
);
|
|
1448
1447
|
}
|
|
1449
1448
|
|
|
1450
|
-
// ../../node_modules/.pnpm/@
|
|
1451
|
-
function mergeRefs(...refs) {
|
|
1452
|
-
return chain(refs);
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.7.8/node_modules/@kobalte/utils/dist/index.js
|
|
1449
|
+
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.1/node_modules/@kobalte/utils/dist/index.js
|
|
1456
1450
|
function addItemToArray(array, item, index = -1) {
|
|
1457
1451
|
if (!(index in array)) {
|
|
1458
1452
|
return [...array, item];
|
|
@@ -1722,7 +1716,7 @@ function getFocusableTreeWalker(root, opts, scope) {
|
|
|
1722
1716
|
}
|
|
1723
1717
|
return walker2;
|
|
1724
1718
|
}
|
|
1725
|
-
function
|
|
1719
|
+
function noop3() {
|
|
1726
1720
|
return;
|
|
1727
1721
|
}
|
|
1728
1722
|
function isPointInPolygon(point, polygon) {
|
|
@@ -1869,9 +1863,11 @@ var visuallyHiddenStyles = {
|
|
|
1869
1863
|
"white-space": "nowrap"
|
|
1870
1864
|
};
|
|
1871
1865
|
|
|
1872
|
-
// ../../node_modules/.pnpm/solid-js@1.
|
|
1866
|
+
// ../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/store/dist/store.js
|
|
1873
1867
|
var $RAW = Symbol("store-raw");
|
|
1874
1868
|
var $NODE = Symbol("store-node");
|
|
1869
|
+
var $HAS = Symbol("store-has");
|
|
1870
|
+
var $SELF = Symbol("store-self");
|
|
1875
1871
|
function wrap$1(value) {
|
|
1876
1872
|
let p2 = value[$PROXY];
|
|
1877
1873
|
if (!p2) {
|
|
@@ -1879,9 +1875,9 @@ function wrap$1(value) {
|
|
|
1879
1875
|
value: p2 = new Proxy(value, proxyTraps$1)
|
|
1880
1876
|
});
|
|
1881
1877
|
if (!Array.isArray(value)) {
|
|
1882
|
-
const
|
|
1883
|
-
for (let i2 = 0, l2 =
|
|
1884
|
-
const prop =
|
|
1878
|
+
const keys2 = Object.keys(value), desc = Object.getOwnPropertyDescriptors(value);
|
|
1879
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
1880
|
+
const prop = keys2[i2];
|
|
1885
1881
|
if (desc[prop].get) {
|
|
1886
1882
|
Object.defineProperty(value, prop, {
|
|
1887
1883
|
enumerable: desc[prop].enumerable,
|
|
@@ -1918,9 +1914,9 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
1918
1914
|
item = Object.assign({}, item);
|
|
1919
1915
|
else
|
|
1920
1916
|
set.add(item);
|
|
1921
|
-
const
|
|
1922
|
-
for (let i2 = 0, l2 =
|
|
1923
|
-
prop =
|
|
1917
|
+
const keys2 = Object.keys(item), desc = Object.getOwnPropertyDescriptors(item);
|
|
1918
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
1919
|
+
prop = keys2[i2];
|
|
1924
1920
|
if (desc[prop].get)
|
|
1925
1921
|
continue;
|
|
1926
1922
|
v = item[prop];
|
|
@@ -1930,16 +1926,23 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
1930
1926
|
}
|
|
1931
1927
|
return item;
|
|
1932
1928
|
}
|
|
1933
|
-
function
|
|
1934
|
-
let nodes = target[
|
|
1929
|
+
function getNodes(target, symbol) {
|
|
1930
|
+
let nodes = target[symbol];
|
|
1935
1931
|
if (!nodes)
|
|
1936
|
-
Object.defineProperty(target,
|
|
1932
|
+
Object.defineProperty(target, symbol, {
|
|
1937
1933
|
value: nodes = /* @__PURE__ */ Object.create(null)
|
|
1938
1934
|
});
|
|
1939
1935
|
return nodes;
|
|
1940
1936
|
}
|
|
1941
|
-
function
|
|
1942
|
-
|
|
1937
|
+
function getNode(nodes, property, value) {
|
|
1938
|
+
if (nodes[property])
|
|
1939
|
+
return nodes[property];
|
|
1940
|
+
const [s2, set] = createSignal(value, {
|
|
1941
|
+
equals: false,
|
|
1942
|
+
internal: true
|
|
1943
|
+
});
|
|
1944
|
+
s2.$ = set;
|
|
1945
|
+
return nodes[property] = s2;
|
|
1943
1946
|
}
|
|
1944
1947
|
function proxyDescriptor$1(target, property) {
|
|
1945
1948
|
const desc = Reflect.getOwnPropertyDescriptor(target, property);
|
|
@@ -1951,23 +1954,12 @@ function proxyDescriptor$1(target, property) {
|
|
|
1951
1954
|
return desc;
|
|
1952
1955
|
}
|
|
1953
1956
|
function trackSelf(target) {
|
|
1954
|
-
|
|
1955
|
-
const nodes = getDataNodes(target);
|
|
1956
|
-
(nodes._ || (nodes._ = createDataNode()))();
|
|
1957
|
-
}
|
|
1957
|
+
getListener() && getNode(getNodes(target, $NODE), $SELF)();
|
|
1958
1958
|
}
|
|
1959
1959
|
function ownKeys(target) {
|
|
1960
1960
|
trackSelf(target);
|
|
1961
1961
|
return Reflect.ownKeys(target);
|
|
1962
1962
|
}
|
|
1963
|
-
function createDataNode(value) {
|
|
1964
|
-
const [s2, set] = createSignal(value, {
|
|
1965
|
-
equals: false,
|
|
1966
|
-
internal: true
|
|
1967
|
-
});
|
|
1968
|
-
s2.$ = set;
|
|
1969
|
-
return s2;
|
|
1970
|
-
}
|
|
1971
1963
|
var proxyTraps$1 = {
|
|
1972
1964
|
get(target, property, receiver) {
|
|
1973
1965
|
if (property === $RAW)
|
|
@@ -1978,22 +1970,22 @@ var proxyTraps$1 = {
|
|
|
1978
1970
|
trackSelf(target);
|
|
1979
1971
|
return receiver;
|
|
1980
1972
|
}
|
|
1981
|
-
const nodes =
|
|
1973
|
+
const nodes = getNodes(target, $NODE);
|
|
1982
1974
|
const tracked = nodes[property];
|
|
1983
1975
|
let value = tracked ? tracked() : target[property];
|
|
1984
|
-
if (property === $NODE || property === "__proto__")
|
|
1976
|
+
if (property === $NODE || property === $HAS || property === "__proto__")
|
|
1985
1977
|
return value;
|
|
1986
1978
|
if (!tracked) {
|
|
1987
1979
|
const desc = Object.getOwnPropertyDescriptor(target, property);
|
|
1988
1980
|
if (getListener() && (typeof value !== "function" || target.hasOwnProperty(property)) && !(desc && desc.get))
|
|
1989
|
-
value =
|
|
1981
|
+
value = getNode(nodes, property, value)();
|
|
1990
1982
|
}
|
|
1991
1983
|
return isWrappable(value) ? wrap$1(value) : value;
|
|
1992
1984
|
},
|
|
1993
1985
|
has(target, property) {
|
|
1994
|
-
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === "__proto__")
|
|
1986
|
+
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === $HAS || property === "__proto__")
|
|
1995
1987
|
return true;
|
|
1996
|
-
|
|
1988
|
+
getListener() && getNode(getNodes(target, $HAS), property)();
|
|
1997
1989
|
return property in target;
|
|
1998
1990
|
},
|
|
1999
1991
|
set() {
|
|
@@ -2009,24 +2001,29 @@ function setProperty(state2, property, value, deleting = false) {
|
|
|
2009
2001
|
if (!deleting && state2[property] === value)
|
|
2010
2002
|
return;
|
|
2011
2003
|
const prev = state2[property], len = state2.length;
|
|
2012
|
-
if (value === void 0)
|
|
2004
|
+
if (value === void 0) {
|
|
2013
2005
|
delete state2[property];
|
|
2014
|
-
|
|
2006
|
+
if (state2[$HAS] && state2[$HAS][property] && prev !== void 0)
|
|
2007
|
+
state2[$HAS][property].$();
|
|
2008
|
+
} else {
|
|
2015
2009
|
state2[property] = value;
|
|
2016
|
-
|
|
2017
|
-
|
|
2010
|
+
if (state2[$HAS] && state2[$HAS][property] && prev === void 0)
|
|
2011
|
+
state2[$HAS][property].$();
|
|
2012
|
+
}
|
|
2013
|
+
let nodes = getNodes(state2, $NODE), node;
|
|
2014
|
+
if (node = getNode(nodes, property, prev))
|
|
2018
2015
|
node.$(() => value);
|
|
2019
2016
|
if (Array.isArray(state2) && state2.length !== len) {
|
|
2020
2017
|
for (let i2 = state2.length; i2 < len; i2++)
|
|
2021
2018
|
(node = nodes[i2]) && node.$();
|
|
2022
|
-
(node =
|
|
2019
|
+
(node = getNode(nodes, "length", len)) && node.$(state2.length);
|
|
2023
2020
|
}
|
|
2024
|
-
(node = nodes
|
|
2021
|
+
(node = nodes[$SELF]) && node.$();
|
|
2025
2022
|
}
|
|
2026
2023
|
function mergeStoreNode(state2, value) {
|
|
2027
|
-
const
|
|
2028
|
-
for (let i2 = 0; i2 <
|
|
2029
|
-
const key =
|
|
2024
|
+
const keys2 = Object.keys(value);
|
|
2025
|
+
for (let i2 = 0; i2 < keys2.length; i2 += 1) {
|
|
2026
|
+
const key = keys2[i2];
|
|
2030
2027
|
setProperty(state2, key, value[key]);
|
|
2031
2028
|
}
|
|
2032
2029
|
}
|
|
@@ -2064,11 +2061,7 @@ function updatePath(current, path, traversed = []) {
|
|
|
2064
2061
|
}
|
|
2065
2062
|
return;
|
|
2066
2063
|
} else if (isArray4 && partType === "object") {
|
|
2067
|
-
const {
|
|
2068
|
-
from = 0,
|
|
2069
|
-
to = current.length - 1,
|
|
2070
|
-
by = 1
|
|
2071
|
-
} = part;
|
|
2064
|
+
const { from = 0, to = current.length - 1, by = 1 } = part;
|
|
2072
2065
|
for (let i2 = from; i2 <= to; i2 += by) {
|
|
2073
2066
|
updatePath(current, [i2].concat(path), traversed);
|
|
2074
2067
|
}
|
|
@@ -2144,7 +2137,7 @@ function $d6fd23bc337660df$var$getLanguage(locale) {
|
|
|
2144
2137
|
return locale.split("-")[0];
|
|
2145
2138
|
}
|
|
2146
2139
|
|
|
2147
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
2140
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
|
|
2148
2141
|
var sides = ["top", "right", "bottom", "left"];
|
|
2149
2142
|
var min = Math.min;
|
|
2150
2143
|
var max = Math.max;
|
|
@@ -2164,7 +2157,7 @@ var oppositeAlignmentMap = {
|
|
|
2164
2157
|
start: "end",
|
|
2165
2158
|
end: "start"
|
|
2166
2159
|
};
|
|
2167
|
-
function
|
|
2160
|
+
function clamp2(start, value, end) {
|
|
2168
2161
|
return max(start, min(value, end));
|
|
2169
2162
|
}
|
|
2170
2163
|
function evaluate(value, param) {
|
|
@@ -2507,7 +2500,7 @@ var arrow = (options) => ({
|
|
|
2507
2500
|
const min$1 = minPadding;
|
|
2508
2501
|
const max2 = clientSize - arrowDimensions[length] - maxPadding;
|
|
2509
2502
|
const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;
|
|
2510
|
-
const offset2 =
|
|
2503
|
+
const offset2 = clamp2(min$1, center, max2);
|
|
2511
2504
|
const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center != offset2 && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;
|
|
2512
2505
|
const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max2 : 0;
|
|
2513
2506
|
return {
|
|
@@ -2780,14 +2773,14 @@ var shift = function(options) {
|
|
|
2780
2773
|
const maxSide = mainAxis === "y" ? "bottom" : "right";
|
|
2781
2774
|
const min2 = mainAxisCoord + overflow[minSide];
|
|
2782
2775
|
const max2 = mainAxisCoord - overflow[maxSide];
|
|
2783
|
-
mainAxisCoord =
|
|
2776
|
+
mainAxisCoord = clamp2(min2, mainAxisCoord, max2);
|
|
2784
2777
|
}
|
|
2785
2778
|
if (checkCrossAxis) {
|
|
2786
2779
|
const minSide = crossAxis === "y" ? "top" : "left";
|
|
2787
2780
|
const maxSide = crossAxis === "y" ? "bottom" : "right";
|
|
2788
2781
|
const min2 = crossAxisCoord + overflow[minSide];
|
|
2789
2782
|
const max2 = crossAxisCoord - overflow[maxSide];
|
|
2790
|
-
crossAxisCoord =
|
|
2783
|
+
crossAxisCoord = clamp2(min2, crossAxisCoord, max2);
|
|
2791
2784
|
}
|
|
2792
2785
|
const limitedCoords = limiter.fn({
|
|
2793
2786
|
...state2,
|
|
@@ -2881,7 +2874,7 @@ var size = function(options) {
|
|
|
2881
2874
|
};
|
|
2882
2875
|
};
|
|
2883
2876
|
|
|
2884
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
2877
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dom/dist/floating-ui.utils.dom.mjs
|
|
2885
2878
|
function getNodeName(node) {
|
|
2886
2879
|
if (isNode(node)) {
|
|
2887
2880
|
return (node.nodeName || "").toLowerCase();
|
|
@@ -3419,8 +3412,8 @@ function observeMove(element, onMove) {
|
|
|
3419
3412
|
threshold: max(0, min(1, threshold)) || 1
|
|
3420
3413
|
};
|
|
3421
3414
|
let isFirstUpdate = true;
|
|
3422
|
-
function handleObserve(
|
|
3423
|
-
const ratio =
|
|
3415
|
+
function handleObserve(entries2) {
|
|
3416
|
+
const ratio = entries2[0].intersectionRatio;
|
|
3424
3417
|
if (ratio !== threshold) {
|
|
3425
3418
|
if (!isFirstUpdate) {
|
|
3426
3419
|
return refresh();
|
|
@@ -3531,7 +3524,7 @@ var computePosition2 = (reference, floating, options) => {
|
|
|
3531
3524
|
});
|
|
3532
3525
|
};
|
|
3533
3526
|
|
|
3534
|
-
// ../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.
|
|
3527
|
+
// ../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.8.1/node_modules/@kobalte/core/dist/esm/index.js
|
|
3535
3528
|
createContext();
|
|
3536
3529
|
function buildNodes(params) {
|
|
3537
3530
|
let index = params.startIndex ?? 0;
|
|
@@ -4119,7 +4112,7 @@ var POINTER_DOWN_OUTSIDE_EVENT = "interactOutside.pointerDownOutside";
|
|
|
4119
4112
|
var FOCUS_OUTSIDE_EVENT = "interactOutside.focusOutside";
|
|
4120
4113
|
function createInteractOutside(props, ref) {
|
|
4121
4114
|
let pointerDownTimeoutId;
|
|
4122
|
-
let clickHandler =
|
|
4115
|
+
let clickHandler = noop3;
|
|
4123
4116
|
const ownerDocument = () => getDocument(ref());
|
|
4124
4117
|
const onPointerDownOutside = (e2) => props.onPointerDownOutside?.(e2);
|
|
4125
4118
|
const onFocusOutside = (e2) => props.onFocusOutside?.(e2);
|
|
@@ -4568,11 +4561,11 @@ function createCollator(options) {
|
|
|
4568
4561
|
});
|
|
4569
4562
|
}
|
|
4570
4563
|
var Selection = class _Selection extends Set {
|
|
4571
|
-
constructor(
|
|
4572
|
-
super(
|
|
4573
|
-
if (
|
|
4574
|
-
this.anchorKey = anchorKey ||
|
|
4575
|
-
this.currentKey = currentKey ||
|
|
4564
|
+
constructor(keys2, anchorKey, currentKey) {
|
|
4565
|
+
super(keys2);
|
|
4566
|
+
if (keys2 instanceof _Selection) {
|
|
4567
|
+
this.anchorKey = anchorKey || keys2.anchorKey;
|
|
4568
|
+
this.currentKey = currentKey || keys2.currentKey;
|
|
4576
4569
|
} else {
|
|
4577
4570
|
this.anchorKey = anchorKey;
|
|
4578
4571
|
this.currentKey = currentKey;
|
|
@@ -4636,9 +4629,9 @@ function createMultipleSelectionState(props) {
|
|
|
4636
4629
|
const [selectionBehavior, setSelectionBehavior] = createSignal(access(props.selectionBehavior));
|
|
4637
4630
|
const selectionMode = () => access(props.selectionMode);
|
|
4638
4631
|
const disallowEmptySelection = () => access(props.disallowEmptySelection) ?? false;
|
|
4639
|
-
const setSelectedKeys = (
|
|
4640
|
-
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(
|
|
4641
|
-
_setSelectedKeys(
|
|
4632
|
+
const setSelectedKeys = (keys2) => {
|
|
4633
|
+
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(keys2, selectedKeys())) {
|
|
4634
|
+
_setSelectedKeys(keys2);
|
|
4642
4635
|
}
|
|
4643
4636
|
};
|
|
4644
4637
|
createEffect(() => {
|
|
@@ -5253,15 +5246,15 @@ var SelectionManager = class {
|
|
|
5253
5246
|
return [];
|
|
5254
5247
|
}
|
|
5255
5248
|
getKeyRangeInternal(from, to) {
|
|
5256
|
-
const
|
|
5249
|
+
const keys2 = [];
|
|
5257
5250
|
let key = from;
|
|
5258
5251
|
while (key != null) {
|
|
5259
5252
|
const item = this.collection().getItem(key);
|
|
5260
5253
|
if (item && item.type === "item") {
|
|
5261
|
-
|
|
5254
|
+
keys2.push(key);
|
|
5262
5255
|
}
|
|
5263
5256
|
if (key === to) {
|
|
5264
|
-
return
|
|
5257
|
+
return keys2;
|
|
5265
5258
|
}
|
|
5266
5259
|
key = this.collection().getKeyAfter(key);
|
|
5267
5260
|
}
|
|
@@ -5290,18 +5283,18 @@ var SelectionManager = class {
|
|
|
5290
5283
|
if (retrievedKey == null) {
|
|
5291
5284
|
return;
|
|
5292
5285
|
}
|
|
5293
|
-
const
|
|
5294
|
-
if (
|
|
5295
|
-
|
|
5286
|
+
const keys2 = new Selection(this.state.selectedKeys());
|
|
5287
|
+
if (keys2.has(retrievedKey)) {
|
|
5288
|
+
keys2.delete(retrievedKey);
|
|
5296
5289
|
} else if (this.canSelectItem(retrievedKey)) {
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5290
|
+
keys2.add(retrievedKey);
|
|
5291
|
+
keys2.anchorKey = retrievedKey;
|
|
5292
|
+
keys2.currentKey = retrievedKey;
|
|
5300
5293
|
}
|
|
5301
|
-
if (this.disallowEmptySelection() &&
|
|
5294
|
+
if (this.disallowEmptySelection() && keys2.size === 0) {
|
|
5302
5295
|
return;
|
|
5303
5296
|
}
|
|
5304
|
-
this.state.setSelectedKeys(
|
|
5297
|
+
this.state.setSelectedKeys(keys2);
|
|
5305
5298
|
}
|
|
5306
5299
|
/** Replaces the selection with only the given key. */
|
|
5307
5300
|
replaceSelection(key) {
|
|
@@ -5316,12 +5309,12 @@ var SelectionManager = class {
|
|
|
5316
5309
|
this.state.setSelectedKeys(selection);
|
|
5317
5310
|
}
|
|
5318
5311
|
/** Replaces the selection with the given keys. */
|
|
5319
|
-
setSelectedKeys(
|
|
5312
|
+
setSelectedKeys(keys2) {
|
|
5320
5313
|
if (this.selectionMode() === "none") {
|
|
5321
5314
|
return;
|
|
5322
5315
|
}
|
|
5323
5316
|
const selection = new Selection();
|
|
5324
|
-
for (const key of
|
|
5317
|
+
for (const key of keys2) {
|
|
5325
5318
|
const retrievedKey = this.getKey(key);
|
|
5326
5319
|
if (retrievedKey != null) {
|
|
5327
5320
|
selection.add(retrievedKey);
|
|
@@ -5406,7 +5399,7 @@ var SelectionManager = class {
|
|
|
5406
5399
|
return !item || item.disabled;
|
|
5407
5400
|
}
|
|
5408
5401
|
getAllSelectableKeys() {
|
|
5409
|
-
const
|
|
5402
|
+
const keys2 = [];
|
|
5410
5403
|
const addKeys = (key) => {
|
|
5411
5404
|
while (key != null) {
|
|
5412
5405
|
if (this.canSelectItem(key)) {
|
|
@@ -5415,14 +5408,14 @@ var SelectionManager = class {
|
|
|
5415
5408
|
continue;
|
|
5416
5409
|
}
|
|
5417
5410
|
if (item.type === "item") {
|
|
5418
|
-
|
|
5411
|
+
keys2.push(key);
|
|
5419
5412
|
}
|
|
5420
5413
|
}
|
|
5421
5414
|
key = this.collection().getKeyAfter(key);
|
|
5422
5415
|
}
|
|
5423
5416
|
};
|
|
5424
5417
|
addKeys(this.collection().getFirstKey());
|
|
5425
|
-
return
|
|
5418
|
+
return keys2;
|
|
5426
5419
|
}
|
|
5427
5420
|
};
|
|
5428
5421
|
var ListCollection = class {
|
|
@@ -5478,8 +5471,8 @@ var ListCollection = class {
|
|
|
5478
5471
|
return this.keyMap.get(key);
|
|
5479
5472
|
}
|
|
5480
5473
|
at(idx) {
|
|
5481
|
-
const
|
|
5482
|
-
return this.getItem(
|
|
5474
|
+
const keys2 = [...this.getKeys()];
|
|
5475
|
+
return this.getItem(keys2[idx]);
|
|
5483
5476
|
}
|
|
5484
5477
|
};
|
|
5485
5478
|
function createListState(props) {
|
|
@@ -8744,12 +8737,12 @@ var untransformValue = function(json, type, superJson) {
|
|
|
8744
8737
|
|
|
8745
8738
|
// ../../node_modules/.pnpm/superjson@1.12.4/node_modules/superjson/dist/esm/accessDeep.js
|
|
8746
8739
|
var getNthKey = function(value, n2) {
|
|
8747
|
-
var
|
|
8740
|
+
var keys2 = value.keys();
|
|
8748
8741
|
while (n2 > 0) {
|
|
8749
|
-
|
|
8742
|
+
keys2.next();
|
|
8750
8743
|
n2--;
|
|
8751
8744
|
}
|
|
8752
|
-
return
|
|
8745
|
+
return keys2.next().value;
|
|
8753
8746
|
};
|
|
8754
8747
|
function validatePath(path) {
|
|
8755
8748
|
if (includes(path, "__proto__")) {
|
|
@@ -9049,7 +9042,7 @@ function isArray3(payload) {
|
|
|
9049
9042
|
return getType2(payload) === "Array";
|
|
9050
9043
|
}
|
|
9051
9044
|
|
|
9052
|
-
// ../../node_modules/.pnpm/copy-anything@3.0.
|
|
9045
|
+
// ../../node_modules/.pnpm/copy-anything@3.0.5/node_modules/copy-anything/dist/index.js
|
|
9053
9046
|
function assignProp(carry, key, newVal, originalObject, includeNonenumerable) {
|
|
9054
9047
|
const propType = {}.propertyIsEnumerable.call(originalObject, key) ? "enumerable" : "nonenumerable";
|
|
9055
9048
|
if (propType === "enumerable")
|
|
@@ -9339,23 +9332,23 @@ var deleteNestedDataByPath = (oldData, deletePath) => {
|
|
|
9339
9332
|
};
|
|
9340
9333
|
|
|
9341
9334
|
// src/icons/index.tsx
|
|
9342
|
-
var _tmpl$ = /* @__PURE__ */ template(`<svg width=
|
|
9343
|
-
var _tmpl$2 = /* @__PURE__ */ template(`<svg width=
|
|
9344
|
-
var _tmpl$3 = /* @__PURE__ */ template(`<svg width=
|
|
9345
|
-
var _tmpl$4 = /* @__PURE__ */ template(`<svg width=
|
|
9346
|
-
var _tmpl$5 = /* @__PURE__ */ template(`<svg width=
|
|
9347
|
-
var _tmpl$6 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
9348
|
-
var _tmpl$7 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
9349
|
-
var _tmpl$8 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
9350
|
-
var _tmpl$9 = /* @__PURE__ */ template(`<svg stroke=
|
|
9351
|
-
var _tmpl$10 = /* @__PURE__ */ template(`<svg stroke-width=
|
|
9352
|
-
var _tmpl$11 = /* @__PURE__ */ template(`<svg width=
|
|
9353
|
-
var _tmpl$12 = /* @__PURE__ */ template(`<svg width=
|
|
9354
|
-
var _tmpl$13 = /* @__PURE__ */ template(`<svg width=
|
|
9355
|
-
var _tmpl$14 = /* @__PURE__ */ template(`<svg width=
|
|
9356
|
-
var _tmpl$15 = /* @__PURE__ */ template(`<svg width=
|
|
9357
|
-
var _tmpl$16 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
9358
|
-
var _tmpl$17 = /* @__PURE__ */ template(`<svg version="1.0" viewBox="0 0 633 633"><linearGradient id="a" x1="-666.45" x2="-666.45" y1="163.28" y2="163.99" gradientTransform="matrix(633 0 0 633 422177 -103358)" gradientUnits="userSpaceOnUse"><stop stop-color="#6BDAFF" offset="0"></stop><stop stop-color="#F9FFB5" offset=".32"></stop><stop stop-color="#FFA770" offset=".71"></stop><stop stop-color="#FF7373" offset="1"></stop></linearGradient><circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)"></circle><defs><filter id="am" x="-137.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="b" x="-137.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#am)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#b)"><ellipse cx="89.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ah" x="316.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="k" x="316.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ah)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#k)"><ellipse cx="543.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ae" x="-137.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="j" x="-137.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ae)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#j)"><ellipse cx="89.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="ai" x="316.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="i" x="316.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ai)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#i)"><ellipse cx="543.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="aj" x="-137.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="h" x="-137.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#aj)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#h)"><ellipse cx="89.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="ag" x="316.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="g" x="316.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ag)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#g)"><ellipse cx="543.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="af" x="272.2" y="308" width="176.9" height="129.3" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="f" x="272.2" y="308" width="176.9" height="129.3" maskUnits="userSpaceOnUse"><g filter="url(#af)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#f)"><line x1="436" x2="431" y1="403.2" y2="431.8" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="291" x2="280" y1="341.5" y2="403.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="332.9" x2="328.6" y1="384.1" y2="411.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><linearGradient id="m" x1="-670.75" x2="-671.59" y1="164.4" y2="164.49" gradientTransform="matrix(-184.16 -32.472 -11.461 64.997 -121359 -32126)" gradientUnits="userSpaceOnUse"><stop stop-color="#EE2700" offset="0"></stop><stop stop-color="#FF008E" offset="1"></stop></linearGradient><path d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z" clip-rule="evenodd" fill="url(#m)" fill-rule="evenodd"></path><line x1="428.2" x2="429.1" y1="384.5" y2="378" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="395.2" x2="396.1" y1="379.5" y2="373" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="362.2" x2="363.1" y1="373.5" y2="367.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="324.2" x2="328.4" y1="351.3" y2="347.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="303.2" x2="307.4" y1="331.3" y2="327.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line></g><defs><filter id="ak" x="73.2" y="113.8" width="280.6" height="317.4" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="e" x="73.2" y="113.8" width="280.6" height="317.4" maskUnits="userSpaceOnUse"><g filter="url(#ak)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#e)"><linearGradient id="n" x1="-672.16" x2="-672.16" y1="165.03" y2="166.03" gradientTransform="matrix(-100.18 48.861 97.976 200.88 -83342 -93.059)" gradientUnits="userSpaceOnUse"><stop stop-color="#A17500" offset="0"></stop><stop stop-color="#5D2100" offset="1"></stop></linearGradient><path d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6" clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"></path><g stroke="#2F8A00"><linearGradient id="r" x1="-660.23" x2="-660.23" y1="166.72" y2="167.72" gradientTransform="matrix(92.683 4.8573 -2.0259 38.657 61680 -3088.6)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z" clip-rule="evenodd" fill="url(#r)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="s" x1="-661.36" x2="-661.36" y1="164.18" y2="165.18" gradientTransform="matrix(110 5.7648 -6.3599 121.35 73933 -15933)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z" clip-rule="evenodd" fill="url(#s)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="q" x1="-656.79" x2="-656.79" y1="165.15" y2="166.15" gradientTransform="matrix(62.954 3.2993 -3.5023 66.828 42156 -8754.1)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z" clip-rule="evenodd" fill="url(#q)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="p" x1="-663.07" x2="-663.07" y1="165.44" y2="166.44" gradientTransform="matrix(152.47 7.9907 -3.0936 59.029 101884 -4318.7)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z" clip-rule="evenodd" fill="url(#p)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="o" x1="-662.57" x2="-662.57" y1="164.44" y2="165.44" gradientTransform="matrix(136.46 7.1517 -5.2163 99.533 91536 -11442)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z" clip-rule="evenodd" fill="url(#o)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="l" x1="-656.43" x2="-656.43" y1="163.86" y2="164.86" gradientTransform="matrix(60.866 3.1899 -8.7773 167.48 41560 -25168)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z" clip-rule="evenodd" fill="url(#l)" fill-rule="evenodd" stroke-width="13"></path><path d="m196.5 182.3c-14.8 21.6-25.1 41.4-30.8 59.4s-9.5 33-11.1 45.1" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m194.9 185.7c-24.4 1.7-43.8 9-58.1 21.8s-24.7 25.4-31.3 37.8" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m204.5 176.4c29.7-6.7 52-8.4 67-5.1s26.9 8.6 35.8 15.9" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m196.5 181.4c20.3 9.9 38.2 20.5 53.9 31.9s27.4 22.1 35.1 32" fill="none" stroke-linecap="round" stroke-width="8"></path></g></g><defs><filter id="al" x="50.5" y="399" width="532" height="633" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="d" x="50.5" y="399" width="532" height="633" maskUnits="userSpaceOnUse"><g filter="url(#al)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#d)"><linearGradient id="u" x1="-666.06" x2="-666.23" y1="163.36" y2="163.75" gradientTransform="matrix(532 0 0 633 354760 -102959)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFF400" offset="0"></stop><stop stop-color="#3C8700" offset="1"></stop></linearGradient><ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)"></ellipse></g><defs><filter id="ad" x="391" y="-24" width="288" height="283" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="c" x="391" y="-24" width="288" height="283" maskUnits="userSpaceOnUse"><g filter="url(#ad)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#c)"><linearGradient id="t" x1="-664.56" x2="-664.56" y1="163.79" y2="164.79" gradientTransform="matrix(227 0 0 227 151421 -37204)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFDF00" offset="0"></stop><stop stop-color="#FF9D00" offset="1"></stop></linearGradient><circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)"></circle><linearGradient id="v" x1="-644.5" x2="-645.77" y1="342" y2="342" gradientTransform="matrix(30 0 0 1 19770 -253)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="427" x2="397" y1="89" y2="89" fill="none" stroke="url(#v)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="aa" x1="-641.56" x2="-642.83" y1="196.02" y2="196.07" gradientTransform="matrix(26.5 0 0 5.5 17439 -1025.5)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="430.5" x2="404" y1="55.5" y2="50" fill="none" stroke="url(#aa)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="w" x1="-643.73" x2="-645" y1="185.83" y2="185.9" gradientTransform="matrix(29 0 0 8 19107 -1361)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="431" x2="402" y1="122" y2="130" fill="none" stroke="url(#w)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ac" x1="-638.94" x2="-640.22" y1="177.09" y2="177.39" gradientTransform="matrix(24 0 0 13 15783 -2145)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="442" x2="418" y1="153" y2="166" fill="none" stroke="url(#ac)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ab" x1="-633.42" x2="-634.7" y1="172.41" y2="173.31" gradientTransform="matrix(20 0 0 19 13137 -3096)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="464" x2="444" y1="180" y2="199" fill="none" stroke="url(#ab)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="y" x1="-619.05" x2="-619.52" y1="170.82" y2="171.82" gradientTransform="matrix(13.83 0 0 22.85 9050 -3703.4)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="491.4" x2="477.5" y1="203" y2="225.9" fill="none" stroke="url(#y)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="x" x1="-578.5" x2="-578.63" y1="170.31" y2="171.31" gradientTransform="matrix(7.5 0 0 24.5 4860 -3953)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="524.5" x2="517" y1="219.5" y2="244" fill="none" stroke="url(#x)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="z" x1="666.5" x2="666.5" y1="170.31" y2="171.31" gradientTransform="matrix(.5 0 0 24.5 231.5 -3944)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="564.5" x2="565" y1="228.5" y2="253" fill="none" stroke="url(#z)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12">`);
|
|
9335
|
+
var _tmpl$ = /* @__PURE__ */ template(`<svg width=14 height=14 viewBox="0 0 14 14"fill=none xmlns=http://www.w3.org/2000/svg><path d="M13 13L9.00007 9M10.3333 5.66667C10.3333 8.244 8.244 10.3333 5.66667 10.3333C3.08934 10.3333 1 8.244 1 5.66667C1 3.08934 3.08934 1 5.66667 1C8.244 1 10.3333 3.08934 10.3333 5.66667Z"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
9336
|
+
var _tmpl$2 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path d="M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9337
|
+
var _tmpl$3 = /* @__PURE__ */ template(`<svg width=10 height=6 viewBox="0 0 10 6"fill=none xmlns=http://www.w3.org/2000/svg><path d="M1 1L5 5L9 1"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
9338
|
+
var _tmpl$4 = /* @__PURE__ */ template(`<svg width=12 height=12 viewBox="0 0 16 16"fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 13.3333V2.66667M8 2.66667L4 6.66667M8 2.66667L12 6.66667"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
9339
|
+
var _tmpl$5 = /* @__PURE__ */ template(`<svg width=12 height=12 viewBox="0 0 16 16"fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 2.66667V13.3333M8 13.3333L4 9.33333M8 13.3333L12 9.33333"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
9340
|
+
var _tmpl$6 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M12 2v2m0 16v2M4 12H2m4.314-5.686L4.9 4.9m12.786 1.414L19.1 4.9M6.314 17.69 4.9 19.104m12.786-1.414 1.414 1.414M22 12h-2m-3 0a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9341
|
+
var _tmpl$7 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M22 15.844a10.424 10.424 0 0 1-4.306.925c-5.779 0-10.463-4.684-10.463-10.462 0-1.536.33-2.994.925-4.307A10.464 10.464 0 0 0 2 11.538C2 17.316 6.684 22 12.462 22c4.243 0 7.896-2.526 9.538-6.156Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9342
|
+
var _tmpl$8 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 21h8m-4-4v4m-5.2-4h10.4c1.68 0 2.52 0 3.162-.327a3 3 0 0 0 1.311-1.311C22 14.72 22 13.88 22 12.2V7.8c0-1.68 0-2.52-.327-3.162a3 3 0 0 0-1.311-1.311C19.72 3 18.88 3 17.2 3H6.8c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311C2 5.28 2 6.12 2 7.8v4.4c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.311C4.28 17 5.12 17 6.8 17Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9343
|
+
var _tmpl$9 = /* @__PURE__ */ template(`<svg stroke=currentColor fill=currentColor stroke-width=0 viewBox="0 0 24 24"height=1em width=1em xmlns=http://www.w3.org/2000/svg><path fill=none d="M0 0h24v24H0z"></path><path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 00-6 0zm-4-4l2 2a7.074 7.074 0 0110 0l2-2C15.14 9.14 8.87 9.14 5 13z">`);
|
|
9344
|
+
var _tmpl$10 = /* @__PURE__ */ template(`<svg stroke-width=0 viewBox="0 0 24 24"height=1em width=1em xmlns=http://www.w3.org/2000/svg><path fill=none d="M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z"></path><path d="M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4a9.793 9.793 0 00-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24A9.684 9.684 0 005 13v.01L6.99 15a7.042 7.042 0 014.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3a4.237 4.237 0 00-6 0z">`);
|
|
9345
|
+
var _tmpl$11 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path d="M9.3951 19.3711L9.97955 20.6856C10.1533 21.0768 10.4368 21.4093 10.7958 21.6426C11.1547 21.8759 11.5737 22.0001 12.0018 22C12.4299 22.0001 12.8488 21.8759 13.2078 21.6426C13.5667 21.4093 13.8503 21.0768 14.024 20.6856L14.6084 19.3711C14.8165 18.9047 15.1664 18.5159 15.6084 18.26C16.0532 18.0034 16.5678 17.8941 17.0784 17.9478L18.5084 18.1C18.9341 18.145 19.3637 18.0656 19.7451 17.8713C20.1265 17.6771 20.4434 17.3763 20.6573 17.0056C20.8715 16.635 20.9735 16.2103 20.9511 15.7829C20.9286 15.3555 20.7825 14.9438 20.5307 14.5978L19.684 13.4344C19.3825 13.0171 19.2214 12.5148 19.224 12C19.2239 11.4866 19.3865 10.9864 19.6884 10.5711L20.5351 9.40778C20.787 9.06175 20.933 8.65007 20.9555 8.22267C20.978 7.79528 20.8759 7.37054 20.6618 7C20.4479 6.62923 20.131 6.32849 19.7496 6.13423C19.3681 5.93997 18.9386 5.86053 18.5129 5.90556L17.0829 6.05778C16.5722 6.11141 16.0577 6.00212 15.6129 5.74556C15.17 5.48825 14.82 5.09736 14.6129 4.62889L14.024 3.31444C13.8503 2.92317 13.5667 2.59072 13.2078 2.3574C12.8488 2.12408 12.4299 1.99993 12.0018 2C11.5737 1.99993 11.1547 2.12408 10.7958 2.3574C10.4368 2.59072 10.1533 2.92317 9.97955 3.31444L9.3951 4.62889C9.18803 5.09736 8.83798 5.48825 8.3951 5.74556C7.95032 6.00212 7.43577 6.11141 6.9251 6.05778L5.49066 5.90556C5.06499 5.86053 4.6354 5.93997 4.25397 6.13423C3.87255 6.32849 3.55567 6.62923 3.34177 7C3.12759 7.37054 3.02555 7.79528 3.04804 8.22267C3.07052 8.65007 3.21656 9.06175 3.46844 9.40778L4.3151 10.5711C4.61704 10.9864 4.77964 11.4866 4.77955 12C4.77964 12.5134 4.61704 13.0137 4.3151 13.4289L3.46844 14.5922C3.21656 14.9382 3.07052 15.3499 3.04804 15.7773C3.02555 16.2047 3.12759 16.6295 3.34177 17C3.55589 17.3706 3.8728 17.6712 4.25417 17.8654C4.63554 18.0596 5.06502 18.1392 5.49066 18.0944L6.92066 17.9422C7.43133 17.8886 7.94587 17.9979 8.39066 18.2544C8.83519 18.511 9.18687 18.902 9.3951 19.3711Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round></path><path d="M12 15C13.6568 15 15 13.6569 15 12C15 10.3431 13.6568 9 12 9C10.3431 9 8.99998 10.3431 8.99998 12C8.99998 13.6569 10.3431 15 12 15Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9346
|
+
var _tmpl$12 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path class=copier d="M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z"stroke-width=2 stroke-linecap=round stroke-linejoin=round stroke=currentColor>`);
|
|
9347
|
+
var _tmpl$13 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path d="M7.5 12L10.5 15L16.5 9M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9348
|
+
var _tmpl$14 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path d="M9 9L15 15M15 9L9 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z"stroke=#F04438 stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9349
|
+
var _tmpl$15 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 xmlns=http://www.w3.org/2000/svg><rect class=list width=20 height=20 y=2 x=2 rx=2></rect><line class=list-item y1=7 y2=7 x1=6 x2=18></line><line class=list-item y2=12 y1=12 x1=6 x2=18></line><line class=list-item y1=17 y2=17 x1=6 x2=18>`);
|
|
9350
|
+
var _tmpl$16 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=20 width=20 fill=none xmlns=http://www.w3.org/2000/svg><path d="M3 7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C5.28 3 6.12 3 7.8 3h8.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C21 5.28 21 6.12 21 7.8v8.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 21 17.88 21 16.2 21H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 18.72 3 17.88 3 16.2V7.8Z"stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9351
|
+
var _tmpl$17 = /* @__PURE__ */ template(`<svg version=1.0 viewBox="0 0 633 633"><linearGradient x1=-666.45 x2=-666.45 y1=163.28 y2=163.99 gradientTransform="matrix(633 0 0 633 422177 -103358)"gradientUnits=userSpaceOnUse><stop stop-color=#6BDAFF offset=0></stop><stop stop-color=#F9FFB5 offset=.32></stop><stop stop-color=#FFA770 offset=.71></stop><stop stop-color=#FF7373 offset=1></stop></linearGradient><circle cx=316.5 cy=316.5 r=316.5></circle><defs><filter x=-137.5 y=412 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=-137.5 y=412 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=610.5 rx=214.5 ry=186 fill=#015064 stroke=#00CFE2 stroke-width=25></ellipse></g><defs><filter x=316.5 y=412 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=316.5 y=412 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=610.5 rx=214.5 ry=186 fill=#015064 stroke=#00CFE2 stroke-width=25></ellipse></g><defs><filter x=-137.5 y=450 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=-137.5 y=450 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=648.5 rx=214.5 ry=186 fill=#015064 stroke=#00A8B8 stroke-width=25></ellipse></g><defs><filter x=316.5 y=450 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=316.5 y=450 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=648.5 rx=214.5 ry=186 fill=#015064 stroke=#00A8B8 stroke-width=25></ellipse></g><defs><filter x=-137.5 y=486 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=-137.5 y=486 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=684.5 rx=214.5 ry=186 fill=#015064 stroke=#007782 stroke-width=25></ellipse></g><defs><filter x=316.5 y=486 width=454 height=396.9 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=316.5 y=486 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=684.5 rx=214.5 ry=186 fill=#015064 stroke=#007782 stroke-width=25></ellipse></g><defs><filter x=272.2 y=308 width=176.9 height=129.3 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=272.2 y=308 width=176.9 height=129.3 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><line x1=436 x2=431 y1=403.2 y2=431.8 fill=none stroke=#000 stroke-linecap=round stroke-linejoin=bevel stroke-width=11></line><line x1=291 x2=280 y1=341.5 y2=403.5 fill=none stroke=#000 stroke-linecap=round stroke-linejoin=bevel stroke-width=11></line><line x1=332.9 x2=328.6 y1=384.1 y2=411.2 fill=none stroke=#000 stroke-linecap=round stroke-linejoin=bevel stroke-width=11></line><linearGradient x1=-670.75 x2=-671.59 y1=164.4 y2=164.49 gradientTransform="matrix(-184.16 -32.472 -11.461 64.997 -121359 -32126)"gradientUnits=userSpaceOnUse><stop stop-color=#EE2700 offset=0></stop><stop stop-color=#FF008E offset=1></stop></linearGradient><path d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z"clip-rule=evenodd fill-rule=evenodd></path><line x1=428.2 x2=429.1 y1=384.5 y2=378 fill=none stroke=#fff stroke-linecap=round stroke-linejoin=bevel stroke-width=7></line><line x1=395.2 x2=396.1 y1=379.5 y2=373 fill=none stroke=#fff stroke-linecap=round stroke-linejoin=bevel stroke-width=7></line><line x1=362.2 x2=363.1 y1=373.5 y2=367.4 fill=none stroke=#fff stroke-linecap=round stroke-linejoin=bevel stroke-width=7></line><line x1=324.2 x2=328.4 y1=351.3 y2=347.4 fill=none stroke=#fff stroke-linecap=round stroke-linejoin=bevel stroke-width=7></line><line x1=303.2 x2=307.4 y1=331.3 y2=327.4 fill=none stroke=#fff stroke-linecap=round stroke-linejoin=bevel stroke-width=7></line></g><defs><filter x=73.2 y=113.8 width=280.6 height=317.4 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=73.2 y=113.8 width=280.6 height=317.4 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient x1=-672.16 x2=-672.16 y1=165.03 y2=166.03 gradientTransform="matrix(-100.18 48.861 97.976 200.88 -83342 -93.059)"gradientUnits=userSpaceOnUse><stop stop-color=#A17500 offset=0></stop><stop stop-color=#5D2100 offset=1></stop></linearGradient><path d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6"clip-rule=evenodd fill-rule=evenodd></path><g stroke=#2F8A00><linearGradient x1=-660.23 x2=-660.23 y1=166.72 y2=167.72 gradientTransform="matrix(92.683 4.8573 -2.0259 38.657 61680 -3088.6)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><linearGradient x1=-661.36 x2=-661.36 y1=164.18 y2=165.18 gradientTransform="matrix(110 5.7648 -6.3599 121.35 73933 -15933)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><linearGradient x1=-656.79 x2=-656.79 y1=165.15 y2=166.15 gradientTransform="matrix(62.954 3.2993 -3.5023 66.828 42156 -8754.1)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><linearGradient x1=-663.07 x2=-663.07 y1=165.44 y2=166.44 gradientTransform="matrix(152.47 7.9907 -3.0936 59.029 101884 -4318.7)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><linearGradient x1=-662.57 x2=-662.57 y1=164.44 y2=165.44 gradientTransform="matrix(136.46 7.1517 -5.2163 99.533 91536 -11442)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><linearGradient x1=-656.43 x2=-656.43 y1=163.86 y2=164.86 gradientTransform="matrix(60.866 3.1899 -8.7773 167.48 41560 -25168)"gradientUnits=userSpaceOnUse><stop stop-color=#2F8A00 offset=0></stop><stop stop-color=#90FF57 offset=1></stop></linearGradient><path d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z"clip-rule=evenodd fill-rule=evenodd stroke-width=13></path><path d="m196.5 182.3c-14.8 21.6-25.1 41.4-30.8 59.4s-9.5 33-11.1 45.1"fill=none stroke-linecap=round stroke-width=8></path><path d="m194.9 185.7c-24.4 1.7-43.8 9-58.1 21.8s-24.7 25.4-31.3 37.8"fill=none stroke-linecap=round stroke-width=8></path><path d="m204.5 176.4c29.7-6.7 52-8.4 67-5.1s26.9 8.6 35.8 15.9"fill=none stroke-linecap=round stroke-width=8></path><path d="m196.5 181.4c20.3 9.9 38.2 20.5 53.9 31.9s27.4 22.1 35.1 32"fill=none stroke-linecap=round stroke-width=8></path></g></g><defs><filter x=50.5 y=399 width=532 height=633 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=50.5 y=399 width=532 height=633 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient x1=-666.06 x2=-666.23 y1=163.36 y2=163.75 gradientTransform="matrix(532 0 0 633 354760 -102959)"gradientUnits=userSpaceOnUse><stop stop-color=#FFF400 offset=0></stop><stop stop-color=#3C8700 offset=1></stop></linearGradient><ellipse cx=316.5 cy=715.5 rx=266 ry=316.5></ellipse></g><defs><filter x=391 y=-24 width=288 height=283 filterUnits=userSpaceOnUse><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask x=391 y=-24 width=288 height=283 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient x1=-664.56 x2=-664.56 y1=163.79 y2=164.79 gradientTransform="matrix(227 0 0 227 151421 -37204)"gradientUnits=userSpaceOnUse><stop stop-color=#FFDF00 offset=0></stop><stop stop-color=#FF9D00 offset=1></stop></linearGradient><circle cx=565.5 cy=89.5 r=113.5></circle><linearGradient x1=-644.5 x2=-645.77 y1=342 y2=342 gradientTransform="matrix(30 0 0 1 19770 -253)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=427 x2=397 y1=89 y2=89 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-641.56 x2=-642.83 y1=196.02 y2=196.07 gradientTransform="matrix(26.5 0 0 5.5 17439 -1025.5)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=430.5 x2=404 y1=55.5 y2=50 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-643.73 x2=-645 y1=185.83 y2=185.9 gradientTransform="matrix(29 0 0 8 19107 -1361)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=431 x2=402 y1=122 y2=130 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-638.94 x2=-640.22 y1=177.09 y2=177.39 gradientTransform="matrix(24 0 0 13 15783 -2145)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=442 x2=418 y1=153 y2=166 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-633.42 x2=-634.7 y1=172.41 y2=173.31 gradientTransform="matrix(20 0 0 19 13137 -3096)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=464 x2=444 y1=180 y2=199 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-619.05 x2=-619.52 y1=170.82 y2=171.82 gradientTransform="matrix(13.83 0 0 22.85 9050 -3703.4)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=491.4 x2=477.5 y1=203 y2=225.9 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=-578.5 x2=-578.63 y1=170.31 y2=171.31 gradientTransform="matrix(7.5 0 0 24.5 4860 -3953)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=524.5 x2=517 y1=219.5 y2=244 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient x1=666.5 x2=666.5 y1=170.31 y2=171.31 gradientTransform="matrix(.5 0 0 24.5 231.5 -3944)"gradientUnits=userSpaceOnUse><stop stop-color=#FFA400 offset=0></stop><stop stop-color=#FF5E00 offset=1></stop></linearGradient><line x1=564.5 x2=565 y1=228.5 y2=253 fill=none stroke-linecap=round stroke-linejoin=bevel stroke-width=12>`);
|
|
9359
9352
|
function Search() {
|
|
9360
9353
|
return _tmpl$();
|
|
9361
9354
|
}
|
|
@@ -9441,7 +9434,89 @@ function Check(props) {
|
|
|
9441
9434
|
})];
|
|
9442
9435
|
}
|
|
9443
9436
|
function TanstackLogo() {
|
|
9444
|
-
|
|
9437
|
+
const id = createUniqueId();
|
|
9438
|
+
return (() => {
|
|
9439
|
+
const _el$23 = _tmpl$17(), _el$24 = _el$23.firstChild, _el$25 = _el$24.nextSibling, _el$26 = _el$25.nextSibling, _el$27 = _el$26.firstChild, _el$28 = _el$26.nextSibling, _el$29 = _el$28.firstChild, _el$30 = _el$28.nextSibling, _el$31 = _el$30.nextSibling, _el$32 = _el$31.firstChild, _el$33 = _el$31.nextSibling, _el$34 = _el$33.firstChild, _el$35 = _el$33.nextSibling, _el$36 = _el$35.nextSibling, _el$37 = _el$36.firstChild, _el$38 = _el$36.nextSibling, _el$39 = _el$38.firstChild, _el$40 = _el$38.nextSibling, _el$41 = _el$40.nextSibling, _el$42 = _el$41.firstChild, _el$43 = _el$41.nextSibling, _el$44 = _el$43.firstChild, _el$45 = _el$43.nextSibling, _el$46 = _el$45.nextSibling, _el$47 = _el$46.firstChild, _el$48 = _el$46.nextSibling, _el$49 = _el$48.firstChild, _el$50 = _el$48.nextSibling, _el$51 = _el$50.nextSibling, _el$52 = _el$51.firstChild, _el$53 = _el$51.nextSibling, _el$54 = _el$53.firstChild, _el$55 = _el$53.nextSibling, _el$56 = _el$55.nextSibling, _el$57 = _el$56.firstChild, _el$58 = _el$56.nextSibling, _el$59 = _el$58.firstChild, _el$60 = _el$58.nextSibling, _el$61 = _el$60.firstChild, _el$62 = _el$61.nextSibling, _el$63 = _el$62.nextSibling, _el$64 = _el$63.nextSibling, _el$65 = _el$64.nextSibling, _el$66 = _el$60.nextSibling, _el$67 = _el$66.firstChild, _el$68 = _el$66.nextSibling, _el$69 = _el$68.firstChild, _el$70 = _el$68.nextSibling, _el$71 = _el$70.firstChild, _el$72 = _el$71.nextSibling, _el$73 = _el$72.nextSibling, _el$74 = _el$73.firstChild, _el$75 = _el$74.nextSibling, _el$76 = _el$75.nextSibling, _el$77 = _el$76.nextSibling, _el$78 = _el$77.nextSibling, _el$79 = _el$78.nextSibling, _el$80 = _el$79.nextSibling, _el$81 = _el$80.nextSibling, _el$82 = _el$81.nextSibling, _el$83 = _el$82.nextSibling, _el$84 = _el$83.nextSibling, _el$85 = _el$84.nextSibling, _el$86 = _el$70.nextSibling, _el$87 = _el$86.firstChild, _el$88 = _el$86.nextSibling, _el$89 = _el$88.firstChild, _el$90 = _el$88.nextSibling, _el$91 = _el$90.firstChild, _el$92 = _el$91.nextSibling, _el$93 = _el$90.nextSibling, _el$94 = _el$93.firstChild, _el$95 = _el$93.nextSibling, _el$96 = _el$95.firstChild, _el$97 = _el$95.nextSibling, _el$98 = _el$97.firstChild, _el$99 = _el$98.nextSibling, _el$100 = _el$99.nextSibling, _el$101 = _el$100.nextSibling, _el$102 = _el$101.nextSibling, _el$103 = _el$102.nextSibling, _el$104 = _el$103.nextSibling, _el$105 = _el$104.nextSibling, _el$106 = _el$105.nextSibling, _el$107 = _el$106.nextSibling, _el$108 = _el$107.nextSibling, _el$109 = _el$108.nextSibling, _el$110 = _el$109.nextSibling, _el$111 = _el$110.nextSibling, _el$112 = _el$111.nextSibling, _el$113 = _el$112.nextSibling, _el$114 = _el$113.nextSibling, _el$115 = _el$114.nextSibling;
|
|
9440
|
+
setAttribute(_el$24, "id", `a-${id}`);
|
|
9441
|
+
setAttribute(_el$25, "fill", `url(#a-${id})`);
|
|
9442
|
+
setAttribute(_el$27, "id", `am-${id}`);
|
|
9443
|
+
setAttribute(_el$28, "id", `b-${id}`);
|
|
9444
|
+
setAttribute(_el$29, "filter", `url(#am-${id})`);
|
|
9445
|
+
setAttribute(_el$30, "mask", `url(#b-${id})`);
|
|
9446
|
+
setAttribute(_el$32, "id", `ah-${id}`);
|
|
9447
|
+
setAttribute(_el$33, "id", `k-${id}`);
|
|
9448
|
+
setAttribute(_el$34, "filter", `url(#ah-${id})`);
|
|
9449
|
+
setAttribute(_el$35, "mask", `url(#k-${id})`);
|
|
9450
|
+
setAttribute(_el$37, "id", `ae-${id}`);
|
|
9451
|
+
setAttribute(_el$38, "id", `j-${id}`);
|
|
9452
|
+
setAttribute(_el$39, "filter", `url(#ae-${id})`);
|
|
9453
|
+
setAttribute(_el$40, "mask", `url(#j-${id})`);
|
|
9454
|
+
setAttribute(_el$42, "id", `ai-${id}`);
|
|
9455
|
+
setAttribute(_el$43, "id", `i-${id}`);
|
|
9456
|
+
setAttribute(_el$44, "filter", `url(#ai-${id})`);
|
|
9457
|
+
setAttribute(_el$45, "mask", `url(#i-${id})`);
|
|
9458
|
+
setAttribute(_el$47, "id", `aj-${id}`);
|
|
9459
|
+
setAttribute(_el$48, "id", `h-${id}`);
|
|
9460
|
+
setAttribute(_el$49, "filter", `url(#aj-${id})`);
|
|
9461
|
+
setAttribute(_el$50, "mask", `url(#h-${id})`);
|
|
9462
|
+
setAttribute(_el$52, "id", `ag-${id}`);
|
|
9463
|
+
setAttribute(_el$53, "id", `g-${id}`);
|
|
9464
|
+
setAttribute(_el$54, "filter", `url(#ag-${id})`);
|
|
9465
|
+
setAttribute(_el$55, "mask", `url(#g-${id})`);
|
|
9466
|
+
setAttribute(_el$57, "id", `af-${id}`);
|
|
9467
|
+
setAttribute(_el$58, "id", `f-${id}`);
|
|
9468
|
+
setAttribute(_el$59, "filter", `url(#af-${id})`);
|
|
9469
|
+
setAttribute(_el$60, "mask", `url(#f-${id})`);
|
|
9470
|
+
setAttribute(_el$64, "id", `m-${id}`);
|
|
9471
|
+
setAttribute(_el$65, "fill", `url(#m-${id})`);
|
|
9472
|
+
setAttribute(_el$67, "id", `ak-${id}`);
|
|
9473
|
+
setAttribute(_el$68, "id", `e-${id}`);
|
|
9474
|
+
setAttribute(_el$69, "filter", `url(#ak-${id})`);
|
|
9475
|
+
setAttribute(_el$70, "mask", `url(#e-${id})`);
|
|
9476
|
+
setAttribute(_el$71, "id", `n-${id}`);
|
|
9477
|
+
setAttribute(_el$72, "fill", `url(#n-${id})`);
|
|
9478
|
+
setAttribute(_el$74, "id", `r-${id}`);
|
|
9479
|
+
setAttribute(_el$75, "fill", `url(#r-${id})`);
|
|
9480
|
+
setAttribute(_el$76, "id", `s-${id}`);
|
|
9481
|
+
setAttribute(_el$77, "fill", `url(#s-${id})`);
|
|
9482
|
+
setAttribute(_el$78, "id", `q-${id}`);
|
|
9483
|
+
setAttribute(_el$79, "fill", `url(#q-${id})`);
|
|
9484
|
+
setAttribute(_el$80, "id", `p-${id}`);
|
|
9485
|
+
setAttribute(_el$81, "fill", `url(#p-${id})`);
|
|
9486
|
+
setAttribute(_el$82, "id", `o-${id}`);
|
|
9487
|
+
setAttribute(_el$83, "fill", `url(#o-${id})`);
|
|
9488
|
+
setAttribute(_el$84, "id", `l-${id}`);
|
|
9489
|
+
setAttribute(_el$85, "fill", `url(#l-${id})`);
|
|
9490
|
+
setAttribute(_el$87, "id", `al-${id}`);
|
|
9491
|
+
setAttribute(_el$88, "id", `d-${id}`);
|
|
9492
|
+
setAttribute(_el$89, "filter", `url(#al-${id})`);
|
|
9493
|
+
setAttribute(_el$90, "mask", `url(#d-${id})`);
|
|
9494
|
+
setAttribute(_el$91, "id", `u-${id}`);
|
|
9495
|
+
setAttribute(_el$92, "fill", `url(#u-${id})`);
|
|
9496
|
+
setAttribute(_el$94, "id", `ad-${id}`);
|
|
9497
|
+
setAttribute(_el$95, "id", `c-${id}`);
|
|
9498
|
+
setAttribute(_el$96, "filter", `url(#ad-${id})`);
|
|
9499
|
+
setAttribute(_el$97, "mask", `url(#c-${id})`);
|
|
9500
|
+
setAttribute(_el$98, "id", `t-${id}`);
|
|
9501
|
+
setAttribute(_el$99, "fill", `url(#t-${id})`);
|
|
9502
|
+
setAttribute(_el$100, "id", `v-${id}`);
|
|
9503
|
+
setAttribute(_el$101, "stroke", `url(#v-${id})`);
|
|
9504
|
+
setAttribute(_el$102, "id", `aa-${id}`);
|
|
9505
|
+
setAttribute(_el$103, "stroke", `url(#aa-${id})`);
|
|
9506
|
+
setAttribute(_el$104, "id", `w-${id}`);
|
|
9507
|
+
setAttribute(_el$105, "stroke", `url(#w-${id})`);
|
|
9508
|
+
setAttribute(_el$106, "id", `ac-${id}`);
|
|
9509
|
+
setAttribute(_el$107, "stroke", `url(#ac-${id})`);
|
|
9510
|
+
setAttribute(_el$108, "id", `ab-${id}`);
|
|
9511
|
+
setAttribute(_el$109, "stroke", `url(#ab-${id})`);
|
|
9512
|
+
setAttribute(_el$110, "id", `y-${id}`);
|
|
9513
|
+
setAttribute(_el$111, "stroke", `url(#y-${id})`);
|
|
9514
|
+
setAttribute(_el$112, "id", `x-${id}`);
|
|
9515
|
+
setAttribute(_el$113, "stroke", `url(#x-${id})`);
|
|
9516
|
+
setAttribute(_el$114, "id", `z-${id}`);
|
|
9517
|
+
setAttribute(_el$115, "stroke", `url(#z-${id})`);
|
|
9518
|
+
return _el$23;
|
|
9519
|
+
})();
|
|
9445
9520
|
}
|
|
9446
9521
|
|
|
9447
9522
|
// src/Context.ts
|
|
@@ -9462,11 +9537,11 @@ function useTheme() {
|
|
|
9462
9537
|
}
|
|
9463
9538
|
|
|
9464
9539
|
// src/Explorer.tsx
|
|
9465
|
-
var _tmpl$18 = /* @__PURE__ */ template(`<span><svg width=
|
|
9540
|
+
var _tmpl$18 = /* @__PURE__ */ template(`<span><svg width=16 height=16 viewBox="0 0 16 16"fill=none xmlns=http://www.w3.org/2000/svg><path d="M6 12L10 8L6 4"stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
9466
9541
|
var _tmpl$22 = /* @__PURE__ */ template(`<button title="Copy object to clipboard">`);
|
|
9467
|
-
var _tmpl$32 = /* @__PURE__ */ template(`<button title="Remove all items"
|
|
9468
|
-
var _tmpl$42 = /* @__PURE__ */ template(`<button title="Delete item"
|
|
9469
|
-
var _tmpl$52 = /* @__PURE__ */ template(`<button title="Toggle value"
|
|
9542
|
+
var _tmpl$32 = /* @__PURE__ */ template(`<button title="Remove all items"aria-label="Remove all items">`);
|
|
9543
|
+
var _tmpl$42 = /* @__PURE__ */ template(`<button title="Delete item"aria-label="Delete item">`);
|
|
9544
|
+
var _tmpl$52 = /* @__PURE__ */ template(`<button title="Toggle value"aria-label="Toggle value">`);
|
|
9470
9545
|
var _tmpl$62 = /* @__PURE__ */ template(`<div>`);
|
|
9471
9546
|
var _tmpl$72 = /* @__PURE__ */ template(`<div><button> <span></span> <span> `);
|
|
9472
9547
|
var _tmpl$82 = /* @__PURE__ */ template(`<input>`);
|
|
@@ -9804,7 +9879,7 @@ function Explorer(props) {
|
|
|
9804
9879
|
get each() {
|
|
9805
9880
|
return subEntryPages();
|
|
9806
9881
|
},
|
|
9807
|
-
children: (
|
|
9882
|
+
children: (entries2, index) => (() => {
|
|
9808
9883
|
const _el$22 = _tmpl$112(), _el$23 = _el$22.firstChild, _el$24 = _el$23.firstChild, _el$25 = _el$24.firstChild, _el$29 = _el$25.nextSibling, _el$27 = _el$29.nextSibling, _el$30 = _el$27.nextSibling; _el$30.nextSibling;
|
|
9809
9884
|
_el$24.$$click = () => setExpandedPages((old) => old.includes(index) ? old.filter((d) => d !== index) : [...old, index]);
|
|
9810
9885
|
insert(_el$24, createComponent(Expander, {
|
|
@@ -9822,7 +9897,7 @@ function Explorer(props) {
|
|
|
9822
9897
|
const _el$31 = _tmpl$62();
|
|
9823
9898
|
insert(_el$31, createComponent(Key, {
|
|
9824
9899
|
get each() {
|
|
9825
|
-
return
|
|
9900
|
+
return entries2();
|
|
9826
9901
|
},
|
|
9827
9902
|
by: (entry) => entry.label,
|
|
9828
9903
|
children: (entry) => createComponent(Explorer, {
|
|
@@ -10109,7 +10184,7 @@ var loadFonts = () => {
|
|
|
10109
10184
|
};
|
|
10110
10185
|
|
|
10111
10186
|
// src/Devtools.tsx
|
|
10112
|
-
var _tmpl$19 = /* @__PURE__ */ template(`<div><div aria-hidden=
|
|
10187
|
+
var _tmpl$19 = /* @__PURE__ */ template(`<div><div aria-hidden=true></div><button aria-label="Open Tanstack query devtools">`);
|
|
10113
10188
|
var _tmpl$23 = /* @__PURE__ */ template(`<div>`);
|
|
10114
10189
|
var _tmpl$33 = /* @__PURE__ */ template(`<span>Asc`);
|
|
10115
10190
|
var _tmpl$43 = /* @__PURE__ */ template(`<span>Desc`);
|
|
@@ -10123,16 +10198,16 @@ var _tmpl$113 = /* @__PURE__ */ template(`<span>Theme`);
|
|
|
10123
10198
|
var _tmpl$122 = /* @__PURE__ */ template(`<span>Light`);
|
|
10124
10199
|
var _tmpl$132 = /* @__PURE__ */ template(`<span>Dark`);
|
|
10125
10200
|
var _tmpl$142 = /* @__PURE__ */ template(`<span>System`);
|
|
10126
|
-
var _tmpl$152 = /* @__PURE__ */ template(`<aside aria-label="Tanstack query devtools"><div></div><button aria-label="Close tanstack query devtools"></button><div><div><button aria-label="Close Tanstack query devtools"><span>TANSTACK</span><span> v</span></button></div><div><div><div><input aria-label="Filter queries by query key"
|
|
10201
|
+
var _tmpl$152 = /* @__PURE__ */ template(`<aside aria-label="Tanstack query devtools"><div></div><button aria-label="Close tanstack query devtools"></button><div><div><button aria-label="Close Tanstack query devtools"><span>TANSTACK</span><span> v</span></button></div><div><div><div><input aria-label="Filter queries by query key"type=text placeholder=Filter class=tsqd-query-filter-textfield></div><div><select></select></div><button class=tsqd-query-filter-sort-order-btn></button></div><div><button aria-label="Clear query cache"title="Clear query cache"></button><button></button></div></div><div><div class=tsqd-queries-container>`);
|
|
10127
10202
|
var _tmpl$162 = /* @__PURE__ */ template(`<option>Sort by `);
|
|
10128
|
-
var _tmpl$172 = /* @__PURE__ */ template(`<div class=
|
|
10129
|
-
var _tmpl$182 = /* @__PURE__ */ template(`<button><div></div><code class=
|
|
10130
|
-
var _tmpl$192 = /* @__PURE__ */ template(`<div role=
|
|
10203
|
+
var _tmpl$172 = /* @__PURE__ */ template(`<div class=tsqd-query-disabled-indicator>disabled`);
|
|
10204
|
+
var _tmpl$182 = /* @__PURE__ */ template(`<button><div></div><code class=tsqd-query-hash>`);
|
|
10205
|
+
var _tmpl$192 = /* @__PURE__ */ template(`<div role=tooltip id=tsqd-status-tooltip>`);
|
|
10131
10206
|
var _tmpl$20 = /* @__PURE__ */ template(`<span>`);
|
|
10132
10207
|
var _tmpl$21 = /* @__PURE__ */ template(`<button><span></span><span>`);
|
|
10133
10208
|
var _tmpl$222 = /* @__PURE__ */ template(`<button><span></span> Error`);
|
|
10134
|
-
var _tmpl$232 = /* @__PURE__ */ template(`<div><span></span>Trigger Error<select><option value=""
|
|
10135
|
-
var _tmpl$24 = /* @__PURE__ */ template(`<div><div>Query Details</div><div><div class=
|
|
10209
|
+
var _tmpl$232 = /* @__PURE__ */ template(`<div><span></span>Trigger Error<select><option value=""disabled selected>`);
|
|
10210
|
+
var _tmpl$24 = /* @__PURE__ */ template(`<div><div>Query Details</div><div><div class=tsqd-query-details-summary><pre><code></code></pre><span></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>Actions</div><div><button><span></span>Refetch</button><button><span></span>Invalidate</button><button><span></span>Reset</button><button><span></span>Remove</button><button><span></span> Loading</button></div><div>Data Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-data-explorer"></div><div>Query Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer">`);
|
|
10136
10211
|
var _tmpl$25 = /* @__PURE__ */ template(`<option>`);
|
|
10137
10212
|
var firstBreakpoint = 1024;
|
|
10138
10213
|
var secondBreakpoint = 796;
|