mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 16:42:27 +00:00
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.
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
|
"name": "ticker-takeover",
|
|
"type": "hyperframes:component",
|
|
"title": "Ticker Takeover",
|
|
"description": "A mono ticker rolls through options, locks on a final word with an accent flash, and promotes it into a full-frame headline.",
|
|
"tags": ["motion-primitive", "typography", "ticker", "slot-machine", "headline", "reveal"],
|
|
"jobs": ["reveal"],
|
|
"family": "typography",
|
|
"profile": "kinetic",
|
|
"evidence": "Wave F U7 ticker-takeover specification",
|
|
"files": [
|
|
{
|
|
"path": "ticker-takeover.html",
|
|
"target": "compositions/components/ticker-takeover.html",
|
|
"type": "hyperframes:snippet"
|
|
}
|
|
],
|
|
"variables": [
|
|
{
|
|
"id": "options",
|
|
"type": "string",
|
|
"role": "content",
|
|
"label": "Options",
|
|
"description": "Comma-separated words shown by the ticker.",
|
|
"default": "faster,smarter,together,everywhere"
|
|
},
|
|
{
|
|
"id": "final_word",
|
|
"type": "string",
|
|
"role": "content",
|
|
"label": "Final word",
|
|
"description": "Word the ticker locks on and promotes.",
|
|
"default": "together"
|
|
},
|
|
{
|
|
"id": "accent",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Accent",
|
|
"description": "Color used for the lock flash and promoted word.",
|
|
"default": "green",
|
|
"options": [
|
|
{ "value": "green", "label": "Green" },
|
|
{ "value": "blue", "label": "Blue" },
|
|
{ "value": "violet", "label": "Violet" }
|
|
]
|
|
}
|
|
]
|
|
}
|