@flyingrobots/bijou-tui-app 4.1.0 → 4.4.0

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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Batteries-included TUI app skeleton built on `createFramedApp()`.
4
4
 
5
- ## Package Role in v4.0.0
5
+ ## Package Role
6
6
 
7
7
  - **Pure shell contract** — framed panes now stay on the surface/layout path. Shell panes render `Surface` or `LayoutNode`, not string views.
8
8
  - **Truthful shell role** — this package is the opinionated shell layer in the Bijou stack, not the whole runtime. Use it when you want tabs, footer/help chrome, overlays, and a ready-to-run app frame.
@@ -91,3 +91,7 @@ await run(
91
91
  - Skeleton keys: `o` drawer toggle, `q`/`ctrl+c` quit confirm, `y`/`enter` confirm quit, `n`/`escape` cancel quit
92
92
 
93
93
  For upgrading an existing shell-based app, see [`../../docs/MIGRATING_TO_V4.md`](../../docs/MIGRATING_TO_V4.md).
94
+
95
+ ## Documentation
96
+
97
+ See the [Bijou repo](https://github.com/flyingrobots/bijou) for the full documentation map, architecture guide, and design system.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyingrobots/bijou-tui-app",
3
- "version": "4.1.0",
3
+ "version": "4.4.0",
4
4
  "description": "Batteries-included TUI app skeleton built on bijou-tui createFramedApp().",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -24,8 +24,8 @@
24
24
  "lint": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@flyingrobots/bijou": "4.1.0",
28
- "@flyingrobots/bijou-tui": "4.1.0"
27
+ "@flyingrobots/bijou": "4.4.0",
28
+ "@flyingrobots/bijou-tui": "4.4.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",