@tanstack/react-router 1.86.0 → 1.86.1
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/dist/cjs/router.cjs +4 -0
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/esm/router.js +4 -0
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/router.ts +4 -0
package/dist/esm/router.js
CHANGED
|
@@ -1080,6 +1080,8 @@ class Router {
|
|
|
1080
1080
|
loaderData
|
|
1081
1081
|
});
|
|
1082
1082
|
const meta = headFnContent == null ? void 0 : headFnContent.meta;
|
|
1083
|
+
const links = headFnContent == null ? void 0 : headFnContent.links;
|
|
1084
|
+
const scripts = headFnContent == null ? void 0 : headFnContent.scripts;
|
|
1083
1085
|
const headers = (_f = (_e = route.options).headers) == null ? void 0 : _f.call(_e, {
|
|
1084
1086
|
loaderData
|
|
1085
1087
|
});
|
|
@@ -1091,6 +1093,8 @@ class Router {
|
|
|
1091
1093
|
updatedAt: Date.now(),
|
|
1092
1094
|
loaderData,
|
|
1093
1095
|
meta,
|
|
1096
|
+
links,
|
|
1097
|
+
scripts,
|
|
1094
1098
|
headers
|
|
1095
1099
|
}));
|
|
1096
1100
|
} catch (e) {
|