mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 00:56:23 +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.
87 lines
2.1 KiB
JSON
87 lines
2.1 KiB
JSON
{
|
|
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
|
"name": "focus-blur-resolve",
|
|
"type": "hyperframes:component",
|
|
"title": "Focus Blur Resolve",
|
|
"description": "A premium focus pull from heavy blur to crisp text, then a soft blur-out exit.",
|
|
"tags": ["motion-primitive", "remocn-port", "typography"],
|
|
"files": [
|
|
{
|
|
"path": "focus-blur-resolve.html",
|
|
"target": "compositions/components/focus-blur-resolve.html",
|
|
"type": "hyperframes:snippet"
|
|
}
|
|
],
|
|
"variables": [
|
|
{
|
|
"id": "tone",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Tone",
|
|
"description": "Word colour: ink for light frames, paper for dark ones, accent rides --brand.",
|
|
"default": "ink",
|
|
"options": [
|
|
{
|
|
"value": "ink",
|
|
"label": "Ink"
|
|
},
|
|
{
|
|
"value": "paper",
|
|
"label": "Paper"
|
|
},
|
|
{
|
|
"value": "accent",
|
|
"label": "Accent"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "size",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Size",
|
|
"description": "Type size of the words, from a caption-scale line to a full display card.",
|
|
"default": "standard",
|
|
"options": [
|
|
{
|
|
"value": "compact",
|
|
"label": "Compact"
|
|
},
|
|
{
|
|
"value": "standard",
|
|
"label": "Standard"
|
|
},
|
|
{
|
|
"value": "display",
|
|
"label": "Display"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": "blur",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Blur",
|
|
"description": "Scales the blur radius the timeline drives, so the focus pull starts as a light haze or a full smear.",
|
|
"default": "standard",
|
|
"options": [
|
|
{
|
|
"value": "soft",
|
|
"label": "Soft"
|
|
},
|
|
{
|
|
"value": "standard",
|
|
"label": "Standard"
|
|
},
|
|
{
|
|
"value": "heavy",
|
|
"label": "Heavy"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"preview": {
|
|
"poster": "https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/focus-blur-resolve.png"
|
|
}
|
|
}
|