Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"@posthog/rollup-plugin": "^1.4.7",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-router": "^1.170.23",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.34",
"@tanstack/react-start": "^1.168.40",
"@tanstack/react-virtual": "^3.14.9",
"@tanstack/router-plugin": "^1.168.23",
"@tanstack/router-plugin": "^1.168.27",
"@tanstack/zod-adapter": "^1.167.0",
"clsx": "^2.1.1",
"fumadocs-core": "^16.11.5",
Expand Down Expand Up @@ -86,7 +86,7 @@
},
"overrides": {
"@babel/core": "^7.29.7",
"@tanstack/start-server-core": "1.169.17",
"@tanstack/start-server-core": "1.169.23",
"esbuild": "^0.28.1",
"js-yaml": "^4.3.1"
}
Expand Down
7 changes: 6 additions & 1 deletion apps/ui/src/routes/-root-views.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,12 @@ export function RootComponent() {
* Pure CSS animation — does not re-render the rest of the tree.
*/
function RouteTransitionBar() {
const isLoading = useRouterState({ select: (s) => s.isLoading || s.isTransitioning });
// RouterState carried `isTransitioning` in router-core 1.171.15 and no longer
// does in 1.171.21: the router-level transition store is gone (what survives
// is Link's own local one), and `isLoading` is now derived as
// `status === "pending"` -- the whole router-busy signal the two flags
// together used to approximate.
const isLoading = useRouterState({ select: (s) => s.isLoading });
return (
<div
aria-hidden
Expand Down
179 changes: 89 additions & 90 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading