Files
hyperframes/registry/components/ascii-trail-reveal/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

56 lines
1.7 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "ascii-trail-reveal",
"type": "hyperframes:component",
"title": "ASCII Trail Reveal",
"description": "An authored S-curve sweeps through a deterministic ASCII grid, flipping cells away to reveal a labeled panel.",
"tags": ["motion-primitive", "intro", "reveal", "ascii", "trail", "grid"],
"jobs": ["reveal"],
"family": "intros-and-reveals",
"profile": "trail",
"evidence": "Wave H U24 ascii-trail-reveal design research unit",
"syncPoints": [{ "id": "reveal-complete", "phase": "in", "offset": 3.2 }],
"files": [
{
"path": "ascii-trail-reveal.html",
"target": "compositions/components/ascii-trail-reveal.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "label",
"type": "string",
"role": "content",
"label": "Panel label",
"description": "Text shown on the revealed panel.",
"default": "The reveal"
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Color used by the trail and revealed panel.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
},
{
"id": "trail_width",
"type": "enum",
"role": "layout",
"label": "Trail width",
"description": "Width of the cell reveal tail around the authored path.",
"default": "narrow",
"options": [
{ "value": "narrow", "label": "Narrow" },
{ "value": "wide", "label": "Wide" }
]
}
]
}