@flyingrobots/bijou-tui 0.2.0 → 0.3.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 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,20 +4,11 @@ TEA runtime for terminal UIs — model/update/view with physics-based animation,
4
4
 
5
5
  Inspired by [Bubble Tea](https://github.com/charmbracelet/bubbletea) (Go) and [GSAP](https://gsap.com/) animation.
6
6
 
7
- ## What's New in 0.2.0?
8
-
9
- - **Industrial-Grade Renderer** Flicker-free, scroll-safe rendering loop with `WRAP_DISABLE` and `CLEAR_LINE_TO_END` support.
10
- - **Spring animation engine** — physics-based springs with 6 presets, plus multi-frame emission for 60fps+ fluidity.
11
- - **`animate()`** — GSAP-style animation commands for TEA, with `onComplete` signals and `immediate: true` for reduced-motion.
12
- - **`viewport()`** — scrollable content pane with proportional scrollbar and ANSI-aware clipping.
13
- - **`flex()`** — flexbox layout with grow/basis/min/max, true horizontal centering, and auto-reflow.
14
- - **`ResizeMsg`** — terminal resize events auto-dispatched by the runtime.
15
- - **`EventBus`** — centralized typed event emitter unifying keyboard, resize, and multi-message commands.
16
- - **Keybinding manager** — `createKeyMap()` for declarative key binding with modifiers, named groups, runtime enable/disable.
17
- - **Help generator** — `helpView()`, `helpShort()`, `helpFor()` auto-generated from registered keybindings.
18
- - **Input stack** — `createInputStack()` for layered input dispatch with opaque (modal) and passthrough layers.
19
-
20
- See the [CHANGELOG](https://github.com/flyingrobots/bijou/blob/main/CHANGELOG.md) for the full release history.
7
+ ## What's New in 0.3.0?
8
+
9
+ - Lock-step version bump with `@flyingrobots/bijou` v0.3.0 (DAG renderer)
10
+
11
+ See the [CHANGELOG](https://github.com/flyingrobots/bijou/blob/main/docs/CHANGELOG.md) for the full release history.
21
12
 
22
13
  ## Install
23
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyingrobots/bijou-tui",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "TEA runtime for terminal UIs — model/update/view with keyboard input, alt screen, and layout helpers.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -24,7 +24,7 @@
24
24
  "lint": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@flyingrobots/bijou": "0.2.0"
27
+ "@flyingrobots/bijou": "0.3.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^22.0.0",