@jsenv/navi 0.29.20 → 0.29.22

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/README.md CHANGED
@@ -8,6 +8,8 @@ Routing is signal-based, which means URL state — including search params — c
8
8
 
9
9
  Routes are flexible: you can create route groups to share logic, state, or UI across multiple routes. Nested routing is supported, and the structure naturally maps to how your application is organized.
10
10
 
11
+ When the tabs of a page are URLs, `RouteTravel` lets a thumb drag from one to the next without ever mounting a route that does not match — see [src/nav/route_ui.md](./src/nav/route_ui.md).
12
+
11
13
  ## Actions
12
14
 
13
15
  Actions are async operations with lifecycle management — pending, success, error. You can declare actions that run when navigating to a route, and any component can subscribe to them via `useAsyncData` to reflect what is happening: loading states, results, errors. No manual wiring.