@tanstack/query-devtools 5.0.5 → 5.4.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/Devtools/{Y2E2LEWB.jsx → 7FRXYIEA.jsx} +1285 -228
- package/build/Devtools/{B2H37NSB.js → HESZYUBG.js} +1578 -468
- package/build/Devtools/{7SMWYMBY.jsx → KWB27UDF.jsx} +1285 -228
- package/build/Devtools/{3Y5CBXUA.js → MVUALMJ4.js} +1578 -468
- package/build/chunk/{AHAJNSNO.jsx → JRAMSUCV.jsx} +5 -0
- package/build/dev.cjs +1590 -473
- package/build/dev.js +1 -1
- package/build/dev.jsx +2 -2
- package/build/index.cjs +1590 -473
- package/build/index.js +1 -1
- package/build/index.jsx +2 -2
- package/package.json +1 -1
- package/src/Devtools.tsx +819 -131
- package/src/Explorer.tsx +5 -5
- package/src/icons/index.tsx +89 -0
- package/src/theme.ts +82 -82
- package/src/utils.tsx +46 -1
|
@@ -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
|