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

44 lines
1.3 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "logo-sting",
"type": "hyperframes:component",
"title": "Logo Sting",
"description": "A wordmark slams into its final scale, fires one accent ring and one white impact frame, then holds completely still.",
"tags": ["motion-primitive", "brand", "logo", "sting", "impact", "reveal"],
"jobs": ["reveal"],
"family": "brand",
"profile": "burst",
"evidence": "Video Primitives Wave F U15 logo-sting contract",
"syncPoints": [{ "id": "impact", "phase": "in", "offset": 0.55 }],
"files": [
{
"path": "logo-sting.html",
"target": "compositions/components/logo-sting.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "wordmark",
"type": "string",
"role": "content",
"label": "Wordmark",
"description": "Brand name displayed in the final lockup.",
"default": "HYPERFRAMES"
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Color of the single impact ring.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
}
]
}