@tanstack/query-devtools 5.0.0 → 5.0.5
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 +3 -3
- package/src/__tests__/devtools.test.tsx +2 -0
- package/src/__tests__/utils.test.ts +1 -0
- package/src/icons/index.tsx +86 -79
- package/build/chunk/L2WNRKEK.js +0 -1912
- package/build/chunk/LGDS24HT.jsx +0 -1948
|
@@ -34,7 +34,7 @@ import {
|
|
|
34
34
|
untrack,
|
|
35
35
|
useContext,
|
|
36
36
|
useTransition
|
|
37
|
-
} from "../chunk/
|
|
37
|
+
} from "../chunk/AHAJNSNO.jsx";
|
|
38
38
|
|
|
39
39
|
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
40
40
|
var characterMap = {
|
|
@@ -711,7 +711,7 @@ function clsx() {
|
|
|
711
711
|
return n2;
|
|
712
712
|
}
|
|
713
713
|
|
|
714
|
-
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.
|
|
714
|
+
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.1/node_modules/@solid-primitives/transition-group/dist/index.js
|
|
715
715
|
var noop = () => {
|
|
716
716
|
};
|
|
717
717
|
function createListTransition(source, options) {
|
|
@@ -779,9 +779,12 @@ function createListTransition(source, options) {
|
|
|
779
779
|
);
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
782
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
783
783
|
var isClient = !isServer;
|
|
784
784
|
var isDev = isClient && !!DEV;
|
|
785
|
+
var noop2 = () => void 0;
|
|
786
|
+
var isNonNullable = (i2) => i2 != null;
|
|
787
|
+
var filterNonNullable = (arr) => arr.filter(isNonNullable);
|
|
785
788
|
function chain(callbacks) {
|
|
786
789
|
return (...args) => {
|
|
787
790
|
for (const callback of callbacks)
|
|
@@ -802,8 +805,42 @@ function accessWith(valueOrFn, ...args) {
|
|
|
802
805
|
return typeof valueOrFn === "function" ? valueOrFn(...args) : valueOrFn;
|
|
803
806
|
}
|
|
804
807
|
var tryOnCleanup = isDev ? (fn) => getOwner() ? onCleanup(fn) : fn : onCleanup;
|
|
808
|
+
function handleDiffArray(current, prev, handleAdded, handleRemoved) {
|
|
809
|
+
const currLength = current.length;
|
|
810
|
+
const prevLength = prev.length;
|
|
811
|
+
let i2 = 0;
|
|
812
|
+
if (!prevLength) {
|
|
813
|
+
for (; i2 < currLength; i2++)
|
|
814
|
+
handleAdded(current[i2]);
|
|
815
|
+
return;
|
|
816
|
+
}
|
|
817
|
+
if (!currLength) {
|
|
818
|
+
for (; i2 < prevLength; i2++)
|
|
819
|
+
handleRemoved(prev[i2]);
|
|
820
|
+
return;
|
|
821
|
+
}
|
|
822
|
+
for (; i2 < prevLength; i2++) {
|
|
823
|
+
if (prev[i2] !== current[i2])
|
|
824
|
+
break;
|
|
825
|
+
}
|
|
826
|
+
let prevEl;
|
|
827
|
+
let currEl;
|
|
828
|
+
prev = prev.slice(i2);
|
|
829
|
+
current = current.slice(i2);
|
|
830
|
+
for (prevEl of prev) {
|
|
831
|
+
if (!current.includes(prevEl))
|
|
832
|
+
handleRemoved(prevEl);
|
|
833
|
+
}
|
|
834
|
+
for (currEl of current) {
|
|
835
|
+
if (!prev.includes(currEl))
|
|
836
|
+
handleAdded(currEl);
|
|
837
|
+
}
|
|
838
|
+
}
|
|
805
839
|
|
|
806
|
-
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.
|
|
840
|
+
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.1/node_modules/@solid-primitives/refs/dist/index.js
|
|
841
|
+
function mergeRefs(...refs) {
|
|
842
|
+
return chain(refs);
|
|
843
|
+
}
|
|
807
844
|
var defaultElementPredicate = isServer ? (item) => item != null && typeof item === "object" && "t" in item : (item) => item instanceof Element;
|
|
808
845
|
function getResolvedElements(value, predicate) {
|
|
809
846
|
if (predicate(value))
|
|
@@ -833,7 +870,7 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
833
870
|
return memo;
|
|
834
871
|
}
|
|
835
872
|
|
|
836
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.
|
|
873
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.8.1/node_modules/solid-transition-group/dist/index.js
|
|
837
874
|
function createClassnames(props) {
|
|
838
875
|
return createMemo(() => {
|
|
839
876
|
const name = props.name || "s";
|
|
@@ -956,7 +993,7 @@ var TransitionGroup = (props) => {
|
|
|
956
993
|
});
|
|
957
994
|
};
|
|
958
995
|
|
|
959
|
-
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.
|
|
996
|
+
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.1/node_modules/@solid-primitives/keyed/dist/index.js
|
|
960
997
|
var FALLBACK = Symbol("fallback");
|
|
961
998
|
function dispose(list) {
|
|
962
999
|
for (const o2 of list)
|
|
@@ -1054,45 +1091,7 @@ function Key(props) {
|
|
|
1054
1091
|
);
|
|
1055
1092
|
}
|
|
1056
1093
|
|
|
1057
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1058
|
-
var noop3 = () => void 0;
|
|
1059
|
-
var isNonNullable2 = (i2) => i2 != null;
|
|
1060
|
-
var filterNonNullable2 = (arr) => arr.filter(isNonNullable2);
|
|
1061
|
-
var access2 = (v) => typeof v === "function" && !v.length ? v() : v;
|
|
1062
|
-
var asArray2 = (value) => Array.isArray(value) ? value : value ? [value] : [];
|
|
1063
|
-
function handleDiffArray2(current, prev, handleAdded, handleRemoved) {
|
|
1064
|
-
const currLength = current.length;
|
|
1065
|
-
const prevLength = prev.length;
|
|
1066
|
-
let i2 = 0;
|
|
1067
|
-
if (!prevLength) {
|
|
1068
|
-
for (; i2 < currLength; i2++)
|
|
1069
|
-
handleAdded(current[i2]);
|
|
1070
|
-
return;
|
|
1071
|
-
}
|
|
1072
|
-
if (!currLength) {
|
|
1073
|
-
for (; i2 < prevLength; i2++)
|
|
1074
|
-
handleRemoved(prev[i2]);
|
|
1075
|
-
return;
|
|
1076
|
-
}
|
|
1077
|
-
for (; i2 < prevLength; i2++) {
|
|
1078
|
-
if (prev[i2] !== current[i2])
|
|
1079
|
-
break;
|
|
1080
|
-
}
|
|
1081
|
-
let prevEl;
|
|
1082
|
-
let currEl;
|
|
1083
|
-
prev = prev.slice(i2);
|
|
1084
|
-
current = current.slice(i2);
|
|
1085
|
-
for (prevEl of prev) {
|
|
1086
|
-
if (!current.includes(prevEl))
|
|
1087
|
-
handleRemoved(prevEl);
|
|
1088
|
-
}
|
|
1089
|
-
for (currEl of current) {
|
|
1090
|
-
if (!prev.includes(currEl))
|
|
1091
|
-
handleAdded(currEl);
|
|
1092
|
-
}
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.7.8/node_modules/@solid-primitives/storage/dist/index.js
|
|
1094
|
+
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.1/node_modules/@solid-primitives/storage/dist/index.js
|
|
1096
1095
|
function createStorage(props) {
|
|
1097
1096
|
const [error, setError] = createSignal();
|
|
1098
1097
|
const handleError = props?.throw ? (err, fallback) => {
|
|
@@ -1311,10 +1310,30 @@ var cookieStorage = addClearMethod({
|
|
|
1311
1310
|
}
|
|
1312
1311
|
});
|
|
1313
1312
|
|
|
1314
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1313
|
+
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.1/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
1314
|
+
function makeEventListener(target, type, handler, options) {
|
|
1315
|
+
target.addEventListener(type, handler, options);
|
|
1316
|
+
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
1317
|
+
}
|
|
1318
|
+
function createEventListener(targets, type, handler, options) {
|
|
1319
|
+
if (isServer)
|
|
1320
|
+
return;
|
|
1321
|
+
const attachListeners = () => {
|
|
1322
|
+
asArray(access(targets)).forEach((el) => {
|
|
1323
|
+
if (el)
|
|
1324
|
+
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
1325
|
+
});
|
|
1326
|
+
};
|
|
1327
|
+
if (typeof targets === "function")
|
|
1328
|
+
createEffect(attachListeners);
|
|
1329
|
+
else
|
|
1330
|
+
createRenderEffect(attachListeners);
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.18_solid-js@1.8.1/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
1315
1334
|
function makeResizeObserver(callback, options) {
|
|
1316
1335
|
if (isServer) {
|
|
1317
|
-
return { observe:
|
|
1336
|
+
return { observe: noop2, unobserve: noop2 };
|
|
1318
1337
|
}
|
|
1319
1338
|
const observer = new ResizeObserver(callback);
|
|
1320
1339
|
onCleanup(observer.disconnect.bind(observer));
|
|
@@ -1326,8 +1345,8 @@ function makeResizeObserver(callback, options) {
|
|
|
1326
1345
|
function createResizeObserver(targets, onResize, options) {
|
|
1327
1346
|
if (isServer)
|
|
1328
1347
|
return;
|
|
1329
|
-
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((
|
|
1330
|
-
for (const entry of
|
|
1348
|
+
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((entries2) => {
|
|
1349
|
+
for (const entry of entries2) {
|
|
1331
1350
|
const { contentRect, target } = entry, width = Math.round(contentRect.width), height = Math.round(contentRect.height), previous = previousMap.get(target);
|
|
1332
1351
|
if (!previous || previous.width !== width || previous.height !== height) {
|
|
1333
1352
|
onResize(contentRect, target, entry);
|
|
@@ -1336,34 +1355,14 @@ function createResizeObserver(targets, onResize, options) {
|
|
|
1336
1355
|
}
|
|
1337
1356
|
}, options);
|
|
1338
1357
|
createEffect((prev) => {
|
|
1339
|
-
const refs =
|
|
1340
|
-
|
|
1358
|
+
const refs = filterNonNullable(asArray(access(targets)));
|
|
1359
|
+
handleDiffArray(refs, prev, observe, unobserve);
|
|
1341
1360
|
return refs;
|
|
1342
1361
|
}, []);
|
|
1343
1362
|
}
|
|
1344
1363
|
|
|
1345
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
1346
|
-
function
|
|
1347
|
-
target.addEventListener(type, handler, options);
|
|
1348
|
-
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
1349
|
-
}
|
|
1350
|
-
function createEventListener(targets, type, handler, options) {
|
|
1351
|
-
if (isServer)
|
|
1352
|
-
return;
|
|
1353
|
-
const attachListeners = () => {
|
|
1354
|
-
asArray(access(targets)).forEach((el) => {
|
|
1355
|
-
if (el)
|
|
1356
|
-
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
1357
|
-
});
|
|
1358
|
-
};
|
|
1359
|
-
if (typeof targets === "function")
|
|
1360
|
-
createEffect(attachListeners);
|
|
1361
|
-
else
|
|
1362
|
-
createRenderEffect(attachListeners);
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
|
-
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.7.8/node_modules/@solid-primitives/props/dist/index.js
|
|
1366
|
-
function trueFn3() {
|
|
1364
|
+
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.1/node_modules/@solid-primitives/props/dist/index.js
|
|
1365
|
+
function trueFn2() {
|
|
1367
1366
|
return true;
|
|
1368
1367
|
}
|
|
1369
1368
|
var propTraps = {
|
|
@@ -1375,8 +1374,8 @@ var propTraps = {
|
|
|
1375
1374
|
has(_, property) {
|
|
1376
1375
|
return _.has(property);
|
|
1377
1376
|
},
|
|
1378
|
-
set:
|
|
1379
|
-
deleteProperty:
|
|
1377
|
+
set: trueFn2,
|
|
1378
|
+
deleteProperty: trueFn2,
|
|
1380
1379
|
getOwnPropertyDescriptor(_, property) {
|
|
1381
1380
|
return {
|
|
1382
1381
|
configurable: true,
|
|
@@ -1384,8 +1383,8 @@ var propTraps = {
|
|
|
1384
1383
|
get() {
|
|
1385
1384
|
return _.get(property);
|
|
1386
1385
|
},
|
|
1387
|
-
set:
|
|
1388
|
-
deleteProperty:
|
|
1386
|
+
set: trueFn2,
|
|
1387
|
+
deleteProperty: trueFn2
|
|
1389
1388
|
};
|
|
1390
1389
|
},
|
|
1391
1390
|
ownKeys(_) {
|
|
@@ -1484,12 +1483,7 @@ function combineProps(...args) {
|
|
|
1484
1483
|
);
|
|
1485
1484
|
}
|
|
1486
1485
|
|
|
1487
|
-
// ../../node_modules/.pnpm/@
|
|
1488
|
-
function mergeRefs(...refs) {
|
|
1489
|
-
return chain(refs);
|
|
1490
|
-
}
|
|
1491
|
-
|
|
1492
|
-
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.7.8/node_modules/@kobalte/utils/dist/index.js
|
|
1486
|
+
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.1/node_modules/@kobalte/utils/dist/index.js
|
|
1493
1487
|
function addItemToArray(array, item, index = -1) {
|
|
1494
1488
|
if (!(index in array)) {
|
|
1495
1489
|
return [...array, item];
|
|
@@ -1759,7 +1753,7 @@ function getFocusableTreeWalker(root, opts, scope) {
|
|
|
1759
1753
|
}
|
|
1760
1754
|
return walker2;
|
|
1761
1755
|
}
|
|
1762
|
-
function
|
|
1756
|
+
function noop3() {
|
|
1763
1757
|
return;
|
|
1764
1758
|
}
|
|
1765
1759
|
function isPointInPolygon(point, polygon) {
|
|
@@ -1906,9 +1900,11 @@ var visuallyHiddenStyles = {
|
|
|
1906
1900
|
"white-space": "nowrap"
|
|
1907
1901
|
};
|
|
1908
1902
|
|
|
1909
|
-
// ../../node_modules/.pnpm/solid-js@1.
|
|
1903
|
+
// ../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/store/dist/store.js
|
|
1910
1904
|
var $RAW = Symbol("store-raw");
|
|
1911
1905
|
var $NODE = Symbol("store-node");
|
|
1906
|
+
var $HAS = Symbol("store-has");
|
|
1907
|
+
var $SELF = Symbol("store-self");
|
|
1912
1908
|
function wrap$1(value) {
|
|
1913
1909
|
let p2 = value[$PROXY];
|
|
1914
1910
|
if (!p2) {
|
|
@@ -1916,9 +1912,9 @@ function wrap$1(value) {
|
|
|
1916
1912
|
value: p2 = new Proxy(value, proxyTraps$1)
|
|
1917
1913
|
});
|
|
1918
1914
|
if (!Array.isArray(value)) {
|
|
1919
|
-
const
|
|
1920
|
-
for (let i2 = 0, l2 =
|
|
1921
|
-
const prop =
|
|
1915
|
+
const keys2 = Object.keys(value), desc = Object.getOwnPropertyDescriptors(value);
|
|
1916
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
1917
|
+
const prop = keys2[i2];
|
|
1922
1918
|
if (desc[prop].get) {
|
|
1923
1919
|
Object.defineProperty(value, prop, {
|
|
1924
1920
|
enumerable: desc[prop].enumerable,
|
|
@@ -1955,9 +1951,9 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
1955
1951
|
item = Object.assign({}, item);
|
|
1956
1952
|
else
|
|
1957
1953
|
set.add(item);
|
|
1958
|
-
const
|
|
1959
|
-
for (let i2 = 0, l2 =
|
|
1960
|
-
prop =
|
|
1954
|
+
const keys2 = Object.keys(item), desc = Object.getOwnPropertyDescriptors(item);
|
|
1955
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
1956
|
+
prop = keys2[i2];
|
|
1961
1957
|
if (desc[prop].get)
|
|
1962
1958
|
continue;
|
|
1963
1959
|
v = item[prop];
|
|
@@ -1967,16 +1963,23 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
1967
1963
|
}
|
|
1968
1964
|
return item;
|
|
1969
1965
|
}
|
|
1970
|
-
function
|
|
1971
|
-
let nodes = target[
|
|
1966
|
+
function getNodes(target, symbol) {
|
|
1967
|
+
let nodes = target[symbol];
|
|
1972
1968
|
if (!nodes)
|
|
1973
|
-
Object.defineProperty(target,
|
|
1969
|
+
Object.defineProperty(target, symbol, {
|
|
1974
1970
|
value: nodes = /* @__PURE__ */ Object.create(null)
|
|
1975
1971
|
});
|
|
1976
1972
|
return nodes;
|
|
1977
1973
|
}
|
|
1978
|
-
function
|
|
1979
|
-
|
|
1974
|
+
function getNode(nodes, property, value) {
|
|
1975
|
+
if (nodes[property])
|
|
1976
|
+
return nodes[property];
|
|
1977
|
+
const [s2, set] = createSignal(value, {
|
|
1978
|
+
equals: false,
|
|
1979
|
+
internal: true
|
|
1980
|
+
});
|
|
1981
|
+
s2.$ = set;
|
|
1982
|
+
return nodes[property] = s2;
|
|
1980
1983
|
}
|
|
1981
1984
|
function proxyDescriptor$1(target, property) {
|
|
1982
1985
|
const desc = Reflect.getOwnPropertyDescriptor(target, property);
|
|
@@ -1988,23 +1991,12 @@ function proxyDescriptor$1(target, property) {
|
|
|
1988
1991
|
return desc;
|
|
1989
1992
|
}
|
|
1990
1993
|
function trackSelf(target) {
|
|
1991
|
-
|
|
1992
|
-
const nodes = getDataNodes(target);
|
|
1993
|
-
(nodes._ || (nodes._ = createDataNode()))();
|
|
1994
|
-
}
|
|
1994
|
+
getListener() && getNode(getNodes(target, $NODE), $SELF)();
|
|
1995
1995
|
}
|
|
1996
1996
|
function ownKeys(target) {
|
|
1997
1997
|
trackSelf(target);
|
|
1998
1998
|
return Reflect.ownKeys(target);
|
|
1999
1999
|
}
|
|
2000
|
-
function createDataNode(value) {
|
|
2001
|
-
const [s2, set] = createSignal(value, {
|
|
2002
|
-
equals: false,
|
|
2003
|
-
internal: true
|
|
2004
|
-
});
|
|
2005
|
-
s2.$ = set;
|
|
2006
|
-
return s2;
|
|
2007
|
-
}
|
|
2008
2000
|
var proxyTraps$1 = {
|
|
2009
2001
|
get(target, property, receiver) {
|
|
2010
2002
|
if (property === $RAW)
|
|
@@ -2015,22 +2007,22 @@ var proxyTraps$1 = {
|
|
|
2015
2007
|
trackSelf(target);
|
|
2016
2008
|
return receiver;
|
|
2017
2009
|
}
|
|
2018
|
-
const nodes =
|
|
2010
|
+
const nodes = getNodes(target, $NODE);
|
|
2019
2011
|
const tracked = nodes[property];
|
|
2020
2012
|
let value = tracked ? tracked() : target[property];
|
|
2021
|
-
if (property === $NODE || property === "__proto__")
|
|
2013
|
+
if (property === $NODE || property === $HAS || property === "__proto__")
|
|
2022
2014
|
return value;
|
|
2023
2015
|
if (!tracked) {
|
|
2024
2016
|
const desc = Object.getOwnPropertyDescriptor(target, property);
|
|
2025
2017
|
if (getListener() && (typeof value !== "function" || target.hasOwnProperty(property)) && !(desc && desc.get))
|
|
2026
|
-
value =
|
|
2018
|
+
value = getNode(nodes, property, value)();
|
|
2027
2019
|
}
|
|
2028
2020
|
return isWrappable(value) ? wrap$1(value) : value;
|
|
2029
2021
|
},
|
|
2030
2022
|
has(target, property) {
|
|
2031
|
-
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === "__proto__")
|
|
2023
|
+
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === $HAS || property === "__proto__")
|
|
2032
2024
|
return true;
|
|
2033
|
-
|
|
2025
|
+
getListener() && getNode(getNodes(target, $HAS), property)();
|
|
2034
2026
|
return property in target;
|
|
2035
2027
|
},
|
|
2036
2028
|
set() {
|
|
@@ -2046,24 +2038,29 @@ function setProperty(state2, property, value, deleting = false) {
|
|
|
2046
2038
|
if (!deleting && state2[property] === value)
|
|
2047
2039
|
return;
|
|
2048
2040
|
const prev = state2[property], len = state2.length;
|
|
2049
|
-
if (value === void 0)
|
|
2041
|
+
if (value === void 0) {
|
|
2050
2042
|
delete state2[property];
|
|
2051
|
-
|
|
2043
|
+
if (state2[$HAS] && state2[$HAS][property] && prev !== void 0)
|
|
2044
|
+
state2[$HAS][property].$();
|
|
2045
|
+
} else {
|
|
2052
2046
|
state2[property] = value;
|
|
2053
|
-
|
|
2054
|
-
|
|
2047
|
+
if (state2[$HAS] && state2[$HAS][property] && prev === void 0)
|
|
2048
|
+
state2[$HAS][property].$();
|
|
2049
|
+
}
|
|
2050
|
+
let nodes = getNodes(state2, $NODE), node;
|
|
2051
|
+
if (node = getNode(nodes, property, prev))
|
|
2055
2052
|
node.$(() => value);
|
|
2056
2053
|
if (Array.isArray(state2) && state2.length !== len) {
|
|
2057
2054
|
for (let i2 = state2.length; i2 < len; i2++)
|
|
2058
2055
|
(node = nodes[i2]) && node.$();
|
|
2059
|
-
(node =
|
|
2056
|
+
(node = getNode(nodes, "length", len)) && node.$(state2.length);
|
|
2060
2057
|
}
|
|
2061
|
-
(node = nodes
|
|
2058
|
+
(node = nodes[$SELF]) && node.$();
|
|
2062
2059
|
}
|
|
2063
2060
|
function mergeStoreNode(state2, value) {
|
|
2064
|
-
const
|
|
2065
|
-
for (let i2 = 0; i2 <
|
|
2066
|
-
const key =
|
|
2061
|
+
const keys2 = Object.keys(value);
|
|
2062
|
+
for (let i2 = 0; i2 < keys2.length; i2 += 1) {
|
|
2063
|
+
const key = keys2[i2];
|
|
2067
2064
|
setProperty(state2, key, value[key]);
|
|
2068
2065
|
}
|
|
2069
2066
|
}
|
|
@@ -2101,11 +2098,7 @@ function updatePath(current, path, traversed = []) {
|
|
|
2101
2098
|
}
|
|
2102
2099
|
return;
|
|
2103
2100
|
} else if (isArray4 && partType === "object") {
|
|
2104
|
-
const {
|
|
2105
|
-
from = 0,
|
|
2106
|
-
to = current.length - 1,
|
|
2107
|
-
by = 1
|
|
2108
|
-
} = part;
|
|
2101
|
+
const { from = 0, to = current.length - 1, by = 1 } = part;
|
|
2109
2102
|
for (let i2 = from; i2 <= to; i2 += by) {
|
|
2110
2103
|
updatePath(current, [i2].concat(path), traversed);
|
|
2111
2104
|
}
|
|
@@ -2182,7 +2175,7 @@ function $d6fd23bc337660df$var$getLanguage(locale) {
|
|
|
2182
2175
|
return locale.split("-")[0];
|
|
2183
2176
|
}
|
|
2184
2177
|
|
|
2185
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
2178
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
|
|
2186
2179
|
var sides = ["top", "right", "bottom", "left"];
|
|
2187
2180
|
var min = Math.min;
|
|
2188
2181
|
var max = Math.max;
|
|
@@ -2202,7 +2195,7 @@ var oppositeAlignmentMap = {
|
|
|
2202
2195
|
start: "end",
|
|
2203
2196
|
end: "start"
|
|
2204
2197
|
};
|
|
2205
|
-
function
|
|
2198
|
+
function clamp2(start, value, end) {
|
|
2206
2199
|
return max(start, min(value, end));
|
|
2207
2200
|
}
|
|
2208
2201
|
function evaluate(value, param) {
|
|
@@ -2545,7 +2538,7 @@ var arrow = (options) => ({
|
|
|
2545
2538
|
const min$1 = minPadding;
|
|
2546
2539
|
const max2 = clientSize - arrowDimensions[length] - maxPadding;
|
|
2547
2540
|
const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;
|
|
2548
|
-
const offset2 =
|
|
2541
|
+
const offset2 = clamp2(min$1, center, max2);
|
|
2549
2542
|
const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center != offset2 && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;
|
|
2550
2543
|
const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max2 : 0;
|
|
2551
2544
|
return {
|
|
@@ -2818,14 +2811,14 @@ var shift = function(options) {
|
|
|
2818
2811
|
const maxSide = mainAxis === "y" ? "bottom" : "right";
|
|
2819
2812
|
const min2 = mainAxisCoord + overflow[minSide];
|
|
2820
2813
|
const max2 = mainAxisCoord - overflow[maxSide];
|
|
2821
|
-
mainAxisCoord =
|
|
2814
|
+
mainAxisCoord = clamp2(min2, mainAxisCoord, max2);
|
|
2822
2815
|
}
|
|
2823
2816
|
if (checkCrossAxis) {
|
|
2824
2817
|
const minSide = crossAxis === "y" ? "top" : "left";
|
|
2825
2818
|
const maxSide = crossAxis === "y" ? "bottom" : "right";
|
|
2826
2819
|
const min2 = crossAxisCoord + overflow[minSide];
|
|
2827
2820
|
const max2 = crossAxisCoord - overflow[maxSide];
|
|
2828
|
-
crossAxisCoord =
|
|
2821
|
+
crossAxisCoord = clamp2(min2, crossAxisCoord, max2);
|
|
2829
2822
|
}
|
|
2830
2823
|
const limitedCoords = limiter.fn({
|
|
2831
2824
|
...state2,
|
|
@@ -2919,7 +2912,7 @@ var size = function(options) {
|
|
|
2919
2912
|
};
|
|
2920
2913
|
};
|
|
2921
2914
|
|
|
2922
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
2915
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dom/dist/floating-ui.utils.dom.mjs
|
|
2923
2916
|
function getNodeName(node) {
|
|
2924
2917
|
if (isNode(node)) {
|
|
2925
2918
|
return (node.nodeName || "").toLowerCase();
|
|
@@ -3457,8 +3450,8 @@ function observeMove(element, onMove) {
|
|
|
3457
3450
|
threshold: max(0, min(1, threshold)) || 1
|
|
3458
3451
|
};
|
|
3459
3452
|
let isFirstUpdate = true;
|
|
3460
|
-
function handleObserve(
|
|
3461
|
-
const ratio =
|
|
3453
|
+
function handleObserve(entries2) {
|
|
3454
|
+
const ratio = entries2[0].intersectionRatio;
|
|
3462
3455
|
if (ratio !== threshold) {
|
|
3463
3456
|
if (!isFirstUpdate) {
|
|
3464
3457
|
return refresh();
|
|
@@ -3569,7 +3562,7 @@ var computePosition2 = (reference, floating, options) => {
|
|
|
3569
3562
|
});
|
|
3570
3563
|
};
|
|
3571
3564
|
|
|
3572
|
-
// ../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.
|
|
3565
|
+
// ../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.8.1/node_modules/@kobalte/core/dist/esm/index.js
|
|
3573
3566
|
var ColorModeContext = createContext();
|
|
3574
3567
|
var COLOR_MODE_STORAGE_KEY = "kb-color-mode";
|
|
3575
3568
|
function createLocalStorageManager(key) {
|
|
@@ -4205,7 +4198,7 @@ var POINTER_DOWN_OUTSIDE_EVENT = "interactOutside.pointerDownOutside";
|
|
|
4205
4198
|
var FOCUS_OUTSIDE_EVENT = "interactOutside.focusOutside";
|
|
4206
4199
|
function createInteractOutside(props, ref) {
|
|
4207
4200
|
let pointerDownTimeoutId;
|
|
4208
|
-
let clickHandler =
|
|
4201
|
+
let clickHandler = noop3;
|
|
4209
4202
|
const ownerDocument = () => getDocument(ref());
|
|
4210
4203
|
const onPointerDownOutside = (e2) => props.onPointerDownOutside?.(e2);
|
|
4211
4204
|
const onFocusOutside = (e2) => props.onFocusOutside?.(e2);
|
|
@@ -4654,11 +4647,11 @@ function createCollator(options) {
|
|
|
4654
4647
|
});
|
|
4655
4648
|
}
|
|
4656
4649
|
var Selection = class _Selection extends Set {
|
|
4657
|
-
constructor(
|
|
4658
|
-
super(
|
|
4659
|
-
if (
|
|
4660
|
-
this.anchorKey = anchorKey ||
|
|
4661
|
-
this.currentKey = currentKey ||
|
|
4650
|
+
constructor(keys2, anchorKey, currentKey) {
|
|
4651
|
+
super(keys2);
|
|
4652
|
+
if (keys2 instanceof _Selection) {
|
|
4653
|
+
this.anchorKey = anchorKey || keys2.anchorKey;
|
|
4654
|
+
this.currentKey = currentKey || keys2.currentKey;
|
|
4662
4655
|
} else {
|
|
4663
4656
|
this.anchorKey = anchorKey;
|
|
4664
4657
|
this.currentKey = currentKey;
|
|
@@ -4722,9 +4715,9 @@ function createMultipleSelectionState(props) {
|
|
|
4722
4715
|
const [selectionBehavior, setSelectionBehavior] = createSignal(access(props.selectionBehavior));
|
|
4723
4716
|
const selectionMode = () => access(props.selectionMode);
|
|
4724
4717
|
const disallowEmptySelection = () => access(props.disallowEmptySelection) ?? false;
|
|
4725
|
-
const setSelectedKeys = (
|
|
4726
|
-
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(
|
|
4727
|
-
_setSelectedKeys(
|
|
4718
|
+
const setSelectedKeys = (keys2) => {
|
|
4719
|
+
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(keys2, selectedKeys())) {
|
|
4720
|
+
_setSelectedKeys(keys2);
|
|
4728
4721
|
}
|
|
4729
4722
|
};
|
|
4730
4723
|
createEffect(() => {
|
|
@@ -5339,15 +5332,15 @@ var SelectionManager = class {
|
|
|
5339
5332
|
return [];
|
|
5340
5333
|
}
|
|
5341
5334
|
getKeyRangeInternal(from, to) {
|
|
5342
|
-
const
|
|
5335
|
+
const keys2 = [];
|
|
5343
5336
|
let key = from;
|
|
5344
5337
|
while (key != null) {
|
|
5345
5338
|
const item = this.collection().getItem(key);
|
|
5346
5339
|
if (item && item.type === "item") {
|
|
5347
|
-
|
|
5340
|
+
keys2.push(key);
|
|
5348
5341
|
}
|
|
5349
5342
|
if (key === to) {
|
|
5350
|
-
return
|
|
5343
|
+
return keys2;
|
|
5351
5344
|
}
|
|
5352
5345
|
key = this.collection().getKeyAfter(key);
|
|
5353
5346
|
}
|
|
@@ -5376,18 +5369,18 @@ var SelectionManager = class {
|
|
|
5376
5369
|
if (retrievedKey == null) {
|
|
5377
5370
|
return;
|
|
5378
5371
|
}
|
|
5379
|
-
const
|
|
5380
|
-
if (
|
|
5381
|
-
|
|
5372
|
+
const keys2 = new Selection(this.state.selectedKeys());
|
|
5373
|
+
if (keys2.has(retrievedKey)) {
|
|
5374
|
+
keys2.delete(retrievedKey);
|
|
5382
5375
|
} else if (this.canSelectItem(retrievedKey)) {
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5376
|
+
keys2.add(retrievedKey);
|
|
5377
|
+
keys2.anchorKey = retrievedKey;
|
|
5378
|
+
keys2.currentKey = retrievedKey;
|
|
5386
5379
|
}
|
|
5387
|
-
if (this.disallowEmptySelection() &&
|
|
5380
|
+
if (this.disallowEmptySelection() && keys2.size === 0) {
|
|
5388
5381
|
return;
|
|
5389
5382
|
}
|
|
5390
|
-
this.state.setSelectedKeys(
|
|
5383
|
+
this.state.setSelectedKeys(keys2);
|
|
5391
5384
|
}
|
|
5392
5385
|
/** Replaces the selection with only the given key. */
|
|
5393
5386
|
replaceSelection(key) {
|
|
@@ -5402,12 +5395,12 @@ var SelectionManager = class {
|
|
|
5402
5395
|
this.state.setSelectedKeys(selection);
|
|
5403
5396
|
}
|
|
5404
5397
|
/** Replaces the selection with the given keys. */
|
|
5405
|
-
setSelectedKeys(
|
|
5398
|
+
setSelectedKeys(keys2) {
|
|
5406
5399
|
if (this.selectionMode() === "none") {
|
|
5407
5400
|
return;
|
|
5408
5401
|
}
|
|
5409
5402
|
const selection = new Selection();
|
|
5410
|
-
for (const key of
|
|
5403
|
+
for (const key of keys2) {
|
|
5411
5404
|
const retrievedKey = this.getKey(key);
|
|
5412
5405
|
if (retrievedKey != null) {
|
|
5413
5406
|
selection.add(retrievedKey);
|
|
@@ -5492,7 +5485,7 @@ var SelectionManager = class {
|
|
|
5492
5485
|
return !item || item.disabled;
|
|
5493
5486
|
}
|
|
5494
5487
|
getAllSelectableKeys() {
|
|
5495
|
-
const
|
|
5488
|
+
const keys2 = [];
|
|
5496
5489
|
const addKeys = (key) => {
|
|
5497
5490
|
while (key != null) {
|
|
5498
5491
|
if (this.canSelectItem(key)) {
|
|
@@ -5501,14 +5494,14 @@ var SelectionManager = class {
|
|
|
5501
5494
|
continue;
|
|
5502
5495
|
}
|
|
5503
5496
|
if (item.type === "item") {
|
|
5504
|
-
|
|
5497
|
+
keys2.push(key);
|
|
5505
5498
|
}
|
|
5506
5499
|
}
|
|
5507
5500
|
key = this.collection().getKeyAfter(key);
|
|
5508
5501
|
}
|
|
5509
5502
|
};
|
|
5510
5503
|
addKeys(this.collection().getFirstKey());
|
|
5511
|
-
return
|
|
5504
|
+
return keys2;
|
|
5512
5505
|
}
|
|
5513
5506
|
};
|
|
5514
5507
|
var ListCollection = class {
|
|
@@ -5564,8 +5557,8 @@ var ListCollection = class {
|
|
|
5564
5557
|
return this.keyMap.get(key);
|
|
5565
5558
|
}
|
|
5566
5559
|
at(idx) {
|
|
5567
|
-
const
|
|
5568
|
-
return this.getItem(
|
|
5560
|
+
const keys2 = [...this.getKeys()];
|
|
5561
|
+
return this.getItem(keys2[idx]);
|
|
5569
5562
|
}
|
|
5570
5563
|
};
|
|
5571
5564
|
function createListState(props) {
|
|
@@ -8969,12 +8962,12 @@ var untransformValue = function(json, type, superJson) {
|
|
|
8969
8962
|
|
|
8970
8963
|
// ../../node_modules/.pnpm/superjson@1.12.4/node_modules/superjson/dist/esm/accessDeep.js
|
|
8971
8964
|
var getNthKey = function(value, n2) {
|
|
8972
|
-
var
|
|
8965
|
+
var keys2 = value.keys();
|
|
8973
8966
|
while (n2 > 0) {
|
|
8974
|
-
|
|
8967
|
+
keys2.next();
|
|
8975
8968
|
n2--;
|
|
8976
8969
|
}
|
|
8977
|
-
return
|
|
8970
|
+
return keys2.next().value;
|
|
8978
8971
|
};
|
|
8979
8972
|
function validatePath(path) {
|
|
8980
8973
|
if (includes(path, "__proto__")) {
|
|
@@ -9284,7 +9277,7 @@ function isOneOf(a2, b2, c2, d, e2) {
|
|
|
9284
9277
|
return (value) => a2(value) || b2(value) || !!c2 && c2(value) || !!d && d(value) || !!e2 && e2(value);
|
|
9285
9278
|
}
|
|
9286
9279
|
|
|
9287
|
-
// ../../node_modules/.pnpm/copy-anything@3.0.
|
|
9280
|
+
// ../../node_modules/.pnpm/copy-anything@3.0.5/node_modules/copy-anything/dist/index.js
|
|
9288
9281
|
function assignProp(carry, key, newVal, originalObject, includeNonenumerable) {
|
|
9289
9282
|
const propType = {}.propertyIsEnumerable.call(originalObject, key) ? "enumerable" : "nonenumerable";
|
|
9290
9283
|
if (propType === "enumerable")
|
|
@@ -9874,9 +9867,10 @@ function Check(props) {
|
|
|
9874
9867
|
</>;
|
|
9875
9868
|
}
|
|
9876
9869
|
function TanstackLogo() {
|
|
9870
|
+
const id = createUniqueId();
|
|
9877
9871
|
return <svg version="1.0" viewBox="0 0 633 633">
|
|
9878
9872
|
<linearGradient
|
|
9879
|
-
id=
|
|
9873
|
+
id={`a-${id}`}
|
|
9880
9874
|
x1="-666.45"
|
|
9881
9875
|
x2="-666.45"
|
|
9882
9876
|
y1="163.28"
|
|
@@ -9889,9 +9883,9 @@ function TanstackLogo() {
|
|
|
9889
9883
|
<stop stop-color="#FFA770" offset=".71" />
|
|
9890
9884
|
<stop stop-color="#FF7373" offset="1" />
|
|
9891
9885
|
</linearGradient>
|
|
9892
|
-
<circle cx="316.5" cy="316.5" r="316.5" fill=
|
|
9886
|
+
<circle cx="316.5" cy="316.5" r="316.5" fill={`url(#a-${id})`} />
|
|
9893
9887
|
<defs><filter
|
|
9894
|
-
id=
|
|
9888
|
+
id={`am-${id}`}
|
|
9895
9889
|
x="-137.5"
|
|
9896
9890
|
y="412"
|
|
9897
9891
|
width="454"
|
|
@@ -9899,14 +9893,14 @@ function TanstackLogo() {
|
|
|
9899
9893
|
filterUnits="userSpaceOnUse"
|
|
9900
9894
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
9901
9895
|
<mask
|
|
9902
|
-
id=
|
|
9896
|
+
id={`b-${id}`}
|
|
9903
9897
|
x="-137.5"
|
|
9904
9898
|
y="412"
|
|
9905
9899
|
width="454"
|
|
9906
9900
|
height="396.9"
|
|
9907
9901
|
maskUnits="userSpaceOnUse"
|
|
9908
|
-
><g filter=
|
|
9909
|
-
<g mask=
|
|
9902
|
+
><g filter={`url(#am-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
9903
|
+
<g mask={`url(#b-${id})`}><ellipse
|
|
9910
9904
|
cx="89.5"
|
|
9911
9905
|
cy="610.5"
|
|
9912
9906
|
rx="214.5"
|
|
@@ -9916,7 +9910,7 @@ function TanstackLogo() {
|
|
|
9916
9910
|
stroke-width="25"
|
|
9917
9911
|
/></g>
|
|
9918
9912
|
<defs><filter
|
|
9919
|
-
id=
|
|
9913
|
+
id={`ah-${id}`}
|
|
9920
9914
|
x="316.5"
|
|
9921
9915
|
y="412"
|
|
9922
9916
|
width="454"
|
|
@@ -9924,14 +9918,14 @@ function TanstackLogo() {
|
|
|
9924
9918
|
filterUnits="userSpaceOnUse"
|
|
9925
9919
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
9926
9920
|
<mask
|
|
9927
|
-
id=
|
|
9921
|
+
id={`k-${id}`}
|
|
9928
9922
|
x="316.5"
|
|
9929
9923
|
y="412"
|
|
9930
9924
|
width="454"
|
|
9931
9925
|
height="396.9"
|
|
9932
9926
|
maskUnits="userSpaceOnUse"
|
|
9933
|
-
><g filter=
|
|
9934
|
-
<g mask=
|
|
9927
|
+
><g filter={`url(#ah-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
9928
|
+
<g mask={`url(#k-${id})`}><ellipse
|
|
9935
9929
|
cx="543.5"
|
|
9936
9930
|
cy="610.5"
|
|
9937
9931
|
rx="214.5"
|
|
@@ -9941,7 +9935,7 @@ function TanstackLogo() {
|
|
|
9941
9935
|
stroke-width="25"
|
|
9942
9936
|
/></g>
|
|
9943
9937
|
<defs><filter
|
|
9944
|
-
id=
|
|
9938
|
+
id={`ae-${id}`}
|
|
9945
9939
|
x="-137.5"
|
|
9946
9940
|
y="450"
|
|
9947
9941
|
width="454"
|
|
@@ -9949,14 +9943,14 @@ function TanstackLogo() {
|
|
|
9949
9943
|
filterUnits="userSpaceOnUse"
|
|
9950
9944
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
9951
9945
|
<mask
|
|
9952
|
-
id=
|
|
9946
|
+
id={`j-${id}`}
|
|
9953
9947
|
x="-137.5"
|
|
9954
9948
|
y="450"
|
|
9955
9949
|
width="454"
|
|
9956
9950
|
height="396.9"
|
|
9957
9951
|
maskUnits="userSpaceOnUse"
|
|
9958
|
-
><g filter=
|
|
9959
|
-
<g mask=
|
|
9952
|
+
><g filter={`url(#ae-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
9953
|
+
<g mask={`url(#j-${id})`}><ellipse
|
|
9960
9954
|
cx="89.5"
|
|
9961
9955
|
cy="648.5"
|
|
9962
9956
|
rx="214.5"
|
|
@@ -9966,7 +9960,7 @@ function TanstackLogo() {
|
|
|
9966
9960
|
stroke-width="25"
|
|
9967
9961
|
/></g>
|
|
9968
9962
|
<defs><filter
|
|
9969
|
-
id=
|
|
9963
|
+
id={`ai-${id}`}
|
|
9970
9964
|
x="316.5"
|
|
9971
9965
|
y="450"
|
|
9972
9966
|
width="454"
|
|
@@ -9974,14 +9968,14 @@ function TanstackLogo() {
|
|
|
9974
9968
|
filterUnits="userSpaceOnUse"
|
|
9975
9969
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
9976
9970
|
<mask
|
|
9977
|
-
id=
|
|
9971
|
+
id={`i-${id}`}
|
|
9978
9972
|
x="316.5"
|
|
9979
9973
|
y="450"
|
|
9980
9974
|
width="454"
|
|
9981
9975
|
height="396.9"
|
|
9982
9976
|
maskUnits="userSpaceOnUse"
|
|
9983
|
-
><g filter=
|
|
9984
|
-
<g mask=
|
|
9977
|
+
><g filter={`url(#ai-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
9978
|
+
<g mask={`url(#i-${id})`}><ellipse
|
|
9985
9979
|
cx="543.5"
|
|
9986
9980
|
cy="648.5"
|
|
9987
9981
|
rx="214.5"
|
|
@@ -9991,7 +9985,7 @@ function TanstackLogo() {
|
|
|
9991
9985
|
stroke-width="25"
|
|
9992
9986
|
/></g>
|
|
9993
9987
|
<defs><filter
|
|
9994
|
-
id=
|
|
9988
|
+
id={`aj-${id}`}
|
|
9995
9989
|
x="-137.5"
|
|
9996
9990
|
y="486"
|
|
9997
9991
|
width="454"
|
|
@@ -9999,14 +9993,14 @@ function TanstackLogo() {
|
|
|
9999
9993
|
filterUnits="userSpaceOnUse"
|
|
10000
9994
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10001
9995
|
<mask
|
|
10002
|
-
id=
|
|
9996
|
+
id={`h-${id}`}
|
|
10003
9997
|
x="-137.5"
|
|
10004
9998
|
y="486"
|
|
10005
9999
|
width="454"
|
|
10006
10000
|
height="396.9"
|
|
10007
10001
|
maskUnits="userSpaceOnUse"
|
|
10008
|
-
><g filter=
|
|
10009
|
-
<g mask=
|
|
10002
|
+
><g filter={`url(#aj-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10003
|
+
<g mask={`url(#h-${id})`}><ellipse
|
|
10010
10004
|
cx="89.5"
|
|
10011
10005
|
cy="684.5"
|
|
10012
10006
|
rx="214.5"
|
|
@@ -10016,7 +10010,7 @@ function TanstackLogo() {
|
|
|
10016
10010
|
stroke-width="25"
|
|
10017
10011
|
/></g>
|
|
10018
10012
|
<defs><filter
|
|
10019
|
-
id=
|
|
10013
|
+
id={`ag-${id}`}
|
|
10020
10014
|
x="316.5"
|
|
10021
10015
|
y="486"
|
|
10022
10016
|
width="454"
|
|
@@ -10024,14 +10018,14 @@ function TanstackLogo() {
|
|
|
10024
10018
|
filterUnits="userSpaceOnUse"
|
|
10025
10019
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10026
10020
|
<mask
|
|
10027
|
-
id=
|
|
10021
|
+
id={`g-${id}`}
|
|
10028
10022
|
x="316.5"
|
|
10029
10023
|
y="486"
|
|
10030
10024
|
width="454"
|
|
10031
10025
|
height="396.9"
|
|
10032
10026
|
maskUnits="userSpaceOnUse"
|
|
10033
|
-
><g filter=
|
|
10034
|
-
<g mask=
|
|
10027
|
+
><g filter={`url(#ag-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10028
|
+
<g mask={`url(#g-${id})`}><ellipse
|
|
10035
10029
|
cx="543.5"
|
|
10036
10030
|
cy="684.5"
|
|
10037
10031
|
rx="214.5"
|
|
@@ -10041,7 +10035,7 @@ function TanstackLogo() {
|
|
|
10041
10035
|
stroke-width="25"
|
|
10042
10036
|
/></g>
|
|
10043
10037
|
<defs><filter
|
|
10044
|
-
id=
|
|
10038
|
+
id={`af-${id}`}
|
|
10045
10039
|
x="272.2"
|
|
10046
10040
|
y="308"
|
|
10047
10041
|
width="176.9"
|
|
@@ -10049,14 +10043,14 @@ function TanstackLogo() {
|
|
|
10049
10043
|
filterUnits="userSpaceOnUse"
|
|
10050
10044
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10051
10045
|
<mask
|
|
10052
|
-
id=
|
|
10046
|
+
id={`f-${id}`}
|
|
10053
10047
|
x="272.2"
|
|
10054
10048
|
y="308"
|
|
10055
10049
|
width="176.9"
|
|
10056
10050
|
height="129.3"
|
|
10057
10051
|
maskUnits="userSpaceOnUse"
|
|
10058
|
-
><g filter=
|
|
10059
|
-
<g mask=
|
|
10052
|
+
><g filter={`url(#af-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10053
|
+
<g mask={`url(#f-${id})`}>
|
|
10060
10054
|
<line
|
|
10061
10055
|
x1="436"
|
|
10062
10056
|
x2="431"
|
|
@@ -10091,7 +10085,7 @@ function TanstackLogo() {
|
|
|
10091
10085
|
stroke-width="11"
|
|
10092
10086
|
/>
|
|
10093
10087
|
<linearGradient
|
|
10094
|
-
id=
|
|
10088
|
+
id={`m-${id}`}
|
|
10095
10089
|
x1="-670.75"
|
|
10096
10090
|
x2="-671.59"
|
|
10097
10091
|
y1="164.4"
|
|
@@ -10105,7 +10099,7 @@ function TanstackLogo() {
|
|
|
10105
10099
|
<path
|
|
10106
10100
|
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"
|
|
10107
10101
|
clip-rule="evenodd"
|
|
10108
|
-
fill=
|
|
10102
|
+
fill={`url(#m-${id})`}
|
|
10109
10103
|
fill-rule="evenodd"
|
|
10110
10104
|
/>
|
|
10111
10105
|
<line
|
|
@@ -10165,7 +10159,7 @@ function TanstackLogo() {
|
|
|
10165
10159
|
/>
|
|
10166
10160
|
</g>
|
|
10167
10161
|
<defs><filter
|
|
10168
|
-
id=
|
|
10162
|
+
id={`ak-${id}`}
|
|
10169
10163
|
x="73.2"
|
|
10170
10164
|
y="113.8"
|
|
10171
10165
|
width="280.6"
|
|
@@ -10173,16 +10167,16 @@ function TanstackLogo() {
|
|
|
10173
10167
|
filterUnits="userSpaceOnUse"
|
|
10174
10168
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10175
10169
|
<mask
|
|
10176
|
-
id=
|
|
10170
|
+
id={`e-${id}`}
|
|
10177
10171
|
x="73.2"
|
|
10178
10172
|
y="113.8"
|
|
10179
10173
|
width="280.6"
|
|
10180
10174
|
height="317.4"
|
|
10181
10175
|
maskUnits="userSpaceOnUse"
|
|
10182
|
-
><g filter=
|
|
10183
|
-
<g mask=
|
|
10176
|
+
><g filter={`url(#ak-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10177
|
+
<g mask={`url(#e-${id})`}>
|
|
10184
10178
|
<linearGradient
|
|
10185
|
-
id=
|
|
10179
|
+
id={`n-${id}`}
|
|
10186
10180
|
x1="-672.16"
|
|
10187
10181
|
x2="-672.16"
|
|
10188
10182
|
y1="165.03"
|
|
@@ -10196,12 +10190,12 @@ function TanstackLogo() {
|
|
|
10196
10190
|
<path
|
|
10197
10191
|
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"
|
|
10198
10192
|
clip-rule="evenodd"
|
|
10199
|
-
fill=
|
|
10193
|
+
fill={`url(#n-${id})`}
|
|
10200
10194
|
fill-rule="evenodd"
|
|
10201
10195
|
/>
|
|
10202
10196
|
<g stroke="#2F8A00">
|
|
10203
10197
|
<linearGradient
|
|
10204
|
-
id=
|
|
10198
|
+
id={`r-${id}`}
|
|
10205
10199
|
x1="-660.23"
|
|
10206
10200
|
x2="-660.23"
|
|
10207
10201
|
y1="166.72"
|
|
@@ -10215,12 +10209,12 @@ function TanstackLogo() {
|
|
|
10215
10209
|
<path
|
|
10216
10210
|
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"
|
|
10217
10211
|
clip-rule="evenodd"
|
|
10218
|
-
fill=
|
|
10212
|
+
fill={`url(#r-${id})`}
|
|
10219
10213
|
fill-rule="evenodd"
|
|
10220
10214
|
stroke-width="13"
|
|
10221
10215
|
/>
|
|
10222
10216
|
<linearGradient
|
|
10223
|
-
id=
|
|
10217
|
+
id={`s-${id}`}
|
|
10224
10218
|
x1="-661.36"
|
|
10225
10219
|
x2="-661.36"
|
|
10226
10220
|
y1="164.18"
|
|
@@ -10234,12 +10228,12 @@ function TanstackLogo() {
|
|
|
10234
10228
|
<path
|
|
10235
10229
|
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"
|
|
10236
10230
|
clip-rule="evenodd"
|
|
10237
|
-
fill=
|
|
10231
|
+
fill={`url(#s-${id})`}
|
|
10238
10232
|
fill-rule="evenodd"
|
|
10239
10233
|
stroke-width="13"
|
|
10240
10234
|
/>
|
|
10241
10235
|
<linearGradient
|
|
10242
|
-
id=
|
|
10236
|
+
id={`q-${id}`}
|
|
10243
10237
|
x1="-656.79"
|
|
10244
10238
|
x2="-656.79"
|
|
10245
10239
|
y1="165.15"
|
|
@@ -10253,12 +10247,12 @@ function TanstackLogo() {
|
|
|
10253
10247
|
<path
|
|
10254
10248
|
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"
|
|
10255
10249
|
clip-rule="evenodd"
|
|
10256
|
-
fill=
|
|
10250
|
+
fill={`url(#q-${id})`}
|
|
10257
10251
|
fill-rule="evenodd"
|
|
10258
10252
|
stroke-width="13"
|
|
10259
10253
|
/>
|
|
10260
10254
|
<linearGradient
|
|
10261
|
-
id=
|
|
10255
|
+
id={`p-${id}`}
|
|
10262
10256
|
x1="-663.07"
|
|
10263
10257
|
x2="-663.07"
|
|
10264
10258
|
y1="165.44"
|
|
@@ -10272,12 +10266,12 @@ function TanstackLogo() {
|
|
|
10272
10266
|
<path
|
|
10273
10267
|
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"
|
|
10274
10268
|
clip-rule="evenodd"
|
|
10275
|
-
fill=
|
|
10269
|
+
fill={`url(#p-${id})`}
|
|
10276
10270
|
fill-rule="evenodd"
|
|
10277
10271
|
stroke-width="13"
|
|
10278
10272
|
/>
|
|
10279
10273
|
<linearGradient
|
|
10280
|
-
id=
|
|
10274
|
+
id={`o-${id}`}
|
|
10281
10275
|
x1="-662.57"
|
|
10282
10276
|
x2="-662.57"
|
|
10283
10277
|
y1="164.44"
|
|
@@ -10291,12 +10285,12 @@ function TanstackLogo() {
|
|
|
10291
10285
|
<path
|
|
10292
10286
|
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"
|
|
10293
10287
|
clip-rule="evenodd"
|
|
10294
|
-
fill=
|
|
10288
|
+
fill={`url(#o-${id})`}
|
|
10295
10289
|
fill-rule="evenodd"
|
|
10296
10290
|
stroke-width="13"
|
|
10297
10291
|
/>
|
|
10298
10292
|
<linearGradient
|
|
10299
|
-
id=
|
|
10293
|
+
id={`l-${id}`}
|
|
10300
10294
|
x1="-656.43"
|
|
10301
10295
|
x2="-656.43"
|
|
10302
10296
|
y1="163.86"
|
|
@@ -10310,7 +10304,7 @@ function TanstackLogo() {
|
|
|
10310
10304
|
<path
|
|
10311
10305
|
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"
|
|
10312
10306
|
clip-rule="evenodd"
|
|
10313
|
-
fill=
|
|
10307
|
+
fill={`url(#l-${id})`}
|
|
10314
10308
|
fill-rule="evenodd"
|
|
10315
10309
|
stroke-width="13"
|
|
10316
10310
|
/>
|
|
@@ -10341,7 +10335,7 @@ function TanstackLogo() {
|
|
|
10341
10335
|
</g>
|
|
10342
10336
|
</g>
|
|
10343
10337
|
<defs><filter
|
|
10344
|
-
id=
|
|
10338
|
+
id={`al-${id}`}
|
|
10345
10339
|
x="50.5"
|
|
10346
10340
|
y="399"
|
|
10347
10341
|
width="532"
|
|
@@ -10349,16 +10343,16 @@ function TanstackLogo() {
|
|
|
10349
10343
|
filterUnits="userSpaceOnUse"
|
|
10350
10344
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10351
10345
|
<mask
|
|
10352
|
-
id=
|
|
10346
|
+
id={`d-${id}`}
|
|
10353
10347
|
x="50.5"
|
|
10354
10348
|
y="399"
|
|
10355
10349
|
width="532"
|
|
10356
10350
|
height="633"
|
|
10357
10351
|
maskUnits="userSpaceOnUse"
|
|
10358
|
-
><g filter=
|
|
10359
|
-
<g mask=
|
|
10352
|
+
><g filter={`url(#al-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10353
|
+
<g mask={`url(#d-${id})`}>
|
|
10360
10354
|
<linearGradient
|
|
10361
|
-
id=
|
|
10355
|
+
id={`u-${id}`}
|
|
10362
10356
|
x1="-666.06"
|
|
10363
10357
|
x2="-666.23"
|
|
10364
10358
|
y1="163.36"
|
|
@@ -10369,10 +10363,16 @@ function TanstackLogo() {
|
|
|
10369
10363
|
<stop stop-color="#FFF400" offset="0" />
|
|
10370
10364
|
<stop stop-color="#3C8700" offset="1" />
|
|
10371
10365
|
</linearGradient>
|
|
10372
|
-
<ellipse
|
|
10366
|
+
<ellipse
|
|
10367
|
+
cx="316.5"
|
|
10368
|
+
cy="715.5"
|
|
10369
|
+
rx="266"
|
|
10370
|
+
ry="316.5"
|
|
10371
|
+
fill={`url(#u-${id})`}
|
|
10372
|
+
/>
|
|
10373
10373
|
</g>
|
|
10374
10374
|
<defs><filter
|
|
10375
|
-
id=
|
|
10375
|
+
id={`ad-${id}`}
|
|
10376
10376
|
x="391"
|
|
10377
10377
|
y="-24"
|
|
10378
10378
|
width="288"
|
|
@@ -10380,16 +10380,16 @@ function TanstackLogo() {
|
|
|
10380
10380
|
filterUnits="userSpaceOnUse"
|
|
10381
10381
|
><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
|
|
10382
10382
|
<mask
|
|
10383
|
-
id=
|
|
10383
|
+
id={`c-${id}`}
|
|
10384
10384
|
x="391"
|
|
10385
10385
|
y="-24"
|
|
10386
10386
|
width="288"
|
|
10387
10387
|
height="283"
|
|
10388
10388
|
maskUnits="userSpaceOnUse"
|
|
10389
|
-
><g filter=
|
|
10390
|
-
<g mask=
|
|
10389
|
+
><g filter={`url(#ad-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
|
|
10390
|
+
<g mask={`url(#c-${id})`}>
|
|
10391
10391
|
<linearGradient
|
|
10392
|
-
id=
|
|
10392
|
+
id={`t-${id}`}
|
|
10393
10393
|
x1="-664.56"
|
|
10394
10394
|
x2="-664.56"
|
|
10395
10395
|
y1="163.79"
|
|
@@ -10400,9 +10400,9 @@ function TanstackLogo() {
|
|
|
10400
10400
|
<stop stop-color="#FFDF00" offset="0" />
|
|
10401
10401
|
<stop stop-color="#FF9D00" offset="1" />
|
|
10402
10402
|
</linearGradient>
|
|
10403
|
-
<circle cx="565.5" cy="89.5" r="113.5" fill=
|
|
10403
|
+
<circle cx="565.5" cy="89.5" r="113.5" fill={`url(#t-${id})`} />
|
|
10404
10404
|
<linearGradient
|
|
10405
|
-
id=
|
|
10405
|
+
id={`v-${id}`}
|
|
10406
10406
|
x1="-644.5"
|
|
10407
10407
|
x2="-645.77"
|
|
10408
10408
|
y1="342"
|
|
@@ -10419,13 +10419,13 @@ function TanstackLogo() {
|
|
|
10419
10419
|
y1="89"
|
|
10420
10420
|
y2="89"
|
|
10421
10421
|
fill="none"
|
|
10422
|
-
stroke=
|
|
10422
|
+
stroke={`url(#v-${id})`}
|
|
10423
10423
|
stroke-linecap="round"
|
|
10424
10424
|
stroke-linejoin="bevel"
|
|
10425
10425
|
stroke-width="12"
|
|
10426
10426
|
/>
|
|
10427
10427
|
<linearGradient
|
|
10428
|
-
id=
|
|
10428
|
+
id={`aa-${id}`}
|
|
10429
10429
|
x1="-641.56"
|
|
10430
10430
|
x2="-642.83"
|
|
10431
10431
|
y1="196.02"
|
|
@@ -10442,13 +10442,13 @@ function TanstackLogo() {
|
|
|
10442
10442
|
y1="55.5"
|
|
10443
10443
|
y2="50"
|
|
10444
10444
|
fill="none"
|
|
10445
|
-
stroke=
|
|
10445
|
+
stroke={`url(#aa-${id})`}
|
|
10446
10446
|
stroke-linecap="round"
|
|
10447
10447
|
stroke-linejoin="bevel"
|
|
10448
10448
|
stroke-width="12"
|
|
10449
10449
|
/>
|
|
10450
10450
|
<linearGradient
|
|
10451
|
-
id=
|
|
10451
|
+
id={`w-${id}`}
|
|
10452
10452
|
x1="-643.73"
|
|
10453
10453
|
x2="-645"
|
|
10454
10454
|
y1="185.83"
|
|
@@ -10465,13 +10465,13 @@ function TanstackLogo() {
|
|
|
10465
10465
|
y1="122"
|
|
10466
10466
|
y2="130"
|
|
10467
10467
|
fill="none"
|
|
10468
|
-
stroke=
|
|
10468
|
+
stroke={`url(#w-${id})`}
|
|
10469
10469
|
stroke-linecap="round"
|
|
10470
10470
|
stroke-linejoin="bevel"
|
|
10471
10471
|
stroke-width="12"
|
|
10472
10472
|
/>
|
|
10473
10473
|
<linearGradient
|
|
10474
|
-
id=
|
|
10474
|
+
id={`ac-${id}`}
|
|
10475
10475
|
x1="-638.94"
|
|
10476
10476
|
x2="-640.22"
|
|
10477
10477
|
y1="177.09"
|
|
@@ -10488,13 +10488,13 @@ function TanstackLogo() {
|
|
|
10488
10488
|
y1="153"
|
|
10489
10489
|
y2="166"
|
|
10490
10490
|
fill="none"
|
|
10491
|
-
stroke=
|
|
10491
|
+
stroke={`url(#ac-${id})`}
|
|
10492
10492
|
stroke-linecap="round"
|
|
10493
10493
|
stroke-linejoin="bevel"
|
|
10494
10494
|
stroke-width="12"
|
|
10495
10495
|
/>
|
|
10496
10496
|
<linearGradient
|
|
10497
|
-
id=
|
|
10497
|
+
id={`ab-${id}`}
|
|
10498
10498
|
x1="-633.42"
|
|
10499
10499
|
x2="-634.7"
|
|
10500
10500
|
y1="172.41"
|
|
@@ -10511,13 +10511,13 @@ function TanstackLogo() {
|
|
|
10511
10511
|
y1="180"
|
|
10512
10512
|
y2="199"
|
|
10513
10513
|
fill="none"
|
|
10514
|
-
stroke=
|
|
10514
|
+
stroke={`url(#ab-${id})`}
|
|
10515
10515
|
stroke-linecap="round"
|
|
10516
10516
|
stroke-linejoin="bevel"
|
|
10517
10517
|
stroke-width="12"
|
|
10518
10518
|
/>
|
|
10519
10519
|
<linearGradient
|
|
10520
|
-
id=
|
|
10520
|
+
id={`y-${id}`}
|
|
10521
10521
|
x1="-619.05"
|
|
10522
10522
|
x2="-619.52"
|
|
10523
10523
|
y1="170.82"
|
|
@@ -10534,13 +10534,13 @@ function TanstackLogo() {
|
|
|
10534
10534
|
y1="203"
|
|
10535
10535
|
y2="225.9"
|
|
10536
10536
|
fill="none"
|
|
10537
|
-
stroke=
|
|
10537
|
+
stroke={`url(#y-${id})`}
|
|
10538
10538
|
stroke-linecap="round"
|
|
10539
10539
|
stroke-linejoin="bevel"
|
|
10540
10540
|
stroke-width="12"
|
|
10541
10541
|
/>
|
|
10542
10542
|
<linearGradient
|
|
10543
|
-
id=
|
|
10543
|
+
id={`x-${id}`}
|
|
10544
10544
|
x1="-578.5"
|
|
10545
10545
|
x2="-578.63"
|
|
10546
10546
|
y1="170.31"
|
|
@@ -10557,13 +10557,13 @@ function TanstackLogo() {
|
|
|
10557
10557
|
y1="219.5"
|
|
10558
10558
|
y2="244"
|
|
10559
10559
|
fill="none"
|
|
10560
|
-
stroke=
|
|
10560
|
+
stroke={`url(#x-${id})`}
|
|
10561
10561
|
stroke-linecap="round"
|
|
10562
10562
|
stroke-linejoin="bevel"
|
|
10563
10563
|
stroke-width="12"
|
|
10564
10564
|
/>
|
|
10565
10565
|
<linearGradient
|
|
10566
|
-
id=
|
|
10566
|
+
id={`z-${id}`}
|
|
10567
10567
|
x1="666.5"
|
|
10568
10568
|
x2="666.5"
|
|
10569
10569
|
y1="170.31"
|
|
@@ -10580,7 +10580,7 @@ function TanstackLogo() {
|
|
|
10580
10580
|
y1="228.5"
|
|
10581
10581
|
y2="253"
|
|
10582
10582
|
fill="none"
|
|
10583
|
-
stroke=
|
|
10583
|
+
stroke={`url(#z-${id})`}
|
|
10584
10584
|
stroke-linecap="round"
|
|
10585
10585
|
stroke-linejoin="bevel"
|
|
10586
10586
|
stroke-width="12"
|
|
@@ -10838,7 +10838,7 @@ function Explorer(props) {
|
|
|
10838
10838
|
itemsDeletable={type() === "array" || type() === "Iterable" || type() === "object"}
|
|
10839
10839
|
/>;
|
|
10840
10840
|
}}</Key></div></Show>
|
|
10841
|
-
<Show when={subEntryPages().length > 1}><div class={styles().subEntry}><Index each={subEntryPages()}>{(
|
|
10841
|
+
<Show when={subEntryPages().length > 1}><div class={styles().subEntry}><Index each={subEntryPages()}>{(entries2, index) => <div><div class={styles().entry}>
|
|
10842
10842
|
<button
|
|
10843
10843
|
onClick={() => setExpandedPages(
|
|
10844
10844
|
(old) => old.includes(index) ? old.filter((d) => d !== index) : [...old, index]
|
|
@@ -10853,7 +10853,7 @@ function Explorer(props) {
|
|
|
10853
10853
|
{index * 100 + 100 - 1}
|
|
10854
10854
|
{"]"}
|
|
10855
10855
|
</button>
|
|
10856
|
-
<Show when={expandedPages().includes(index)}><div class={styles().subEntry}><Key each={
|
|
10856
|
+
<Show when={expandedPages().includes(index)}><div class={styles().subEntry}><Key each={entries2()} by={(entry) => entry.label}>{(entry) => <Explorer
|
|
10857
10857
|
defaultExpanded={props.defaultExpanded}
|
|
10858
10858
|
label={entry().label}
|
|
10859
10859
|
value={entry().value}
|