@tanstack/router-devtools-core 1.133.22 → 1.133.25

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.
@@ -122,12 +122,9 @@ function createResource(pSource, pFetcher, pOptions) {
122
122
  if (pr === p) {
123
123
  pr = null;
124
124
  key !== void 0 && (resolved = true);
125
- if ((p === initP || v === initP) && options.onHydrated)
126
- queueMicrotask(
127
- () => options.onHydrated(key, {
128
- value: v
129
- })
130
- );
125
+ if ((p === initP || v === initP) && options.onHydrated) queueMicrotask(() => options.onHydrated(key, {
126
+ value: v
127
+ }));
131
128
  initP = NO_INIT;
132
129
  completeLoad(v, error2);
133
130
  }
@@ -156,20 +153,28 @@ function createResource(pSource, pFetcher, pOptions) {
156
153
  loadEnd(pr, untrack(value));
157
154
  return;
158
155
  }
159
- const p = initP !== NO_INIT ? initP : untrack(
160
- () => fetcher(lookup, {
161
- value: value(),
162
- refetching
163
- })
164
- );
165
- if (!isPromise(p)) {
156
+ let error2;
157
+ const p = initP !== NO_INIT ? initP : untrack(() => {
158
+ try {
159
+ return fetcher(lookup, {
160
+ value: value(),
161
+ refetching
162
+ });
163
+ } catch (fetcherError) {
164
+ error2 = fetcherError;
165
+ }
166
+ });
167
+ if (error2 !== void 0) {
168
+ loadEnd(pr, void 0, castError(error2), lookup);
169
+ return;
170
+ } else if (!isPromise(p)) {
166
171
  loadEnd(pr, p, void 0, lookup);
167
172
  return p;
168
173
  }
169
174
  pr = p;
170
- if ("value" in p) {
171
- if (p.status === "success") loadEnd(pr, p.value, void 0, lookup);
172
- else loadEnd(pr, void 0, castError(p.value), lookup);
175
+ if ("v" in p) {
176
+ if (p.s === 1) loadEnd(pr, p.v, void 0, lookup);
177
+ else loadEnd(pr, void 0, castError(p.v), lookup);
173
178
  return p;
174
179
  }
175
180
  scheduled = true;
@@ -178,10 +183,7 @@ function createResource(pSource, pFetcher, pOptions) {
178
183
  setState(resolved ? "refreshing" : "pending");
179
184
  trigger();
180
185
  }, false);
181
- return p.then(
182
- (v) => loadEnd(p, v, void 0, lookup),
183
- (e) => loadEnd(p, void 0, castError(e), lookup)
184
- );
186
+ return p.then((v) => loadEnd(p, v, void 0, lookup), (e) => loadEnd(p, void 0, castError(e), lookup));
185
187
  }
186
188
  Object.defineProperties(read, {
187
189
  state: {
@@ -205,15 +207,13 @@ function createResource(pSource, pFetcher, pOptions) {
205
207
  }
206
208
  }
207
209
  });
208
- if (dynamic) createComputed(() => load(false));
210
+ let owner = Owner;
211
+ if (dynamic) createComputed(() => (owner = Owner, load(false)));
209
212
  else load(false);
210
- return [
211
- read,
212
- {
213
- refetch: load,
214
- mutate: setValue
215
- }
216
- ];
213
+ return [read, {
214
+ refetch: (info) => runWithOwner(owner, () => load(info)),
215
+ mutate: setValue
216
+ }];
217
217
  }
218
218
  function untrack(fn) {
219
219
  if (Listener === null) return fn();
@@ -232,6 +232,20 @@ function onCleanup(fn) {
232
232
  else Owner.cleanups.push(fn);
233
233
  return fn;
234
234
  }
235
+ function runWithOwner(o, fn) {
236
+ const prev = Owner;
237
+ const prevListener = Listener;
238
+ Owner = o;
239
+ Listener = null;
240
+ try {
241
+ return runUpdates(fn, true);
242
+ } catch (err) {
243
+ handleError(err);
244
+ } finally {
245
+ Owner = prev;
246
+ Listener = prevListener;
247
+ }
248
+ }
235
249
  const [transPending, setTransPending] = /* @__PURE__ */ createSignal(false);
236
250
  function createContext(defaultValue, options) {
237
251
  const id = Symbol("context");
@@ -247,12 +261,12 @@ function useContext(context) {
247
261
  }
248
262
  function children(fn) {
249
263
  const children2 = createMemo(fn);
250
- const memo = createMemo(() => resolveChildren(children2()));
251
- memo.toArray = () => {
252
- const c = memo();
264
+ const memo2 = createMemo(() => resolveChildren(children2()));
265
+ memo2.toArray = () => {
266
+ const c = memo2();
253
267
  return Array.isArray(c) ? c : c != null ? [c] : [];
254
268
  };
255
- return memo;
269
+ return memo2;
256
270
  }
257
271
  let SuspenseContext;
258
272
  function readSignal() {
@@ -315,11 +329,7 @@ function updateComputation(node) {
315
329
  if (!node.fn) return;
316
330
  cleanNode(node);
317
331
  const time = ExecCount;
318
- runComputation(
319
- node,
320
- node.value,
321
- time
322
- );
332
+ runComputation(node, node.value, time);
323
333
  }
324
334
  function runComputation(node, value, time) {
325
335
  let nextValue;
@@ -450,8 +460,7 @@ function lookUpstream(node, ignore) {
450
460
  if (source.sources) {
451
461
  const state = source.state;
452
462
  if (state === STALE) {
453
- if (source !== ignore && (!source.updatedAt || source.updatedAt < ExecCount))
454
- runTop(source);
463
+ if (source !== ignore && (!source.updatedAt || source.updatedAt < ExecCount)) runTop(source);
455
464
  } else if (state === PENDING) lookUpstream(source, ignore);
456
465
  }
457
466
  }
@@ -521,16 +530,13 @@ function resolveChildren(children2) {
521
530
  function createProvider(id, options) {
522
531
  return function provider(props) {
523
532
  let res;
524
- createRenderEffect(
525
- () => res = untrack(() => {
526
- Owner.context = {
527
- ...Owner.context,
528
- [id]: props.value
529
- };
530
- return children(() => props.children);
531
- }),
532
- void 0
533
- );
533
+ createRenderEffect(() => res = untrack(() => {
534
+ Owner.context = {
535
+ ...Owner.context,
536
+ [id]: props.value
537
+ };
538
+ return children(() => props.children);
539
+ }), void 0);
534
540
  return res;
535
541
  };
536
542
  }
@@ -674,29 +680,25 @@ function mergeProps(...sources) {
674
680
  sources[i] = typeof s === "function" ? (proxy = true, createMemo(s)) : s;
675
681
  }
676
682
  if (SUPPORTS_PROXY && proxy) {
677
- return new Proxy(
678
- {
679
- get(property) {
680
- for (let i = sources.length - 1; i >= 0; i--) {
681
- const v = resolveSource(sources[i])[property];
682
- if (v !== void 0) return v;
683
- }
684
- },
685
- has(property) {
686
- for (let i = sources.length - 1; i >= 0; i--) {
687
- if (property in resolveSource(sources[i])) return true;
688
- }
689
- return false;
690
- },
691
- keys() {
692
- const keys = [];
693
- for (let i = 0; i < sources.length; i++)
694
- keys.push(...Object.keys(resolveSource(sources[i])));
695
- return [...new Set(keys)];
683
+ return new Proxy({
684
+ get(property) {
685
+ for (let i = sources.length - 1; i >= 0; i--) {
686
+ const v = resolveSource(sources[i])[property];
687
+ if (v !== void 0) return v;
696
688
  }
697
689
  },
698
- propTraps
699
- );
690
+ has(property) {
691
+ for (let i = sources.length - 1; i >= 0; i--) {
692
+ if (property in resolveSource(sources[i])) return true;
693
+ }
694
+ return false;
695
+ },
696
+ keys() {
697
+ const keys = [];
698
+ for (let i = 0; i < sources.length; i++) keys.push(...Object.keys(resolveSource(sources[i])));
699
+ return [...new Set(keys)];
700
+ }
701
+ }, propTraps);
700
702
  }
701
703
  const sourcesMap = {};
702
704
  const defined = /* @__PURE__ */ Object.create(null);
@@ -736,37 +738,29 @@ function splitProps(props, ...keys) {
736
738
  if (SUPPORTS_PROXY && $PROXY in props) {
737
739
  const blocked = new Set(keys.length > 1 ? keys.flat() : keys[0]);
738
740
  const res = keys.map((k) => {
739
- return new Proxy(
740
- {
741
- get(property) {
742
- return k.includes(property) ? props[property] : void 0;
743
- },
744
- has(property) {
745
- return k.includes(property) && property in props;
746
- },
747
- keys() {
748
- return k.filter((property) => property in props);
749
- }
741
+ return new Proxy({
742
+ get(property) {
743
+ return k.includes(property) ? props[property] : void 0;
750
744
  },
751
- propTraps
752
- );
753
- });
754
- res.push(
755
- new Proxy(
756
- {
757
- get(property) {
758
- return blocked.has(property) ? void 0 : props[property];
759
- },
760
- has(property) {
761
- return blocked.has(property) ? false : property in props;
762
- },
763
- keys() {
764
- return Object.keys(props).filter((k) => !blocked.has(k));
765
- }
745
+ has(property) {
746
+ return k.includes(property) && property in props;
766
747
  },
767
- propTraps
768
- )
769
- );
748
+ keys() {
749
+ return k.filter((property) => property in props);
750
+ }
751
+ }, propTraps);
752
+ });
753
+ res.push(new Proxy({
754
+ get(property) {
755
+ return blocked.has(property) ? void 0 : props[property];
756
+ },
757
+ has(property) {
758
+ return blocked.has(property) ? false : property in props;
759
+ },
760
+ keys() {
761
+ return Object.keys(props).filter((k) => !blocked.has(k));
762
+ }
763
+ }, propTraps));
770
764
  return res;
771
765
  }
772
766
  const otherObject = {};
@@ -810,17 +804,15 @@ function lazy(fn) {
810
804
  comp = s;
811
805
  }
812
806
  let Comp;
813
- return createMemo(
814
- () => (Comp = comp()) ? untrack(() => {
815
- if (IS_DEV) ;
816
- if (!ctx || sharedConfig.done) return Comp(props);
817
- const c = sharedConfig.context;
818
- setHydrateContext(ctx);
819
- const r = Comp(props);
820
- setHydrateContext(c);
821
- return r;
822
- }) : ""
823
- );
807
+ return createMemo(() => (Comp = comp()) ? untrack(() => {
808
+ if (IS_DEV) ;
809
+ if (!ctx || sharedConfig.done) return Comp(props);
810
+ const c = sharedConfig.context;
811
+ setHydrateContext(ctx);
812
+ const r = Comp(props);
813
+ setHydrateContext(c);
814
+ return r;
815
+ }) : "");
824
816
  };
825
817
  wrap.preload = () => p || ((p = fn()).then((mod) => comp = () => mod.default), p);
826
818
  return wrap;
@@ -843,26 +835,18 @@ function Show(props) {
843
835
  const condition = keyed ? conditionValue : createMemo(conditionValue, void 0, {
844
836
  equals: (a, b) => !a === !b
845
837
  });
846
- return createMemo(
847
- () => {
848
- const c = condition();
849
- if (c) {
850
- const child = props.children;
851
- const fn = typeof child === "function" && child.length > 0;
852
- return fn ? untrack(
853
- () => child(
854
- keyed ? c : () => {
855
- if (!untrack(condition)) throw narrowedError("Show");
856
- return conditionValue();
857
- }
858
- )
859
- ) : child;
860
- }
861
- return props.fallback;
862
- },
863
- void 0,
864
- void 0
865
- );
838
+ return createMemo(() => {
839
+ const c = condition();
840
+ if (c) {
841
+ const child = props.children;
842
+ const fn = typeof child === "function" && child.length > 0;
843
+ return fn ? untrack(() => child(keyed ? c : () => {
844
+ if (!untrack(condition)) throw narrowedError("Show");
845
+ return conditionValue();
846
+ })) : child;
847
+ }
848
+ return props.fallback;
849
+ }, void 0, void 0);
866
850
  }
867
851
  function Switch(props) {
868
852
  const chs = children(() => props.children);
@@ -874,11 +858,7 @@ function Switch(props) {
874
858
  const index = i;
875
859
  const mp = mps[i];
876
860
  const prevFunc = func;
877
- const conditionValue = createMemo(
878
- () => prevFunc() ? void 0 : mp.when,
879
- void 0,
880
- void 0
881
- );
861
+ const conditionValue = createMemo(() => prevFunc() ? void 0 : mp.when, void 0, void 0);
882
862
  const condition = mp.keyed ? conditionValue : createMemo(conditionValue, void 0, {
883
863
  equals: (a, b) => !a === !b
884
864
  });
@@ -886,25 +866,17 @@ function Switch(props) {
886
866
  }
887
867
  return func;
888
868
  });
889
- return createMemo(
890
- () => {
891
- const sel = switchFunc()();
892
- if (!sel) return props.fallback;
893
- const [index, conditionValue, mp] = sel;
894
- const child = mp.children;
895
- const fn = typeof child === "function" && child.length > 0;
896
- return fn ? untrack(
897
- () => child(
898
- mp.keyed ? conditionValue() : () => {
899
- if (untrack(switchFunc)()?.[0] !== index) throw narrowedError("Match");
900
- return conditionValue();
901
- }
902
- )
903
- ) : child;
904
- },
905
- void 0,
906
- void 0
907
- );
869
+ return createMemo(() => {
870
+ const sel = switchFunc()();
871
+ if (!sel) return props.fallback;
872
+ const [index, conditionValue, mp] = sel;
873
+ const child = mp.children;
874
+ const fn = typeof child === "function" && child.length > 0;
875
+ return fn ? untrack(() => child(mp.keyed ? conditionValue() : () => {
876
+ if (untrack(switchFunc)()?.[0] !== index) throw narrowedError("Match");
877
+ return conditionValue();
878
+ })) : child;
879
+ }, void 0, void 0);
908
880
  }
909
881
  function Match(props) {
910
882
  return props;
@@ -912,6 +884,7 @@ function Match(props) {
912
884
  const booleans = [
913
885
  "allowfullscreen",
914
886
  "async",
887
+ "alpha",
915
888
  "autofocus",
916
889
  "autoplay",
917
890
  "checked",
@@ -934,30 +907,59 @@ const booleans = [
934
907
  "required",
935
908
  "reversed",
936
909
  "seamless",
937
- "selected"
910
+ "selected",
911
+ "adauctionheaders",
912
+ "browsingtopics",
913
+ "credentialless",
914
+ "defaultchecked",
915
+ "defaultmuted",
916
+ "defaultselected",
917
+ "defer",
918
+ "disablepictureinpicture",
919
+ "disableremoteplayback",
920
+ "preservespitch",
921
+ "shadowrootclonable",
922
+ "shadowrootcustomelementregistry",
923
+ "shadowrootdelegatesfocus",
924
+ "shadowrootserializable",
925
+ "sharedstoragewritable"
938
926
  ];
939
927
  const Properties = /* @__PURE__ */ new Set([
940
928
  "className",
941
929
  "value",
942
930
  "readOnly",
931
+ "noValidate",
943
932
  "formNoValidate",
944
933
  "isMap",
945
934
  "noModule",
946
935
  "playsInline",
936
+ "adAuctionHeaders",
937
+ "allowFullscreen",
938
+ "browsingTopics",
939
+ "defaultChecked",
940
+ "defaultMuted",
941
+ "defaultSelected",
942
+ "disablePictureInPicture",
943
+ "disableRemotePlayback",
944
+ "preservesPitch",
945
+ "shadowRootClonable",
946
+ "shadowRootCustomElementRegistry",
947
+ "shadowRootDelegatesFocus",
948
+ "shadowRootSerializable",
949
+ "sharedStorageWritable",
947
950
  ...booleans
948
951
  ]);
949
- const ChildProperties = /* @__PURE__ */ new Set([
950
- "innerHTML",
951
- "textContent",
952
- "innerText",
953
- "children"
954
- ]);
952
+ const ChildProperties = /* @__PURE__ */ new Set(["innerHTML", "textContent", "innerText", "children"]);
955
953
  const Aliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
956
954
  className: "class",
957
955
  htmlFor: "for"
958
956
  });
959
957
  const PropAliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
960
958
  class: "className",
959
+ novalidate: {
960
+ $: "noValidate",
961
+ FORM: 1
962
+ },
961
963
  formnovalidate: {
962
964
  $: "formNoValidate",
963
965
  BUTTON: 1,
@@ -979,36 +981,69 @@ const PropAliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(
979
981
  $: "readOnly",
980
982
  INPUT: 1,
981
983
  TEXTAREA: 1
984
+ },
985
+ adauctionheaders: {
986
+ $: "adAuctionHeaders",
987
+ IFRAME: 1
988
+ },
989
+ allowfullscreen: {
990
+ $: "allowFullscreen",
991
+ IFRAME: 1
992
+ },
993
+ browsingtopics: {
994
+ $: "browsingTopics",
995
+ IMG: 1
996
+ },
997
+ defaultchecked: {
998
+ $: "defaultChecked",
999
+ INPUT: 1
1000
+ },
1001
+ defaultmuted: {
1002
+ $: "defaultMuted",
1003
+ AUDIO: 1,
1004
+ VIDEO: 1
1005
+ },
1006
+ defaultselected: {
1007
+ $: "defaultSelected",
1008
+ OPTION: 1
1009
+ },
1010
+ disablepictureinpicture: {
1011
+ $: "disablePictureInPicture",
1012
+ VIDEO: 1
1013
+ },
1014
+ disableremoteplayback: {
1015
+ $: "disableRemotePlayback",
1016
+ AUDIO: 1,
1017
+ VIDEO: 1
1018
+ },
1019
+ preservespitch: {
1020
+ $: "preservesPitch",
1021
+ AUDIO: 1,
1022
+ VIDEO: 1
1023
+ },
1024
+ shadowrootclonable: {
1025
+ $: "shadowRootClonable",
1026
+ TEMPLATE: 1
1027
+ },
1028
+ shadowrootdelegatesfocus: {
1029
+ $: "shadowRootDelegatesFocus",
1030
+ TEMPLATE: 1
1031
+ },
1032
+ shadowrootserializable: {
1033
+ $: "shadowRootSerializable",
1034
+ TEMPLATE: 1
1035
+ },
1036
+ sharedstoragewritable: {
1037
+ $: "sharedStorageWritable",
1038
+ IFRAME: 1,
1039
+ IMG: 1
982
1040
  }
983
1041
  });
984
1042
  function getPropAlias(prop, tagName) {
985
1043
  const a = PropAliases[prop];
986
1044
  return typeof a === "object" ? a[tagName] ? a["$"] : void 0 : a;
987
1045
  }
988
- const DelegatedEvents = /* @__PURE__ */ new Set([
989
- "beforeinput",
990
- "click",
991
- "dblclick",
992
- "contextmenu",
993
- "focusin",
994
- "focusout",
995
- "input",
996
- "keydown",
997
- "keyup",
998
- "mousedown",
999
- "mousemove",
1000
- "mouseout",
1001
- "mouseover",
1002
- "mouseup",
1003
- "pointerdown",
1004
- "pointermove",
1005
- "pointerout",
1006
- "pointerover",
1007
- "pointerup",
1008
- "touchend",
1009
- "touchmove",
1010
- "touchstart"
1011
- ]);
1046
+ const 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"]);
1012
1047
  const SVGElements = /* @__PURE__ */ new Set([
1013
1048
  "altGlyph",
1014
1049
  "altGlyphDef",
@@ -1092,6 +1127,7 @@ const SVGNamespace = {
1092
1127
  xlink: "http://www.w3.org/1999/xlink",
1093
1128
  xml: "http://www.w3.org/XML/1998/namespace"
1094
1129
  };
1130
+ const memo = (fn) => createMemo(() => fn());
1095
1131
  function reconcileArrays(parentNode, a, b) {
1096
1132
  let bLength = b.length, aEnd = a.length, bEnd = bLength, aStart = 0, bStart = 0, after = a[aEnd - 1].nextSibling, map = null;
1097
1133
  while (aStart < aEnd || bStart < bEnd) {
@@ -1244,9 +1280,7 @@ function style(node, value, prev) {
1244
1280
  function spread(node, props = {}, isSVG, skipChildren) {
1245
1281
  const prevProps = {};
1246
1282
  if (!skipChildren) {
1247
- createRenderEffect(
1248
- () => prevProps.children = insertExpression(node, props.children, prevProps.children)
1249
- );
1283
+ createRenderEffect(() => prevProps.children = insertExpression(node, props.children, prevProps.children));
1250
1284
  }
1251
1285
  createRenderEffect(() => typeof props.ref === "function" && use(props.ref, node));
1252
1286
  createRenderEffect(() => assign(node, props, isSVG, true, prevProps, true));
@@ -1293,8 +1327,7 @@ function toPropertyName(name) {
1293
1327
  }
1294
1328
  function toggleClassKey(node, key, value) {
1295
1329
  const classNames = key.trim().split(/\s+/);
1296
- for (let i = 0, nameLen = classNames.length; i < nameLen; i++)
1297
- node.classList.toggle(classNames[i], value);
1330
+ for (let i = 0, nameLen = classNames.length; i < nameLen; i++) node.classList.toggle(classNames[i], value);
1298
1331
  }
1299
1332
  function assignProp(node, prop, value, prev, isSVG, skipRef, props) {
1300
1333
  let isCE, isProp, isChildProp, propAlias, forceProp;
@@ -1486,11 +1519,7 @@ function normalizeIncomingArray(normalized, array, current, unwrap) {
1486
1519
  } else if (t === "function") {
1487
1520
  if (unwrap) {
1488
1521
  while (typeof item === "function") item = item();
1489
- dynamic = normalizeIncomingArray(
1490
- normalized,
1491
- Array.isArray(item) ? item : [item],
1492
- Array.isArray(prev) ? prev : [prev]
1493
- ) || dynamic;
1522
+ dynamic = normalizeIncomingArray(normalized, Array.isArray(item) ? item : [item], Array.isArray(prev) ? prev : [prev]) || dynamic;
1494
1523
  } else {
1495
1524
  normalized.push(item);
1496
1525
  dynamic = true;
@@ -1515,8 +1544,7 @@ function cleanChildren(parent, current, marker, replacement) {
1515
1544
  const el = current[i];
1516
1545
  if (node !== el) {
1517
1546
  const isParent = el.parentNode === parent;
1518
- if (!inserted && !i)
1519
- isParent ? parent.replaceChild(node, el) : parent.insertBefore(node, marker);
1547
+ if (!inserted && !i) isParent ? parent.replaceChild(node, el) : parent.insertBefore(node, marker);
1520
1548
  else isParent && el.remove();
1521
1549
  } else inserted = true;
1522
1550
  }
@@ -1527,8 +1555,10 @@ function getHydrationKey() {
1527
1555
  return sharedConfig.getNextContextId();
1528
1556
  }
1529
1557
  const SVG_NAMESPACE = "http://www.w3.org/2000/svg";
1530
- function createElement(tagName, isSVG = false) {
1531
- return isSVG ? document.createElementNS(SVG_NAMESPACE, tagName) : document.createElement(tagName);
1558
+ function createElement(tagName, isSVG = false, is = void 0) {
1559
+ return isSVG ? document.createElementNS(SVG_NAMESPACE, tagName) : document.createElement(tagName, {
1560
+ is
1561
+ });
1532
1562
  }
1533
1563
  function createDynamic(component, props) {
1534
1564
  const cached = createMemo(component);
@@ -1539,7 +1569,7 @@ function createDynamic(component, props) {
1539
1569
  return untrack(() => component2(props));
1540
1570
  case "string":
1541
1571
  const isSvg = SVGElements.has(component2);
1542
- const el = sharedConfig.context ? getNextElement() : createElement(component2, isSvg);
1572
+ const el = sharedConfig.context ? getNextElement() : createElement(component2, isSvg, untrack(() => props.is));
1543
1573
  spread(el, props, isSvg);
1544
1574
  return el;
1545
1575
  }
@@ -1604,7 +1634,7 @@ class TanStackRouterDevtoolsCore {
1604
1634
  if (this.#Component) {
1605
1635
  Devtools = this.#Component;
1606
1636
  } else {
1607
- Devtools = lazy(() => import("./FloatingTanStackRouterDevtools-kcMbkHXI.js"));
1637
+ Devtools = lazy(() => import("./FloatingTanStackRouterDevtools-DLsVEFsK.js"));
1608
1638
  this.#Component = Devtools;
1609
1639
  }
1610
1640
  return createComponent(ShadowDomTargetContext.Provider, {
@@ -1696,7 +1726,7 @@ class TanStackRouterDevtoolsPanelCore {
1696
1726
  if (this.#Component) {
1697
1727
  BaseTanStackRouterDevtoolsPanel = this.#Component;
1698
1728
  } else {
1699
- BaseTanStackRouterDevtoolsPanel = lazy(() => import("./BaseTanStackRouterDevtoolsPanel-KIEU40vQ.js").then((n) => n.c));
1729
+ BaseTanStackRouterDevtoolsPanel = lazy(() => import("./BaseTanStackRouterDevtoolsPanel-DYX5cXun.js").then((n) => n.c));
1700
1730
  this.#Component = BaseTanStackRouterDevtoolsPanel;
1701
1731
  }
1702
1732
  return createComponent(ShadowDomTargetContext.Provider, {
@@ -1778,16 +1808,17 @@ export {
1778
1808
  insert as i,
1779
1809
  Dynamic as j,
1780
1810
  delegateEvents as k,
1781
- useDevtoolsOnClose as l,
1811
+ memo as l,
1782
1812
  mergeProps as m,
1783
- addEventListener as n,
1784
- untrack as o,
1785
- Switch as p,
1786
- onCleanup as q,
1787
- Show as r,
1813
+ useDevtoolsOnClose as n,
1814
+ addEventListener as o,
1815
+ untrack as p,
1816
+ Switch as q,
1817
+ onCleanup as r,
1788
1818
  setAttribute as s,
1789
1819
  template as t,
1790
1820
  useContext as u,
1791
- TanStackRouterDevtoolsPanelCore as v
1821
+ Show as v,
1822
+ TanStackRouterDevtoolsPanelCore as w
1792
1823
  };
1793
- //# sourceMappingURL=index-DX7UIGS3.js.map
1824
+ //# sourceMappingURL=index-znsFa8JN.js.map