mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
The rack's label column is a fixed 86px, so "Gap between repeats" reads as "Gap between re…" and "How many repeats" as "How many repe…" — the part that tells two knobs apart is the part that gets cut. The row already carried a `title`, but that is the param's HINT: what the knob does. Useful, and no substitute for the name. So the name is titled on the label itself and the hint stays on the row — two different questions, neither standing in for the other. Same fix for the three other truncating labels in the rack, since a truncated effect name is the same defect one line up: the node name, its one-line summary, and the carve module's own name and "Listen to" row. Titled unconditionally rather than only when the text overflows: whether it does depends on the rendered font and the panel's width, and a title that matches the visible text costs nothing. Two tests, mutation-checked — the label carries the full name, the row still carries the hint, and the label is titled even when there is no hint. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@hyperframes/studio
Browser-based composition editor UI for Hyperframes. Provides a visual timeline, code editor, and live preview for building video compositions.
Install
npm install @hyperframes/studio
What it does
The studio is a React application with:
- Visual timeline — drag, resize, and arrange elements on tracks
- Code editor — edit HTML and GSAP scripts with CodeMirror (syntax highlighting, autocomplete)
- Live preview — see changes in real time as you edit
- Composition inspector — view and modify element properties
Development
The studio is embedded in the hyperframes preview command. To develop the studio UI itself:
cd packages/studio
bun run dev # Start Vite dev server
bun run build # Build for production
bun run typecheck # Type-check
Tech stack
- React 18/19, Zustand (state management)
- CodeMirror 6 (editor)
- Tailwind CSS (styling)
- Vite (bundler)
- Phosphor Icons
Documentation
Full documentation: hyperframes.heygen.com/packages/studio
Related packages
@hyperframes/core— types and parsers used by the editorhyperframes— CLI that serves the studio viahyperframes preview