@jsenv/navi 0.29.24 → 0.29.26

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,7 +8,7 @@ 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).
11
+ How to declare routes, render them, and turn them into tabs — including `RouteTravel`, which lets a thumb drag from one URL to the next without ever mounting a route that does not match — is in [docs/navigation.md](./docs/navigation.md).
12
12
 
13
13
  ## Actions
14
14
 
@@ -47,6 +47,8 @@ A capable `Table` component that handles what you'd expect from a spreadsheet-li
47
47
 
48
48
  Dialogs, badges, details/collapsible, separators, keyboard shortcuts, popovers, copy-to-clipboard, and other utilities.
49
49
 
50
+ A `Dialog`/`Popover` owns whether it is open; what varies is the trigger — a button, a gesture, a piece of application state. Which one to use, and what each costs, is in [docs/popup_open.md](./docs/popup_open.md).
51
+
50
52
  ---
51
53
 
52
54
  Named after Navi, the fairy guide from Zelda — it helps you navigate through the complexities of building modern web applications.