@tanstack/query-devtools 5.0.3 → 5.1.0

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.
@@ -1685,6 +1685,9 @@ function spread(node, props = {}, isSVG, skipChildren) {
1685
1685
  createRenderEffect(() => assign(node, props, isSVG, true, prevProps, true));
1686
1686
  return prevProps;
1687
1687
  }
1688
+ function use(fn, element, arg) {
1689
+ return untrack(() => fn(element, arg));
1690
+ }
1688
1691
  function insert(parent, accessor, marker, initial) {
1689
1692
  if (marker !== void 0 && !initial)
1690
1693
  initial = [];
@@ -2064,6 +2067,8 @@ export {
2064
2067
  template,
2065
2068
  delegateEvents,
2066
2069
  setAttribute,
2070
+ spread,
2071
+ use,
2067
2072
  isServer,
2068
2073
  Portal,
2069
2074
  Dynamic