Files
hyperframes/registry/components/beat-timeline/registry-item.json
T
Miguel Ángel 9734578e60 feat(registry): bring back the video-primitive moves (#3169)
Restores the 208 catalog items reverted after their previews 404'd in
production, this time on the payload mechanism rather than the .html files
that caused the outage.

The generator no longer writes a preview document to docs/public. That writer,
and the machinery under it, existed only to produce files the docs host
discards, so it is gone rather than bypassed. Items now embed the composition
itself via a payload, which is what the previous change already does for the
items that were already in the catalog.

The variables explorer is parked, not restored: it drove its preview through
the same unpublished .html path, so it would have shown an empty frame. Items
that declare variables get the live player plus the static variables table, and
reconnecting the explorer to payloads is a follow-up.
2026-08-10 18:46:03 -04:00

53 lines
1.6 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "beat-timeline",
"type": "hyperframes:component",
"title": "Beat Timeline",
"description": "A paused master-timeline orchestration spine that pins titled beat rows to evenly spaced named labels. Each row enters on its label, holds with the sequence, then exits with the group.",
"tags": ["orchestration", "transitions", "sequencing", "bridge", "timeline"],
"jobs": ["bridge"],
"family": "transitions",
"profile": "holdable",
"evidence": "launches-motion-vocabulary.md: Paused, seeked timeline orchestration census, 15/18 projects and 134/159 files",
"files": [
{
"path": "beat-timeline.html",
"target": "compositions/components/beat-timeline.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "beatCount",
"type": "number",
"role": "content",
"label": "Beat count",
"description": "Number of beat rows in the sequence.",
"default": 4,
"min": 2,
"max": 6,
"step": 1
},
{
"id": "interval",
"type": "number",
"role": "layout",
"label": "Interval",
"description": "Base time between consecutive beat markers.",
"default": 0.6,
"min": 0.2,
"max": 2,
"step": 0.05,
"unit": "s"
},
{
"id": "labels",
"type": "string",
"role": "content",
"label": "Labels",
"description": "Comma-separated beat titles, one per beat. Extra entries are ignored and missing entries fall back to Beat N.",
"default": "One,Two,Three,Four"
}
]
}