@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.
@@ -34,7 +34,7 @@ import {
34
34
  untrack,
35
35
  useContext,
36
36
  useTransition
37
- } from "../chunk/LGDS24HT.jsx";
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.2_solid-js@1.7.8/node_modules/@solid-primitives/transition-group/dist/index.js
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.7.8/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
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.4_solid-js@1.7.8/node_modules/@solid-primitives/refs/dist/index.js
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.7.8/node_modules/solid-transition-group/dist/index.js
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.7.8/node_modules/@solid-primitives/keyed/dist/index.js
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+utils@6.2.0_solid-js@1.7.8/node_modules/@solid-primitives/utils/dist/chunk/APG4HSEJ.js
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+resize-observer@2.0.18_solid-js@1.7.8/node_modules/@solid-primitives/resize-observer/dist/index.js
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: noop3, unobserve: noop3 };
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((entries3) => {
1330
- for (const entry of entries3) {
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 = filterNonNullable2(asArray2(access2(targets)));
1340
- handleDiffArray2(refs, prev, observe, unobserve);
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+event-listener@2.3.0_solid-js@1.7.8/node_modules/@solid-primitives/event-listener/dist/index.js
1346
- function makeEventListener(target, type, handler, options) {
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: trueFn3,
1379
- deleteProperty: trueFn3,
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: trueFn3,
1388
- deleteProperty: trueFn3
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/@solid-primitives+refs@1.0.5_solid-js@1.7.8/node_modules/@solid-primitives/refs/dist/index.js
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 noop4() {
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.7.8/node_modules/solid-js/store/dist/store.js
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 keys3 = Object.keys(value), desc = Object.getOwnPropertyDescriptors(value);
1920
- for (let i2 = 0, l2 = keys3.length; i2 < l2; i2++) {
1921
- const prop = keys3[i2];
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 keys3 = Object.keys(item), desc = Object.getOwnPropertyDescriptors(item);
1959
- for (let i2 = 0, l2 = keys3.length; i2 < l2; i2++) {
1960
- prop = keys3[i2];
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 getDataNodes(target) {
1971
- let nodes = target[$NODE];
1966
+ function getNodes(target, symbol) {
1967
+ let nodes = target[symbol];
1972
1968
  if (!nodes)
1973
- Object.defineProperty(target, $NODE, {
1969
+ Object.defineProperty(target, symbol, {
1974
1970
  value: nodes = /* @__PURE__ */ Object.create(null)
1975
1971
  });
1976
1972
  return nodes;
1977
1973
  }
1978
- function getDataNode(nodes, property, value) {
1979
- return nodes[property] || (nodes[property] = createDataNode(value));
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
- if (getListener()) {
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 = getDataNodes(target);
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 = getDataNode(nodes, property, 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
- this.get(target, property, target);
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
- else
2043
+ if (state2[$HAS] && state2[$HAS][property] && prev !== void 0)
2044
+ state2[$HAS][property].$();
2045
+ } else {
2052
2046
  state2[property] = value;
2053
- let nodes = getDataNodes(state2), node;
2054
- if (node = getDataNode(nodes, property, prev))
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 = getDataNode(nodes, "length", len)) && node.$(state2.length);
2056
+ (node = getNode(nodes, "length", len)) && node.$(state2.length);
2060
2057
  }
2061
- (node = nodes._) && node.$();
2058
+ (node = nodes[$SELF]) && node.$();
2062
2059
  }
2063
2060
  function mergeStoreNode(state2, value) {
2064
- const keys3 = Object.keys(value);
2065
- for (let i2 = 0; i2 < keys3.length; i2 += 1) {
2066
- const key = keys3[i2];
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.4/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
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 clamp3(start, value, end) {
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 = clamp3(min$1, center, max2);
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 = clamp3(min2, mainAxisCoord, max2);
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 = clamp3(min2, crossAxisCoord, max2);
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.4/node_modules/@floating-ui/utils/dom/dist/floating-ui.utils.dom.mjs
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(entries3) {
3461
- const ratio = entries3[0].intersectionRatio;
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.7.8/node_modules/@kobalte/core/dist/esm/index.js
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 = noop4;
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(keys3, anchorKey, currentKey) {
4658
- super(keys3);
4659
- if (keys3 instanceof _Selection) {
4660
- this.anchorKey = anchorKey || keys3.anchorKey;
4661
- this.currentKey = currentKey || keys3.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 = (keys3) => {
4726
- if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(keys3, selectedKeys())) {
4727
- _setSelectedKeys(keys3);
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 keys3 = [];
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
- keys3.push(key);
5340
+ keys2.push(key);
5348
5341
  }
5349
5342
  if (key === to) {
5350
- return keys3;
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 keys3 = new Selection(this.state.selectedKeys());
5380
- if (keys3.has(retrievedKey)) {
5381
- keys3.delete(retrievedKey);
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
- keys3.add(retrievedKey);
5384
- keys3.anchorKey = retrievedKey;
5385
- keys3.currentKey = retrievedKey;
5376
+ keys2.add(retrievedKey);
5377
+ keys2.anchorKey = retrievedKey;
5378
+ keys2.currentKey = retrievedKey;
5386
5379
  }
5387
- if (this.disallowEmptySelection() && keys3.size === 0) {
5380
+ if (this.disallowEmptySelection() && keys2.size === 0) {
5388
5381
  return;
5389
5382
  }
5390
- this.state.setSelectedKeys(keys3);
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(keys3) {
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 keys3) {
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 keys3 = [];
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
- keys3.push(key);
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 keys3;
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 keys3 = [...this.getKeys()];
5568
- return this.getItem(keys3[idx]);
5560
+ const keys2 = [...this.getKeys()];
5561
+ return this.getItem(keys2[idx]);
5569
5562
  }
5570
5563
  };
5571
5564
  function createListState(props) {
@@ -8970,12 +8963,12 @@ var untransformValue = function(json, type, superJson) {
8970
8963
 
8971
8964
  // ../../node_modules/.pnpm/superjson@1.12.4/node_modules/superjson/dist/esm/accessDeep.js
8972
8965
  var getNthKey = function(value, n2) {
8973
- var keys3 = value.keys();
8966
+ var keys2 = value.keys();
8974
8967
  while (n2 > 0) {
8975
- keys3.next();
8968
+ keys2.next();
8976
8969
  n2--;
8977
8970
  }
8978
- return keys3.next().value;
8971
+ return keys2.next().value;
8979
8972
  };
8980
8973
  function validatePath(path) {
8981
8974
  if (includes(path, "__proto__")) {
@@ -9285,7 +9278,7 @@ function isOneOf(a2, b2, c2, d, e2) {
9285
9278
  return (value) => a2(value) || b2(value) || !!c2 && c2(value) || !!d && d(value) || !!e2 && e2(value);
9286
9279
  }
9287
9280
 
9288
- // ../../node_modules/.pnpm/copy-anything@3.0.2/node_modules/copy-anything/dist/index.es.js
9281
+ // ../../node_modules/.pnpm/copy-anything@3.0.5/node_modules/copy-anything/dist/index.js
9289
9282
  function assignProp(carry, key, newVal, originalObject, includeNonenumerable) {
9290
9283
  const propType = {}.propertyIsEnumerable.call(originalObject, key) ? "enumerable" : "nonenumerable";
9291
9284
  if (propType === "enumerable")
@@ -9875,9 +9868,10 @@ function Check(props) {
9875
9868
  </>;
9876
9869
  }
9877
9870
  function TanstackLogo() {
9871
+ const id = createUniqueId();
9878
9872
  return <svg version="1.0" viewBox="0 0 633 633">
9879
9873
  <linearGradient
9880
- id="a"
9874
+ id={`a-${id}`}
9881
9875
  x1="-666.45"
9882
9876
  x2="-666.45"
9883
9877
  y1="163.28"
@@ -9890,9 +9884,9 @@ function TanstackLogo() {
9890
9884
  <stop stop-color="#FFA770" offset=".71" />
9891
9885
  <stop stop-color="#FF7373" offset="1" />
9892
9886
  </linearGradient>
9893
- <circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)" />
9887
+ <circle cx="316.5" cy="316.5" r="316.5" fill={`url(#a-${id})`} />
9894
9888
  <defs><filter
9895
- id="am"
9889
+ id={`am-${id}`}
9896
9890
  x="-137.5"
9897
9891
  y="412"
9898
9892
  width="454"
@@ -9900,14 +9894,14 @@ function TanstackLogo() {
9900
9894
  filterUnits="userSpaceOnUse"
9901
9895
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
9902
9896
  <mask
9903
- id="b"
9897
+ id={`b-${id}`}
9904
9898
  x="-137.5"
9905
9899
  y="412"
9906
9900
  width="454"
9907
9901
  height="396.9"
9908
9902
  maskUnits="userSpaceOnUse"
9909
- ><g filter="url(#am)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9910
- <g mask="url(#b)"><ellipse
9903
+ ><g filter={`url(#am-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9904
+ <g mask={`url(#b-${id})`}><ellipse
9911
9905
  cx="89.5"
9912
9906
  cy="610.5"
9913
9907
  rx="214.5"
@@ -9917,7 +9911,7 @@ function TanstackLogo() {
9917
9911
  stroke-width="25"
9918
9912
  /></g>
9919
9913
  <defs><filter
9920
- id="ah"
9914
+ id={`ah-${id}`}
9921
9915
  x="316.5"
9922
9916
  y="412"
9923
9917
  width="454"
@@ -9925,14 +9919,14 @@ function TanstackLogo() {
9925
9919
  filterUnits="userSpaceOnUse"
9926
9920
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
9927
9921
  <mask
9928
- id="k"
9922
+ id={`k-${id}`}
9929
9923
  x="316.5"
9930
9924
  y="412"
9931
9925
  width="454"
9932
9926
  height="396.9"
9933
9927
  maskUnits="userSpaceOnUse"
9934
- ><g filter="url(#ah)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9935
- <g mask="url(#k)"><ellipse
9928
+ ><g filter={`url(#ah-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9929
+ <g mask={`url(#k-${id})`}><ellipse
9936
9930
  cx="543.5"
9937
9931
  cy="610.5"
9938
9932
  rx="214.5"
@@ -9942,7 +9936,7 @@ function TanstackLogo() {
9942
9936
  stroke-width="25"
9943
9937
  /></g>
9944
9938
  <defs><filter
9945
- id="ae"
9939
+ id={`ae-${id}`}
9946
9940
  x="-137.5"
9947
9941
  y="450"
9948
9942
  width="454"
@@ -9950,14 +9944,14 @@ function TanstackLogo() {
9950
9944
  filterUnits="userSpaceOnUse"
9951
9945
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
9952
9946
  <mask
9953
- id="j"
9947
+ id={`j-${id}`}
9954
9948
  x="-137.5"
9955
9949
  y="450"
9956
9950
  width="454"
9957
9951
  height="396.9"
9958
9952
  maskUnits="userSpaceOnUse"
9959
- ><g filter="url(#ae)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9960
- <g mask="url(#j)"><ellipse
9953
+ ><g filter={`url(#ae-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9954
+ <g mask={`url(#j-${id})`}><ellipse
9961
9955
  cx="89.5"
9962
9956
  cy="648.5"
9963
9957
  rx="214.5"
@@ -9967,7 +9961,7 @@ function TanstackLogo() {
9967
9961
  stroke-width="25"
9968
9962
  /></g>
9969
9963
  <defs><filter
9970
- id="ai"
9964
+ id={`ai-${id}`}
9971
9965
  x="316.5"
9972
9966
  y="450"
9973
9967
  width="454"
@@ -9975,14 +9969,14 @@ function TanstackLogo() {
9975
9969
  filterUnits="userSpaceOnUse"
9976
9970
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
9977
9971
  <mask
9978
- id="i"
9972
+ id={`i-${id}`}
9979
9973
  x="316.5"
9980
9974
  y="450"
9981
9975
  width="454"
9982
9976
  height="396.9"
9983
9977
  maskUnits="userSpaceOnUse"
9984
- ><g filter="url(#ai)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9985
- <g mask="url(#i)"><ellipse
9978
+ ><g filter={`url(#ai-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
9979
+ <g mask={`url(#i-${id})`}><ellipse
9986
9980
  cx="543.5"
9987
9981
  cy="648.5"
9988
9982
  rx="214.5"
@@ -9992,7 +9986,7 @@ function TanstackLogo() {
9992
9986
  stroke-width="25"
9993
9987
  /></g>
9994
9988
  <defs><filter
9995
- id="aj"
9989
+ id={`aj-${id}`}
9996
9990
  x="-137.5"
9997
9991
  y="486"
9998
9992
  width="454"
@@ -10000,14 +9994,14 @@ function TanstackLogo() {
10000
9994
  filterUnits="userSpaceOnUse"
10001
9995
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10002
9996
  <mask
10003
- id="h"
9997
+ id={`h-${id}`}
10004
9998
  x="-137.5"
10005
9999
  y="486"
10006
10000
  width="454"
10007
10001
  height="396.9"
10008
10002
  maskUnits="userSpaceOnUse"
10009
- ><g filter="url(#aj)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10010
- <g mask="url(#h)"><ellipse
10003
+ ><g filter={`url(#aj-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10004
+ <g mask={`url(#h-${id})`}><ellipse
10011
10005
  cx="89.5"
10012
10006
  cy="684.5"
10013
10007
  rx="214.5"
@@ -10017,7 +10011,7 @@ function TanstackLogo() {
10017
10011
  stroke-width="25"
10018
10012
  /></g>
10019
10013
  <defs><filter
10020
- id="ag"
10014
+ id={`ag-${id}`}
10021
10015
  x="316.5"
10022
10016
  y="486"
10023
10017
  width="454"
@@ -10025,14 +10019,14 @@ function TanstackLogo() {
10025
10019
  filterUnits="userSpaceOnUse"
10026
10020
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10027
10021
  <mask
10028
- id="g"
10022
+ id={`g-${id}`}
10029
10023
  x="316.5"
10030
10024
  y="486"
10031
10025
  width="454"
10032
10026
  height="396.9"
10033
10027
  maskUnits="userSpaceOnUse"
10034
- ><g filter="url(#ag)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10035
- <g mask="url(#g)"><ellipse
10028
+ ><g filter={`url(#ag-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10029
+ <g mask={`url(#g-${id})`}><ellipse
10036
10030
  cx="543.5"
10037
10031
  cy="684.5"
10038
10032
  rx="214.5"
@@ -10042,7 +10036,7 @@ function TanstackLogo() {
10042
10036
  stroke-width="25"
10043
10037
  /></g>
10044
10038
  <defs><filter
10045
- id="af"
10039
+ id={`af-${id}`}
10046
10040
  x="272.2"
10047
10041
  y="308"
10048
10042
  width="176.9"
@@ -10050,14 +10044,14 @@ function TanstackLogo() {
10050
10044
  filterUnits="userSpaceOnUse"
10051
10045
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10052
10046
  <mask
10053
- id="f"
10047
+ id={`f-${id}`}
10054
10048
  x="272.2"
10055
10049
  y="308"
10056
10050
  width="176.9"
10057
10051
  height="129.3"
10058
10052
  maskUnits="userSpaceOnUse"
10059
- ><g filter="url(#af)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10060
- <g mask="url(#f)">
10053
+ ><g filter={`url(#af-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10054
+ <g mask={`url(#f-${id})`}>
10061
10055
  <line
10062
10056
  x1="436"
10063
10057
  x2="431"
@@ -10092,7 +10086,7 @@ function TanstackLogo() {
10092
10086
  stroke-width="11"
10093
10087
  />
10094
10088
  <linearGradient
10095
- id="m"
10089
+ id={`m-${id}`}
10096
10090
  x1="-670.75"
10097
10091
  x2="-671.59"
10098
10092
  y1="164.4"
@@ -10106,7 +10100,7 @@ function TanstackLogo() {
10106
10100
  <path
10107
10101
  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"
10108
10102
  clip-rule="evenodd"
10109
- fill="url(#m)"
10103
+ fill={`url(#m-${id})`}
10110
10104
  fill-rule="evenodd"
10111
10105
  />
10112
10106
  <line
@@ -10166,7 +10160,7 @@ function TanstackLogo() {
10166
10160
  />
10167
10161
  </g>
10168
10162
  <defs><filter
10169
- id="ak"
10163
+ id={`ak-${id}`}
10170
10164
  x="73.2"
10171
10165
  y="113.8"
10172
10166
  width="280.6"
@@ -10174,16 +10168,16 @@ function TanstackLogo() {
10174
10168
  filterUnits="userSpaceOnUse"
10175
10169
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10176
10170
  <mask
10177
- id="e"
10171
+ id={`e-${id}`}
10178
10172
  x="73.2"
10179
10173
  y="113.8"
10180
10174
  width="280.6"
10181
10175
  height="317.4"
10182
10176
  maskUnits="userSpaceOnUse"
10183
- ><g filter="url(#ak)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10184
- <g mask="url(#e)">
10177
+ ><g filter={`url(#ak-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10178
+ <g mask={`url(#e-${id})`}>
10185
10179
  <linearGradient
10186
- id="n"
10180
+ id={`n-${id}`}
10187
10181
  x1="-672.16"
10188
10182
  x2="-672.16"
10189
10183
  y1="165.03"
@@ -10197,12 +10191,12 @@ function TanstackLogo() {
10197
10191
  <path
10198
10192
  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"
10199
10193
  clip-rule="evenodd"
10200
- fill="url(#n)"
10194
+ fill={`url(#n-${id})`}
10201
10195
  fill-rule="evenodd"
10202
10196
  />
10203
10197
  <g stroke="#2F8A00">
10204
10198
  <linearGradient
10205
- id="r"
10199
+ id={`r-${id}`}
10206
10200
  x1="-660.23"
10207
10201
  x2="-660.23"
10208
10202
  y1="166.72"
@@ -10216,12 +10210,12 @@ function TanstackLogo() {
10216
10210
  <path
10217
10211
  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"
10218
10212
  clip-rule="evenodd"
10219
- fill="url(#r)"
10213
+ fill={`url(#r-${id})`}
10220
10214
  fill-rule="evenodd"
10221
10215
  stroke-width="13"
10222
10216
  />
10223
10217
  <linearGradient
10224
- id="s"
10218
+ id={`s-${id}`}
10225
10219
  x1="-661.36"
10226
10220
  x2="-661.36"
10227
10221
  y1="164.18"
@@ -10235,12 +10229,12 @@ function TanstackLogo() {
10235
10229
  <path
10236
10230
  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"
10237
10231
  clip-rule="evenodd"
10238
- fill="url(#s)"
10232
+ fill={`url(#s-${id})`}
10239
10233
  fill-rule="evenodd"
10240
10234
  stroke-width="13"
10241
10235
  />
10242
10236
  <linearGradient
10243
- id="q"
10237
+ id={`q-${id}`}
10244
10238
  x1="-656.79"
10245
10239
  x2="-656.79"
10246
10240
  y1="165.15"
@@ -10254,12 +10248,12 @@ function TanstackLogo() {
10254
10248
  <path
10255
10249
  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"
10256
10250
  clip-rule="evenodd"
10257
- fill="url(#q)"
10251
+ fill={`url(#q-${id})`}
10258
10252
  fill-rule="evenodd"
10259
10253
  stroke-width="13"
10260
10254
  />
10261
10255
  <linearGradient
10262
- id="p"
10256
+ id={`p-${id}`}
10263
10257
  x1="-663.07"
10264
10258
  x2="-663.07"
10265
10259
  y1="165.44"
@@ -10273,12 +10267,12 @@ function TanstackLogo() {
10273
10267
  <path
10274
10268
  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"
10275
10269
  clip-rule="evenodd"
10276
- fill="url(#p)"
10270
+ fill={`url(#p-${id})`}
10277
10271
  fill-rule="evenodd"
10278
10272
  stroke-width="13"
10279
10273
  />
10280
10274
  <linearGradient
10281
- id="o"
10275
+ id={`o-${id}`}
10282
10276
  x1="-662.57"
10283
10277
  x2="-662.57"
10284
10278
  y1="164.44"
@@ -10292,12 +10286,12 @@ function TanstackLogo() {
10292
10286
  <path
10293
10287
  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"
10294
10288
  clip-rule="evenodd"
10295
- fill="url(#o)"
10289
+ fill={`url(#o-${id})`}
10296
10290
  fill-rule="evenodd"
10297
10291
  stroke-width="13"
10298
10292
  />
10299
10293
  <linearGradient
10300
- id="l"
10294
+ id={`l-${id}`}
10301
10295
  x1="-656.43"
10302
10296
  x2="-656.43"
10303
10297
  y1="163.86"
@@ -10311,7 +10305,7 @@ function TanstackLogo() {
10311
10305
  <path
10312
10306
  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"
10313
10307
  clip-rule="evenodd"
10314
- fill="url(#l)"
10308
+ fill={`url(#l-${id})`}
10315
10309
  fill-rule="evenodd"
10316
10310
  stroke-width="13"
10317
10311
  />
@@ -10342,7 +10336,7 @@ function TanstackLogo() {
10342
10336
  </g>
10343
10337
  </g>
10344
10338
  <defs><filter
10345
- id="al"
10339
+ id={`al-${id}`}
10346
10340
  x="50.5"
10347
10341
  y="399"
10348
10342
  width="532"
@@ -10350,16 +10344,16 @@ function TanstackLogo() {
10350
10344
  filterUnits="userSpaceOnUse"
10351
10345
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10352
10346
  <mask
10353
- id="d"
10347
+ id={`d-${id}`}
10354
10348
  x="50.5"
10355
10349
  y="399"
10356
10350
  width="532"
10357
10351
  height="633"
10358
10352
  maskUnits="userSpaceOnUse"
10359
- ><g filter="url(#al)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10360
- <g mask="url(#d)">
10353
+ ><g filter={`url(#al-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10354
+ <g mask={`url(#d-${id})`}>
10361
10355
  <linearGradient
10362
- id="u"
10356
+ id={`u-${id}`}
10363
10357
  x1="-666.06"
10364
10358
  x2="-666.23"
10365
10359
  y1="163.36"
@@ -10370,10 +10364,16 @@ function TanstackLogo() {
10370
10364
  <stop stop-color="#FFF400" offset="0" />
10371
10365
  <stop stop-color="#3C8700" offset="1" />
10372
10366
  </linearGradient>
10373
- <ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)" />
10367
+ <ellipse
10368
+ cx="316.5"
10369
+ cy="715.5"
10370
+ rx="266"
10371
+ ry="316.5"
10372
+ fill={`url(#u-${id})`}
10373
+ />
10374
10374
  </g>
10375
10375
  <defs><filter
10376
- id="ad"
10376
+ id={`ad-${id}`}
10377
10377
  x="391"
10378
10378
  y="-24"
10379
10379
  width="288"
@@ -10381,16 +10381,16 @@ function TanstackLogo() {
10381
10381
  filterUnits="userSpaceOnUse"
10382
10382
  ><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></defs>
10383
10383
  <mask
10384
- id="c"
10384
+ id={`c-${id}`}
10385
10385
  x="391"
10386
10386
  y="-24"
10387
10387
  width="288"
10388
10388
  height="283"
10389
10389
  maskUnits="userSpaceOnUse"
10390
- ><g filter="url(#ad)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10391
- <g mask="url(#c)">
10390
+ ><g filter={`url(#ad-${id})`}><circle cx="316.5" cy="316.5" r="316.5" fill="#fff" /></g></mask>
10391
+ <g mask={`url(#c-${id})`}>
10392
10392
  <linearGradient
10393
- id="t"
10393
+ id={`t-${id}`}
10394
10394
  x1="-664.56"
10395
10395
  x2="-664.56"
10396
10396
  y1="163.79"
@@ -10401,9 +10401,9 @@ function TanstackLogo() {
10401
10401
  <stop stop-color="#FFDF00" offset="0" />
10402
10402
  <stop stop-color="#FF9D00" offset="1" />
10403
10403
  </linearGradient>
10404
- <circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)" />
10404
+ <circle cx="565.5" cy="89.5" r="113.5" fill={`url(#t-${id})`} />
10405
10405
  <linearGradient
10406
- id="v"
10406
+ id={`v-${id}`}
10407
10407
  x1="-644.5"
10408
10408
  x2="-645.77"
10409
10409
  y1="342"
@@ -10420,13 +10420,13 @@ function TanstackLogo() {
10420
10420
  y1="89"
10421
10421
  y2="89"
10422
10422
  fill="none"
10423
- stroke="url(#v)"
10423
+ stroke={`url(#v-${id})`}
10424
10424
  stroke-linecap="round"
10425
10425
  stroke-linejoin="bevel"
10426
10426
  stroke-width="12"
10427
10427
  />
10428
10428
  <linearGradient
10429
- id="aa"
10429
+ id={`aa-${id}`}
10430
10430
  x1="-641.56"
10431
10431
  x2="-642.83"
10432
10432
  y1="196.02"
@@ -10443,13 +10443,13 @@ function TanstackLogo() {
10443
10443
  y1="55.5"
10444
10444
  y2="50"
10445
10445
  fill="none"
10446
- stroke="url(#aa)"
10446
+ stroke={`url(#aa-${id})`}
10447
10447
  stroke-linecap="round"
10448
10448
  stroke-linejoin="bevel"
10449
10449
  stroke-width="12"
10450
10450
  />
10451
10451
  <linearGradient
10452
- id="w"
10452
+ id={`w-${id}`}
10453
10453
  x1="-643.73"
10454
10454
  x2="-645"
10455
10455
  y1="185.83"
@@ -10466,13 +10466,13 @@ function TanstackLogo() {
10466
10466
  y1="122"
10467
10467
  y2="130"
10468
10468
  fill="none"
10469
- stroke="url(#w)"
10469
+ stroke={`url(#w-${id})`}
10470
10470
  stroke-linecap="round"
10471
10471
  stroke-linejoin="bevel"
10472
10472
  stroke-width="12"
10473
10473
  />
10474
10474
  <linearGradient
10475
- id="ac"
10475
+ id={`ac-${id}`}
10476
10476
  x1="-638.94"
10477
10477
  x2="-640.22"
10478
10478
  y1="177.09"
@@ -10489,13 +10489,13 @@ function TanstackLogo() {
10489
10489
  y1="153"
10490
10490
  y2="166"
10491
10491
  fill="none"
10492
- stroke="url(#ac)"
10492
+ stroke={`url(#ac-${id})`}
10493
10493
  stroke-linecap="round"
10494
10494
  stroke-linejoin="bevel"
10495
10495
  stroke-width="12"
10496
10496
  />
10497
10497
  <linearGradient
10498
- id="ab"
10498
+ id={`ab-${id}`}
10499
10499
  x1="-633.42"
10500
10500
  x2="-634.7"
10501
10501
  y1="172.41"
@@ -10512,13 +10512,13 @@ function TanstackLogo() {
10512
10512
  y1="180"
10513
10513
  y2="199"
10514
10514
  fill="none"
10515
- stroke="url(#ab)"
10515
+ stroke={`url(#ab-${id})`}
10516
10516
  stroke-linecap="round"
10517
10517
  stroke-linejoin="bevel"
10518
10518
  stroke-width="12"
10519
10519
  />
10520
10520
  <linearGradient
10521
- id="y"
10521
+ id={`y-${id}`}
10522
10522
  x1="-619.05"
10523
10523
  x2="-619.52"
10524
10524
  y1="170.82"
@@ -10535,13 +10535,13 @@ function TanstackLogo() {
10535
10535
  y1="203"
10536
10536
  y2="225.9"
10537
10537
  fill="none"
10538
- stroke="url(#y)"
10538
+ stroke={`url(#y-${id})`}
10539
10539
  stroke-linecap="round"
10540
10540
  stroke-linejoin="bevel"
10541
10541
  stroke-width="12"
10542
10542
  />
10543
10543
  <linearGradient
10544
- id="x"
10544
+ id={`x-${id}`}
10545
10545
  x1="-578.5"
10546
10546
  x2="-578.63"
10547
10547
  y1="170.31"
@@ -10558,13 +10558,13 @@ function TanstackLogo() {
10558
10558
  y1="219.5"
10559
10559
  y2="244"
10560
10560
  fill="none"
10561
- stroke="url(#x)"
10561
+ stroke={`url(#x-${id})`}
10562
10562
  stroke-linecap="round"
10563
10563
  stroke-linejoin="bevel"
10564
10564
  stroke-width="12"
10565
10565
  />
10566
10566
  <linearGradient
10567
- id="z"
10567
+ id={`z-${id}`}
10568
10568
  x1="666.5"
10569
10569
  x2="666.5"
10570
10570
  y1="170.31"
@@ -10581,7 +10581,7 @@ function TanstackLogo() {
10581
10581
  y1="228.5"
10582
10582
  y2="253"
10583
10583
  fill="none"
10584
- stroke="url(#z)"
10584
+ stroke={`url(#z-${id})`}
10585
10585
  stroke-linecap="round"
10586
10586
  stroke-linejoin="bevel"
10587
10587
  stroke-width="12"
@@ -10840,7 +10840,7 @@ function Explorer(props) {
10840
10840
  itemsDeletable={type() === "array" || type() === "Iterable" || type() === "object"}
10841
10841
  />;
10842
10842
  }}</Key></div></Show>
10843
- <Show when={subEntryPages().length > 1}><div class={styles().subEntry}><Index each={subEntryPages()}>{(entries3, index) => <div><div class={styles().entry}>
10843
+ <Show when={subEntryPages().length > 1}><div class={styles().subEntry}><Index each={subEntryPages()}>{(entries2, index) => <div><div class={styles().entry}>
10844
10844
  <button
10845
10845
  onClick={() => setExpandedPages(
10846
10846
  (old) => old.includes(index) ? old.filter((d) => d !== index) : [...old, index]
@@ -10855,7 +10855,7 @@ function Explorer(props) {
10855
10855
  {index * 100 + 100 - 1}
10856
10856
  {"]"}
10857
10857
  </button>
10858
- <Show when={expandedPages().includes(index)}><div class={styles().subEntry}><Key each={entries3()} by={(entry) => entry.label}>{(entry) => <Explorer
10858
+ <Show when={expandedPages().includes(index)}><div class={styles().subEntry}><Key each={entries2()} by={(entry) => entry.label}>{(entry) => <Explorer
10859
10859
  defaultExpanded={props.defaultExpanded}
10860
10860
  label={entry().label}
10861
10861
  value={entry().value}