Files
hyperframes/registry/components/perspective-marquee/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

68 lines
2.1 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "perspective-marquee",
"type": "hyperframes:component",
"title": "Perspective Marquee",
"description": "A 3D tilted marquee with depth feel as items roll toward the horizon.",
"tags": ["motion-primitive", "remocn-port", "typography"],
"files": [
{
"path": "perspective-marquee.html",
"target": "compositions/components/perspective-marquee.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "tilt",
"type": "enum",
"role": "style",
"label": "Tilt",
"description": "How far the marquee plane leans back toward the horizon.",
"default": "standard",
"options": [
{ "value": "flat", "label": "Flat" },
{ "value": "standard", "label": "Standard" },
{ "value": "steep", "label": "Steep" }
]
},
{
"id": "travel",
"type": "enum",
"role": "motion",
"label": "Travel",
"description": "Scales the offset the timeline drives, so the strip covers a shorter or longer run in the same time.",
"default": "standard",
"options": [
{ "value": "short", "label": "Short" },
{ "value": "standard", "label": "Standard" },
{ "value": "long", "label": "Long" }
]
},
{
"id": "tone",
"type": "enum",
"role": "style",
"label": "Tone",
"description": "Pill colour: ink for light frames, paper for dark ones, accent rides the brand token.",
"default": "ink",
"options": [
{ "value": "ink", "label": "Ink" },
{ "value": "paper", "label": "Paper" },
{ "value": "accent", "label": "Accent" }
]
},
{
"id": "words",
"type": "string",
"role": "content",
"label": "Words",
"description": "Comma separated pill labels. The list is laid down twice so the strip still reads as a continuous loop.",
"default": "COMPONENTS, PRIMITIVES, TRANSITIONS, AGENTS"
}
],
"preview": {
"poster": "https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/perspective-marquee.png"
}
}