@tanstack/query-devtools 5.18.1 → 5.20.2

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/index.cjs CHANGED
@@ -10,7 +10,7 @@ var __export = (target, all) => {
10
10
  __defProp(target, name, { get: all[name], enumerable: true });
11
11
  };
12
12
 
13
- // ../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/dist/solid.js
13
+ // ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/dist/solid.js
14
14
  function setHydrateContext(context) {
15
15
  sharedConfig.context = context;
16
16
  }
@@ -125,11 +125,9 @@ function createResource(pSource, pFetcher, pOptions) {
125
125
  pr = null;
126
126
  key !== void 0 && (resolved = true);
127
127
  if ((p2 === initP || v === initP) && options.onHydrated)
128
- queueMicrotask(
129
- () => options.onHydrated(key, {
130
- value: v
131
- })
132
- );
128
+ queueMicrotask(() => options.onHydrated(key, {
129
+ value: v
130
+ }));
133
131
  initP = NO_INIT;
134
132
  if (Transition && p2 && loadedUnderTransition) {
135
133
  Transition.promises.delete(p2);
@@ -185,12 +183,10 @@ function createResource(pSource, pFetcher, pOptions) {
185
183
  }
186
184
  if (Transition && pr)
187
185
  Transition.promises.delete(pr);
188
- const p2 = initP !== NO_INIT ? initP : untrack(
189
- () => fetcher(lookup, {
190
- value: value(),
191
- refetching
192
- })
193
- );
186
+ const p2 = initP !== NO_INIT ? initP : untrack(() => fetcher(lookup, {
187
+ value: value(),
188
+ refetching
189
+ }));
194
190
  if (!isPromise(p2)) {
195
191
  loadEnd(pr, p2, void 0, lookup);
196
192
  return p2;
@@ -209,10 +205,7 @@ function createResource(pSource, pFetcher, pOptions) {
209
205
  setState2(resolved ? "refreshing" : "pending");
210
206
  trigger();
211
207
  }, false);
212
- return p2.then(
213
- (v) => loadEnd(p2, v, void 0, lookup),
214
- (e2) => loadEnd(p2, void 0, castError(e2), lookup)
215
- );
208
+ return p2.then((v) => loadEnd(p2, v, void 0, lookup), (e2) => loadEnd(p2, void 0, castError(e2), lookup));
216
209
  }
217
210
  Object.defineProperties(read, {
218
211
  state: {
@@ -242,23 +235,22 @@ function createResource(pSource, pFetcher, pOptions) {
242
235
  createComputed(() => load(false));
243
236
  else
244
237
  load(false);
245
- return [
246
- read,
247
- {
248
- refetch: load,
249
- mutate: setValue
250
- }
251
- ];
238
+ return [read, {
239
+ refetch: load,
240
+ mutate: setValue
241
+ }];
252
242
  }
253
243
  function batch(fn) {
254
244
  return runUpdates(fn, false);
255
245
  }
256
246
  function untrack(fn) {
257
- if (Listener === null)
247
+ if (!ExternalSourceConfig && Listener === null)
258
248
  return fn();
259
249
  const listener = Listener;
260
250
  Listener = null;
261
251
  try {
252
+ if (ExternalSourceConfig)
253
+ return ExternalSourceConfig.untrack(fn);
262
254
  return fn();
263
255
  } finally {
264
256
  Listener = listener;
@@ -450,11 +442,7 @@ function updateComputation(node) {
450
442
  return;
451
443
  cleanNode(node);
452
444
  const time = ExecCount;
453
- runComputation(
454
- node,
455
- Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value,
456
- time
457
- );
445
+ runComputation(node, Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value, time);
458
446
  if (Transition && !Transition.running && Transition.sources.has(node)) {
459
447
  queueMicrotask(() => {
460
448
  runUpdates(() => {
@@ -534,14 +522,14 @@ function createComputation(fn, init, pure, state2 = STALE, options) {
534
522
  Owner.owned.push(c2);
535
523
  }
536
524
  }
537
- if (ExternalSourceFactory) {
525
+ if (ExternalSourceConfig && c2.fn) {
538
526
  const [track, trigger] = createSignal(void 0, {
539
527
  equals: false
540
528
  });
541
- const ordinary = ExternalSourceFactory(c2.fn, trigger);
529
+ const ordinary = ExternalSourceConfig.factory(c2.fn, trigger);
542
530
  onCleanup(() => ordinary.dispose());
543
531
  const triggerInTransition = () => startTransition(trigger).then(() => inTransition.dispose());
544
- const inTransition = ExternalSourceFactory(c2.fn, triggerInTransition);
532
+ const inTransition = ExternalSourceConfig.factory(c2.fn, triggerInTransition);
545
533
  c2.fn = (x) => {
546
534
  track();
547
535
  return Transition && Transition.running ? inTransition.track(x) : ordinary.track(x);
@@ -832,16 +820,13 @@ function resolveChildren(children2) {
832
820
  function createProvider(id, options) {
833
821
  return function provider(props) {
834
822
  let res;
835
- createRenderEffect(
836
- () => res = untrack(() => {
837
- Owner.context = {
838
- ...Owner.context,
839
- [id]: props.value
840
- };
841
- return children(() => props.children);
842
- }),
843
- void 0
844
- );
823
+ createRenderEffect(() => res = untrack(() => {
824
+ Owner.context = {
825
+ ...Owner.context,
826
+ [id]: props.value
827
+ };
828
+ return children(() => props.children);
829
+ }), void 0);
845
830
  return res;
846
831
  };
847
832
  }
@@ -1027,108 +1012,96 @@ function mergeProps(...sources) {
1027
1012
  sources[i2] = typeof s2 === "function" ? (proxy = true, createMemo(s2)) : s2;
1028
1013
  }
1029
1014
  if (proxy) {
1030
- return new Proxy(
1031
- {
1032
- get(property) {
1033
- for (let i2 = sources.length - 1; i2 >= 0; i2--) {
1034
- const v = resolveSource(sources[i2])[property];
1035
- if (v !== void 0)
1036
- return v;
1037
- }
1038
- },
1039
- has(property) {
1040
- for (let i2 = sources.length - 1; i2 >= 0; i2--) {
1041
- if (property in resolveSource(sources[i2]))
1042
- return true;
1043
- }
1044
- return false;
1045
- },
1046
- keys() {
1047
- const keys2 = [];
1048
- for (let i2 = 0; i2 < sources.length; i2++)
1049
- keys2.push(...Object.keys(resolveSource(sources[i2])));
1050
- return [...new Set(keys2)];
1015
+ return new Proxy({
1016
+ get(property) {
1017
+ for (let i2 = sources.length - 1; i2 >= 0; i2--) {
1018
+ const v = resolveSource(sources[i2])[property];
1019
+ if (v !== void 0)
1020
+ return v;
1051
1021
  }
1052
1022
  },
1053
- propTraps
1054
- );
1023
+ has(property) {
1024
+ for (let i2 = sources.length - 1; i2 >= 0; i2--) {
1025
+ if (property in resolveSource(sources[i2]))
1026
+ return true;
1027
+ }
1028
+ return false;
1029
+ },
1030
+ keys() {
1031
+ const keys2 = [];
1032
+ for (let i2 = 0; i2 < sources.length; i2++)
1033
+ keys2.push(...Object.keys(resolveSource(sources[i2])));
1034
+ return [...new Set(keys2)];
1035
+ }
1036
+ }, propTraps);
1055
1037
  }
1056
- const target = {};
1057
1038
  const sourcesMap = {};
1058
- const defined = /* @__PURE__ */ new Set();
1039
+ const defined = /* @__PURE__ */ Object.create(null);
1059
1040
  for (let i2 = sources.length - 1; i2 >= 0; i2--) {
1060
1041
  const source = sources[i2];
1061
1042
  if (!source)
1062
1043
  continue;
1063
1044
  const sourceKeys = Object.getOwnPropertyNames(source);
1064
- for (let i3 = 0, length = sourceKeys.length; i3 < length; i3++) {
1045
+ for (let i3 = sourceKeys.length - 1; i3 >= 0; i3--) {
1065
1046
  const key = sourceKeys[i3];
1066
1047
  if (key === "__proto__" || key === "constructor")
1067
1048
  continue;
1068
1049
  const desc = Object.getOwnPropertyDescriptor(source, key);
1069
- if (!defined.has(key)) {
1070
- if (desc.get) {
1071
- defined.add(key);
1072
- Object.defineProperty(target, key, {
1073
- enumerable: true,
1074
- configurable: true,
1075
- get: resolveSources.bind(sourcesMap[key] = [desc.get.bind(source)])
1076
- });
1077
- } else {
1078
- if (desc.value !== void 0)
1079
- defined.add(key);
1080
- target[key] = desc.value;
1081
- }
1050
+ if (!defined[key]) {
1051
+ defined[key] = desc.get ? {
1052
+ enumerable: true,
1053
+ configurable: true,
1054
+ get: resolveSources.bind(sourcesMap[key] = [desc.get.bind(source)])
1055
+ } : desc.value !== void 0 ? desc : void 0;
1082
1056
  } else {
1083
1057
  const sources2 = sourcesMap[key];
1084
1058
  if (sources2) {
1085
- if (desc.get) {
1059
+ if (desc.get)
1086
1060
  sources2.push(desc.get.bind(source));
1087
- } else if (desc.value !== void 0) {
1061
+ else if (desc.value !== void 0)
1088
1062
  sources2.push(() => desc.value);
1089
- }
1090
- } else if (target[key] === void 0)
1091
- target[key] = desc.value;
1063
+ }
1092
1064
  }
1093
1065
  }
1094
1066
  }
1067
+ const target = {};
1068
+ const definedKeys = Object.keys(defined);
1069
+ for (let i2 = definedKeys.length - 1; i2 >= 0; i2--) {
1070
+ const key = definedKeys[i2], desc = defined[key];
1071
+ if (desc && desc.get)
1072
+ Object.defineProperty(target, key, desc);
1073
+ else
1074
+ target[key] = desc ? desc.value : void 0;
1075
+ }
1095
1076
  return target;
1096
1077
  }
1097
1078
  function splitProps(props, ...keys2) {
1098
1079
  if ($PROXY in props) {
1099
1080
  const blocked = new Set(keys2.length > 1 ? keys2.flat() : keys2[0]);
1100
1081
  const res = keys2.map((k) => {
1101
- return new Proxy(
1102
- {
1103
- get(property) {
1104
- return k.includes(property) ? props[property] : void 0;
1105
- },
1106
- has(property) {
1107
- return k.includes(property) && property in props;
1108
- },
1109
- keys() {
1110
- return k.filter((property) => property in props);
1111
- }
1082
+ return new Proxy({
1083
+ get(property) {
1084
+ return k.includes(property) ? props[property] : void 0;
1112
1085
  },
1113
- propTraps
1114
- );
1115
- });
1116
- res.push(
1117
- new Proxy(
1118
- {
1119
- get(property) {
1120
- return blocked.has(property) ? void 0 : props[property];
1121
- },
1122
- has(property) {
1123
- return blocked.has(property) ? false : property in props;
1124
- },
1125
- keys() {
1126
- return Object.keys(props).filter((k) => !blocked.has(k));
1127
- }
1086
+ has(property) {
1087
+ return k.includes(property) && property in props;
1128
1088
  },
1129
- propTraps
1130
- )
1131
- );
1089
+ keys() {
1090
+ return k.filter((property) => property in props);
1091
+ }
1092
+ }, propTraps);
1093
+ });
1094
+ res.push(new Proxy({
1095
+ get(property) {
1096
+ return blocked.has(property) ? void 0 : props[property];
1097
+ },
1098
+ has(property) {
1099
+ return blocked.has(property) ? false : property in props;
1100
+ },
1101
+ keys() {
1102
+ return Object.keys(props).filter((k) => !blocked.has(k));
1103
+ }
1104
+ }, propTraps));
1132
1105
  return res;
1133
1106
  }
1134
1107
  const otherObject = {};
@@ -1172,19 +1145,17 @@ function lazy(fn) {
1172
1145
  comp = s2;
1173
1146
  }
1174
1147
  let Comp;
1175
- return createMemo(
1176
- () => (Comp = comp()) && untrack(() => {
1177
- if (false)
1178
- ;
1179
- if (!ctx)
1180
- return Comp(props);
1181
- const c2 = sharedConfig.context;
1182
- setHydrateContext(ctx);
1183
- const r2 = Comp(props);
1184
- setHydrateContext(c2);
1185
- return r2;
1186
- })
1187
- );
1148
+ return createMemo(() => (Comp = comp()) && untrack(() => {
1149
+ if (false)
1150
+ ;
1151
+ if (!ctx)
1152
+ return Comp(props);
1153
+ const c2 = sharedConfig.context;
1154
+ setHydrateContext(ctx);
1155
+ const r2 = Comp(props);
1156
+ setHydrateContext(c2);
1157
+ return r2;
1158
+ }));
1188
1159
  };
1189
1160
  wrap.preload = () => p2 || ((p2 = fn()).then((mod) => comp = () => mod.default), p2);
1190
1161
  return wrap;
@@ -1210,77 +1181,57 @@ function Show(props) {
1210
1181
  const condition = createMemo(() => props.when, void 0, {
1211
1182
  equals: (a2, b2) => keyed ? a2 === b2 : !a2 === !b2
1212
1183
  });
1213
- return createMemo(
1214
- () => {
1215
- const c2 = condition();
1216
- if (c2) {
1217
- const child = props.children;
1218
- const fn = typeof child === "function" && child.length > 0;
1219
- return fn ? untrack(
1220
- () => child(
1221
- keyed ? c2 : () => {
1222
- if (!untrack(condition))
1223
- throw narrowedError("Show");
1224
- return props.when;
1225
- }
1226
- )
1227
- ) : child;
1228
- }
1229
- return props.fallback;
1230
- },
1231
- void 0,
1232
- void 0
1233
- );
1184
+ return createMemo(() => {
1185
+ const c2 = condition();
1186
+ if (c2) {
1187
+ const child = props.children;
1188
+ const fn = typeof child === "function" && child.length > 0;
1189
+ return fn ? untrack(() => child(keyed ? c2 : () => {
1190
+ if (!untrack(condition))
1191
+ throw narrowedError("Show");
1192
+ return props.when;
1193
+ })) : child;
1194
+ }
1195
+ return props.fallback;
1196
+ }, void 0, void 0);
1234
1197
  }
1235
1198
  function Switch(props) {
1236
1199
  let keyed = false;
1237
- const equals = (a2, b2) => a2[0] === b2[0] && (keyed ? a2[1] === b2[1] : !a2[1] === !b2[1]) && a2[2] === b2[2];
1238
- const conditions = children(() => props.children), evalConditions = createMemo(
1239
- () => {
1240
- let conds = conditions();
1241
- if (!Array.isArray(conds))
1242
- conds = [conds];
1243
- for (let i2 = 0; i2 < conds.length; i2++) {
1244
- const c2 = conds[i2].when;
1245
- if (c2) {
1246
- keyed = !!conds[i2].keyed;
1247
- return [i2, c2, conds[i2]];
1248
- }
1249
- }
1250
- return [-1];
1251
- },
1252
- void 0,
1253
- {
1254
- equals
1200
+ const equals = (a2, b2) => (keyed ? a2[1] === b2[1] : !a2[1] === !b2[1]) && a2[2] === b2[2];
1201
+ const conditions = children(() => props.children), evalConditions = createMemo(() => {
1202
+ let conds = conditions();
1203
+ if (!Array.isArray(conds))
1204
+ conds = [conds];
1205
+ for (let i2 = 0; i2 < conds.length; i2++) {
1206
+ const c2 = conds[i2].when;
1207
+ if (c2) {
1208
+ keyed = !!conds[i2].keyed;
1209
+ return [i2, c2, conds[i2]];
1210
+ }
1255
1211
  }
1256
- );
1257
- return createMemo(
1258
- () => {
1259
- const [index, when, cond] = evalConditions();
1260
- if (index < 0)
1261
- return props.fallback;
1262
- const c2 = cond.children;
1263
- const fn = typeof c2 === "function" && c2.length > 0;
1264
- return fn ? untrack(
1265
- () => c2(
1266
- keyed ? when : () => {
1267
- if (untrack(evalConditions)[0] !== index)
1268
- throw narrowedError("Match");
1269
- return cond.when;
1270
- }
1271
- )
1272
- ) : c2;
1273
- },
1274
- void 0,
1275
- void 0
1276
- );
1212
+ return [-1];
1213
+ }, void 0, {
1214
+ equals
1215
+ });
1216
+ return createMemo(() => {
1217
+ const [index, when, cond] = evalConditions();
1218
+ if (index < 0)
1219
+ return props.fallback;
1220
+ const c2 = cond.children;
1221
+ const fn = typeof c2 === "function" && c2.length > 0;
1222
+ return fn ? untrack(() => c2(keyed ? when : () => {
1223
+ if (untrack(evalConditions)[0] !== index)
1224
+ throw narrowedError("Match");
1225
+ return cond.when;
1226
+ })) : c2;
1227
+ }, void 0, void 0);
1277
1228
  }
1278
1229
  function Match(props) {
1279
1230
  return props;
1280
1231
  }
1281
- var sharedConfig, equalFn, $PROXY, $TRACK, signalOptions, ERROR, runEffects, STALE, PENDING, UNOWNED, NO_INIT, Owner, Transition, Scheduler, ExternalSourceFactory, Listener, Updates, Effects, ExecCount, transPending, setTransPending, SuspenseContext, FALLBACK, hydrationEnabled, propTraps, counter, narrowedError, DEV;
1232
+ var sharedConfig, equalFn, $PROXY, $TRACK, signalOptions, ERROR, runEffects, STALE, PENDING, UNOWNED, NO_INIT, Owner, Transition, Scheduler, ExternalSourceConfig, Listener, Updates, Effects, ExecCount, transPending, setTransPending, SuspenseContext, FALLBACK, hydrationEnabled, propTraps, counter, narrowedError, DEV;
1282
1233
  var init_solid = __esm({
1283
- "../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/dist/solid.js"() {
1234
+ "../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/dist/solid.js"() {
1284
1235
  sharedConfig = {
1285
1236
  context: void 0,
1286
1237
  registry: void 0
@@ -1305,7 +1256,7 @@ var init_solid = __esm({
1305
1256
  Owner = null;
1306
1257
  Transition = null;
1307
1258
  Scheduler = null;
1308
- ExternalSourceFactory = null;
1259
+ ExternalSourceConfig = null;
1309
1260
  Listener = null;
1310
1261
  Updates = null;
1311
1262
  Effects = null;
@@ -1347,7 +1298,7 @@ var init_solid = __esm({
1347
1298
  }
1348
1299
  });
1349
1300
 
1350
- // ../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/web/dist/web.js
1301
+ // ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/web/dist/web.js
1351
1302
  function getPropAlias(prop, tagName) {
1352
1303
  const a2 = PropAliases[prop];
1353
1304
  return typeof a2 === "object" ? a2[tagName] ? a2["$"] : void 0 : a2;
@@ -1522,9 +1473,7 @@ function style(node, value, prev) {
1522
1473
  function spread(node, props = {}, isSVG, skipChildren) {
1523
1474
  const prevProps = {};
1524
1475
  if (!skipChildren) {
1525
- createRenderEffect(
1526
- () => prevProps.children = insertExpression(node, props.children, prevProps.children)
1527
- );
1476
+ createRenderEffect(() => prevProps.children = insertExpression(node, props.children, prevProps.children));
1528
1477
  }
1529
1478
  createRenderEffect(() => props.ref && props.ref(node));
1530
1479
  createRenderEffect(() => assign(node, props, isSVG, true, prevProps, true));
@@ -1685,7 +1634,7 @@ function insertExpression(parent, value, current, marker, unwrapArray) {
1685
1634
  if (multi) {
1686
1635
  let node = current[0];
1687
1636
  if (node && node.nodeType === 3) {
1688
- node.data = value;
1637
+ node.data !== value && (node.data = value);
1689
1638
  } else
1690
1639
  node = document.createTextNode(value);
1691
1640
  current = cleanChildren(parent, current, marker, node);
@@ -1769,11 +1718,7 @@ function normalizeIncomingArray(normalized, array, current, unwrap2) {
1769
1718
  if (unwrap2) {
1770
1719
  while (typeof item === "function")
1771
1720
  item = item();
1772
- dynamic = normalizeIncomingArray(
1773
- normalized,
1774
- Array.isArray(item) ? item : [item],
1775
- Array.isArray(prev) ? prev : [prev]
1776
- ) || dynamic;
1721
+ dynamic = normalizeIncomingArray(normalized, Array.isArray(item) ? item : [item], Array.isArray(prev) ? prev : [prev]) || dynamic;
1777
1722
  } else {
1778
1723
  normalized.push(item);
1779
1724
  dynamic = true;
@@ -1821,41 +1766,39 @@ function createElement(tagName, isSVG = false) {
1821
1766
  return isSVG ? document.createElementNS(SVG_NAMESPACE, tagName) : document.createElement(tagName);
1822
1767
  }
1823
1768
  function Portal(props) {
1824
- const { useShadow } = props, marker = document.createTextNode(""), mount = () => props.mount || document.body, owner = getOwner();
1769
+ const {
1770
+ useShadow
1771
+ } = props, marker = document.createTextNode(""), mount = () => props.mount || document.body, owner = getOwner();
1825
1772
  let content;
1826
1773
  let hydrating = !!sharedConfig.context;
1827
- createEffect(
1828
- () => {
1829
- if (hydrating)
1830
- getOwner().user = hydrating = false;
1831
- content || (content = runWithOwner(owner, () => createMemo(() => props.children)));
1832
- const el = mount();
1833
- if (el instanceof HTMLHeadElement) {
1834
- const [clean, setClean] = createSignal(false);
1835
- const cleanup = () => setClean(true);
1836
- createRoot((dispose3) => insert(el, () => !clean() ? content() : dispose3(), null));
1837
- onCleanup(cleanup);
1838
- } else {
1839
- const container = createElement(props.isSVG ? "g" : "div", props.isSVG), renderRoot = useShadow && container.attachShadow ? container.attachShadow({
1840
- mode: "open"
1841
- }) : container;
1842
- Object.defineProperty(container, "_$host", {
1843
- get() {
1844
- return marker.parentNode;
1845
- },
1846
- configurable: true
1847
- });
1848
- insert(renderRoot, content);
1849
- el.appendChild(container);
1850
- props.ref && props.ref(container);
1851
- onCleanup(() => el.removeChild(container));
1852
- }
1853
- },
1854
- void 0,
1855
- {
1856
- render: !hydrating
1774
+ createEffect(() => {
1775
+ if (hydrating)
1776
+ getOwner().user = hydrating = false;
1777
+ content || (content = runWithOwner(owner, () => createMemo(() => props.children)));
1778
+ const el = mount();
1779
+ if (el instanceof HTMLHeadElement) {
1780
+ const [clean, setClean] = createSignal(false);
1781
+ const cleanup = () => setClean(true);
1782
+ createRoot((dispose3) => insert(el, () => !clean() ? content() : dispose3(), null));
1783
+ onCleanup(cleanup);
1784
+ } else {
1785
+ const container = createElement(props.isSVG ? "g" : "div", props.isSVG), renderRoot = useShadow && container.attachShadow ? container.attachShadow({
1786
+ mode: "open"
1787
+ }) : container;
1788
+ Object.defineProperty(container, "_$host", {
1789
+ get() {
1790
+ return marker.parentNode;
1791
+ },
1792
+ configurable: true
1793
+ });
1794
+ insert(renderRoot, content);
1795
+ el.appendChild(container);
1796
+ props.ref && props.ref(container);
1797
+ onCleanup(() => el.removeChild(container));
1857
1798
  }
1858
- );
1799
+ }, void 0, {
1800
+ render: !hydrating
1801
+ });
1859
1802
  return marker;
1860
1803
  }
1861
1804
  function Dynamic(props) {
@@ -1876,52 +1819,12 @@ function Dynamic(props) {
1876
1819
  }
1877
1820
  var booleans, Properties, ChildProperties, Aliases, PropAliases, DelegatedEvents, SVGElements, SVGNamespace, $$EVENTS, isServer, SVG_NAMESPACE;
1878
1821
  var init_web = __esm({
1879
- "../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/web/dist/web.js"() {
1822
+ "../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/web/dist/web.js"() {
1880
1823
  init_solid();
1881
1824
  init_solid();
1882
- booleans = [
1883
- "allowfullscreen",
1884
- "async",
1885
- "autofocus",
1886
- "autoplay",
1887
- "checked",
1888
- "controls",
1889
- "default",
1890
- "disabled",
1891
- "formnovalidate",
1892
- "hidden",
1893
- "indeterminate",
1894
- "inert",
1895
- "ismap",
1896
- "loop",
1897
- "multiple",
1898
- "muted",
1899
- "nomodule",
1900
- "novalidate",
1901
- "open",
1902
- "playsinline",
1903
- "readonly",
1904
- "required",
1905
- "reversed",
1906
- "seamless",
1907
- "selected"
1908
- ];
1909
- Properties = /* @__PURE__ */ new Set([
1910
- "className",
1911
- "value",
1912
- "readOnly",
1913
- "formNoValidate",
1914
- "isMap",
1915
- "noModule",
1916
- "playsInline",
1917
- ...booleans
1918
- ]);
1919
- ChildProperties = /* @__PURE__ */ new Set([
1920
- "innerHTML",
1921
- "textContent",
1922
- "innerText",
1923
- "children"
1924
- ]);
1825
+ booleans = ["allowfullscreen", "async", "autofocus", "autoplay", "checked", "controls", "default", "disabled", "formnovalidate", "hidden", "indeterminate", "inert", "ismap", "loop", "multiple", "muted", "nomodule", "novalidate", "open", "playsinline", "readonly", "required", "reversed", "seamless", "selected"];
1826
+ Properties = /* @__PURE__ */ new Set(["className", "value", "readOnly", "formNoValidate", "isMap", "noModule", "playsInline", ...booleans]);
1827
+ ChildProperties = /* @__PURE__ */ new Set(["innerHTML", "textContent", "innerText", "children"]);
1925
1828
  Aliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
1926
1829
  className: "class",
1927
1830
  htmlFor: "for"
@@ -1951,30 +1854,7 @@ var init_web = __esm({
1951
1854
  TEXTAREA: 1
1952
1855
  }
1953
1856
  });
1954
- DelegatedEvents = /* @__PURE__ */ new Set([
1955
- "beforeinput",
1956
- "click",
1957
- "dblclick",
1958
- "contextmenu",
1959
- "focusin",
1960
- "focusout",
1961
- "input",
1962
- "keydown",
1963
- "keyup",
1964
- "mousedown",
1965
- "mousemove",
1966
- "mouseout",
1967
- "mouseover",
1968
- "mouseup",
1969
- "pointerdown",
1970
- "pointermove",
1971
- "pointerout",
1972
- "pointerover",
1973
- "pointerup",
1974
- "touchend",
1975
- "touchmove",
1976
- "touchstart"
1977
- ]);
1857
+ DelegatedEvents = /* @__PURE__ */ new Set(["beforeinput", "click", "dblclick", "contextmenu", "focusin", "focusout", "input", "keydown", "keyup", "mousedown", "mousemove", "mouseout", "mouseover", "mouseup", "pointerdown", "pointermove", "pointerout", "pointerover", "pointerup", "touchend", "touchmove", "touchstart"]);
1978
1858
  SVGElements = /* @__PURE__ */ new Set([
1979
1859
  "altGlyph",
1980
1860
  "altGlyphDef",
@@ -2131,7 +2011,7 @@ var __extends, ClassRegistry;
2131
2011
  var init_class_registry = __esm({
2132
2012
  "../../node_modules/.pnpm/superjson@1.13.3/node_modules/superjson/dist/esm/class-registry.js"() {
2133
2013
  init_registry();
2134
- __extends = function() {
2014
+ __extends = /* @__PURE__ */ function() {
2135
2015
  var extendStatics = function(d, b2) {
2136
2016
  extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b3) {
2137
2017
  d2.__proto__ = b3;
@@ -3351,7 +3231,7 @@ var init_utils = __esm({
3351
3231
  }
3352
3232
  });
3353
3233
 
3354
- // ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
3234
+ // ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
3355
3235
  function removeAccents(str) {
3356
3236
  return str.replace(allAccents, (match) => {
3357
3237
  return characterMap[match];
@@ -3530,7 +3410,7 @@ function getAccessorAttributes(accessor) {
3530
3410
  }
3531
3411
  var characterMap, chars, allAccents, rankings, defaultKeyAttributes;
3532
3412
  var init_lib = __esm({
3533
- "../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs"() {
3413
+ "../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs"() {
3534
3414
  characterMap = {
3535
3415
  \u00C0: "A",
3536
3416
  \u00C1: "A",
@@ -4040,7 +3920,7 @@ var init_clsx = __esm({
4040
3920
  }
4041
3921
  });
4042
3922
 
4043
- // ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.7/node_modules/@solid-primitives/transition-group/dist/index.js
3923
+ // ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js
4044
3924
  function createListTransition(source, options) {
4045
3925
  const initSource = untrack(source);
4046
3926
  if (isServer) {
@@ -4107,7 +3987,7 @@ function createListTransition(source, options) {
4107
3987
  }
4108
3988
  var noop;
4109
3989
  var init_dist3 = __esm({
4110
- "../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.7/node_modules/@solid-primitives/transition-group/dist/index.js"() {
3990
+ "../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js"() {
4111
3991
  init_solid();
4112
3992
  init_web();
4113
3993
  noop = () => {
@@ -4115,7 +3995,7 @@ var init_dist3 = __esm({
4115
3995
  }
4116
3996
  });
4117
3997
 
4118
- // ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.7/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
3998
+ // ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
4119
3999
  function chain(callbacks) {
4120
4000
  return (...args) => {
4121
4001
  for (const callback of callbacks)
@@ -4166,7 +4046,7 @@ function handleDiffArray(current, prev, handleAdded, handleRemoved) {
4166
4046
  }
4167
4047
  var isClient, isDev, noop2, isNonNullable, filterNonNullable, access, asArray, tryOnCleanup;
4168
4048
  var init_R5675YMU = __esm({
4169
- "../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.7/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js"() {
4049
+ "../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js"() {
4170
4050
  init_solid();
4171
4051
  init_web();
4172
4052
  isClient = !isServer;
@@ -4180,14 +4060,14 @@ var init_R5675YMU = __esm({
4180
4060
  }
4181
4061
  });
4182
4062
 
4183
- // ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.7/node_modules/@solid-primitives/utils/dist/index/index.js
4063
+ // ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js
4184
4064
  var init_index = __esm({
4185
- "../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.7/node_modules/@solid-primitives/utils/dist/index/index.js"() {
4065
+ "../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js"() {
4186
4066
  init_R5675YMU();
4187
4067
  }
4188
4068
  });
4189
4069
 
4190
- // ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.7/node_modules/@solid-primitives/refs/dist/index.js
4070
+ // ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js
4191
4071
  function mergeRefs(...refs) {
4192
4072
  return chain(refs);
4193
4073
  }
@@ -4220,7 +4100,7 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
4220
4100
  }
4221
4101
  var defaultElementPredicate;
4222
4102
  var init_dist4 = __esm({
4223
- "../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.7/node_modules/@solid-primitives/refs/dist/index.js"() {
4103
+ "../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js"() {
4224
4104
  init_index();
4225
4105
  init_solid();
4226
4106
  init_web();
@@ -4228,7 +4108,7 @@ var init_dist4 = __esm({
4228
4108
  }
4229
4109
  });
4230
4110
 
4231
- // ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.7/node_modules/solid-transition-group/dist/index.js
4111
+ // ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js
4232
4112
  function createClassnames(props) {
4233
4113
  return createMemo(() => {
4234
4114
  const name = props.name || "s";
@@ -4304,7 +4184,7 @@ function exitTransition(classes, events, el, done) {
4304
4184
  }
4305
4185
  var TransitionGroup;
4306
4186
  var init_dist5 = __esm({
4307
- "../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.7/node_modules/solid-transition-group/dist/index.js"() {
4187
+ "../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js"() {
4308
4188
  init_solid();
4309
4189
  init_dist3();
4310
4190
  init_dist4();
@@ -4358,7 +4238,7 @@ var init_dist5 = __esm({
4358
4238
  }
4359
4239
  });
4360
4240
 
4361
- // ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.7/node_modules/@solid-primitives/keyed/dist/index.js
4241
+ // ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js
4362
4242
  function dispose2(list) {
4363
4243
  for (const o2 of list)
4364
4244
  o2.dispose();
@@ -4456,14 +4336,14 @@ function Key(props) {
4456
4336
  }
4457
4337
  var FALLBACK2;
4458
4338
  var init_dist6 = __esm({
4459
- "../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.7/node_modules/@solid-primitives/keyed/dist/index.js"() {
4339
+ "../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js"() {
4460
4340
  init_solid();
4461
4341
  init_web();
4462
4342
  FALLBACK2 = Symbol("fallback");
4463
4343
  }
4464
4344
  });
4465
4345
 
4466
- // ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.7/node_modules/@solid-primitives/storage/dist/index.js
4346
+ // ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js
4467
4347
  function createStorage(props) {
4468
4348
  const [error, setError] = createSignal();
4469
4349
  const handleError2 = props?.throw ? (err, fallback) => {
@@ -4608,7 +4488,7 @@ function createStorage(props) {
4608
4488
  }
4609
4489
  var createLocalStorage, addClearMethod, serializeCookieOptions, cookieStorage;
4610
4490
  var init_dist7 = __esm({
4611
- "../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.7/node_modules/@solid-primitives/storage/dist/index.js"() {
4491
+ "../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js"() {
4612
4492
  init_solid();
4613
4493
  createLocalStorage = createStorage;
4614
4494
  addClearMethod = (storage) => {
@@ -4688,7 +4568,7 @@ var init_dist7 = __esm({
4688
4568
  }
4689
4569
  });
4690
4570
 
4691
- // ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.7/node_modules/@solid-primitives/event-listener/dist/index.js
4571
+ // ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js
4692
4572
  function makeEventListener(target, type, handler, options) {
4693
4573
  target.addEventListener(type, handler, options);
4694
4574
  return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
@@ -4708,14 +4588,14 @@ function createEventListener(targets, type, handler, options) {
4708
4588
  createRenderEffect(attachListeners);
4709
4589
  }
4710
4590
  var init_dist8 = __esm({
4711
- "../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.7/node_modules/@solid-primitives/event-listener/dist/index.js"() {
4591
+ "../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js"() {
4712
4592
  init_index();
4713
4593
  init_solid();
4714
4594
  init_web();
4715
4595
  }
4716
4596
  });
4717
4597
 
4718
- // ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.7/node_modules/@solid-primitives/resize-observer/dist/index.js
4598
+ // ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js
4719
4599
  function makeResizeObserver(callback, options) {
4720
4600
  if (isServer) {
4721
4601
  return { observe: noop2, unobserve: noop2 };
@@ -4746,14 +4626,14 @@ function createResizeObserver(targets, onResize, options) {
4746
4626
  }, []);
4747
4627
  }
4748
4628
  var init_dist9 = __esm({
4749
- "../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.7/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
4629
+ "../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
4750
4630
  init_index();
4751
4631
  init_solid();
4752
4632
  init_web();
4753
4633
  }
4754
4634
  });
4755
4635
 
4756
- // ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.7/node_modules/@solid-primitives/props/dist/index.js
4636
+ // ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js
4757
4637
  function trueFn3() {
4758
4638
  return true;
4759
4639
  }
@@ -4838,7 +4718,7 @@ function combineProps(...args) {
4838
4718
  }
4839
4719
  var propTraps2, extractCSSregex, reduce;
4840
4720
  var init_dist10 = __esm({
4841
- "../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.7/node_modules/@solid-primitives/props/dist/index.js"() {
4721
+ "../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js"() {
4842
4722
  init_solid();
4843
4723
  init_index();
4844
4724
  propTraps2 = {
@@ -4882,7 +4762,7 @@ var init_dist10 = __esm({
4882
4762
  }
4883
4763
  });
4884
4764
 
4885
- // ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.7/node_modules/@kobalte/utils/dist/index.js
4765
+ // ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js
4886
4766
  function addItemToArray(array, item, index = -1) {
4887
4767
  if (!(index in array)) {
4888
4768
  return [...array, item];
@@ -5243,7 +5123,7 @@ function relativeOffset(ancestor, child, axis) {
5243
5123
  }
5244
5124
  var EventKey, supportsPreventScrollCached, focusableElements, tabbableElements, FOCUSABLE_ELEMENT_SELECTOR, TABBABLE_ELEMENT_SELECTOR, transitionsByElement, transitionCallbacks, visuallyHiddenStyles;
5245
5125
  var init_dist11 = __esm({
5246
- "../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.7/node_modules/@kobalte/utils/dist/index.js"() {
5126
+ "../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js"() {
5247
5127
  init_solid();
5248
5128
  init_dist8();
5249
5129
  init_dist10();
@@ -5309,7 +5189,7 @@ var init_dist11 = __esm({
5309
5189
  }
5310
5190
  });
5311
5191
 
5312
- // ../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/store/dist/store.js
5192
+ // ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js
5313
5193
  function wrap$1(value) {
5314
5194
  let p2 = value[$PROXY];
5315
5195
  if (!p2) {
@@ -5466,7 +5346,11 @@ function updatePath(current, path, traversed = []) {
5466
5346
  }
5467
5347
  return;
5468
5348
  } else if (isArray4 && partType === "object") {
5469
- const { from = 0, to = current.length - 1, by = 1 } = part;
5349
+ const {
5350
+ from = 0,
5351
+ to = current.length - 1,
5352
+ by = 1
5353
+ } = part;
5470
5354
  for (let i2 = from; i2 <= to; i2 += by) {
5471
5355
  updatePath(current, [i2].concat(path), traversed);
5472
5356
  }
@@ -5505,7 +5389,7 @@ function createStore(...[store, options]) {
5505
5389
  }
5506
5390
  var $RAW, $NODE, $HAS, $SELF, proxyTraps$1;
5507
5391
  var init_store = __esm({
5508
- "../../node_modules/.pnpm/solid-js@1.8.7/node_modules/solid-js/store/dist/store.js"() {
5392
+ "../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js"() {
5509
5393
  init_solid();
5510
5394
  $RAW = Symbol("store-raw");
5511
5395
  $NODE = Symbol("store-node");
@@ -10802,7 +10686,7 @@ function RadioGroupRoot(props) {
10802
10686
  }
10803
10687
  var DATA_TOP_LAYER_ATTR, originalBodyPointerEvents, hasDisabledBodyPointerEvents, layers, layerStack, AUTOFOCUS_ON_MOUNT_EVENT, AUTOFOCUS_ON_UNMOUNT_EVENT, EVENT_OPTIONS, focusScopeStack, DATA_LIVE_ANNOUNCER_ATTR, refCountMap, observerStack, POINTER_DOWN_OUTSIDE_EVENT, FOCUS_OUTSIDE_EVENT, SCROLL_LOCK_IDENTIFIER, FORM_CONTROL_PROP_NAMES, FormControlContext, AS_COMPONENT_SYMBOL, RTL_SCRIPTS, RTL_LANGS, currentLocale, listeners, I18nContext, cache$1, Selection, SelectionManager, ListCollection, ListKeyboardDelegate, BUTTON_INPUT_TYPES, DomCollectionContext, DismissableLayerContext, PopperContext, _tmpl$$f, DEFAULT_SIZE, HALF_DEFAULT_SIZE, ROTATION_DEG, REVERSE_BASE_PLACEMENT, MenuContext, MenuRootContext, MenuItemContext, MenuGroupContext, MenuRadioGroupContext, SUB_CLOSE_KEYS, SELECTION_KEYS, SUB_OPEN_KEYS, index$f, RadioGroupContext, RadioGroupItemContext, _tmpl$$7, _tmpl$$6, index$9;
10804
10688
  var init_esm2 = __esm({
10805
- "../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.7/node_modules/@kobalte/core/dist/esm/index.js"() {
10689
+ "../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.14/node_modules/@kobalte/core/dist/esm/index.js"() {
10806
10690
  init_dist11();
10807
10691
  init_store();
10808
10692
  init_web();
@@ -14240,7 +14124,6 @@ var init_Devtools = __esm({
14240
14124
  activeQuery().setState({
14241
14125
  status: "error",
14242
14126
  error,
14243
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
14244
14127
  fetchMeta: {
14245
14128
  ...activeQuery().state.fetchMeta,
14246
14129
  __previousQueryOptions
@@ -14309,7 +14192,6 @@ var init_Devtools = __esm({
14309
14192
  activeQueryVal.setState({
14310
14193
  data: void 0,
14311
14194
  status: "pending",
14312
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
14313
14195
  fetchMeta: {
14314
14196
  ...activeQueryVal.state.fetchMeta,
14315
14197
  __previousQueryOptions
@@ -15688,6 +15570,7 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
15688
15570
  throw new Error("Devtools is already mounted");
15689
15571
  }
15690
15572
  const dispose3 = render(() => {
15573
+ const _self$ = this;
15691
15574
  const [btnPosition] = this.#buttonPosition;
15692
15575
  const [pos] = this.#position;
15693
15576
  const [isOpen] = this.#initialIsOpen;
@@ -15701,7 +15584,6 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
15701
15584
  this.#Component = Devtools2;
15702
15585
  }
15703
15586
  setupStyleSheet(this.#styleNonce);
15704
- const _self$ = this;
15705
15587
  return createComponent(Devtools2, mergeProps({
15706
15588
  get queryFlavor() {
15707
15589
  return _self$.#queryFlavor;
@@ -15745,15 +15627,15 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
15745
15627
 
15746
15628
  @tanstack/match-sorter-utils/build/lib/index.mjs:
15747
15629
  (**
15748
- * match-sorter-utils
15749
- *
15750
- * Copyright (c) TanStack
15751
- *
15752
- * This source code is licensed under the MIT license found in the
15753
- * LICENSE.md file in the root directory of this source tree.
15754
- *
15755
- * @license MIT
15756
- *)
15630
+ * match-sorter-utils
15631
+ *
15632
+ * Copyright (c) TanStack
15633
+ *
15634
+ * This source code is licensed under the MIT license found in the
15635
+ * LICENSE.md file in the root directory of this source tree.
15636
+ *
15637
+ * @license MIT
15638
+ *)
15757
15639
  (**
15758
15640
  * @name match-sorter
15759
15641
  * @license MIT license.