Files
hyperframes/registry/components/logo-brand-close/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

73 lines
2.3 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "logo-brand-close",
"type": "hyperframes:component",
"title": "Logo Brand Close",
"description": "A display-scale wordmark cascades letter by letter into a centered lockup, the accent brand period lands last, an optional tagline and wide-tracked mono URL settle beneath, and the finished identity holds dead still to the end of the film.",
"tags": ["motion-primitive", "typography", "brand", "logo", "end-card", "close"],
"jobs": ["celebrate"],
"family": "typography",
"profile": "holdable",
"evidence": "Wave J J1-4 logo-brand-close specification",
"syncPoints": [{ "id": "lockup-settled", "phase": "in", "offset": 2.6 }],
"files": [
{
"path": "logo-brand-close.html",
"target": "compositions/components/logo-brand-close.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "wordmark",
"type": "string",
"role": "content",
"label": "Wordmark",
"description": "Brand name whose letters cascade into the centered lockup.",
"default": "HYPERFRAMES"
},
{
"id": "tagline",
"type": "string",
"role": "content",
"label": "Tagline",
"description": "Optional tagline that settles beneath the wordmark. Empty hides it.",
"default": "Write HTML. Render video."
},
{
"id": "url",
"type": "string",
"role": "content",
"label": "URL",
"description": "Optional mono URL line beneath the tagline. Empty hides it.",
"default": "hyperframes.heygen.com"
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Contract color used by the brand period at the end of the wordmark.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
},
{
"id": "exit",
"type": "enum",
"role": "style",
"label": "Exit",
"description": "Optional departure. Films end on the still hold, so the default is none.",
"default": "none",
"options": [
{ "value": "none", "label": "None" },
{ "value": "fade", "label": "Fade" },
{ "value": "up", "label": "Up" }
]
}
]
}