Files
hyperframes/registry/components/outline-draw/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

59 lines
1.6 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "outline-draw",
"type": "hyperframes:component",
"title": "Outline Draw",
"description": "A rounded outline that proves a callout by drawing clockwise as a hollow conic-gradient border with a clean closure.",
"tags": ["motion-primitive", "effects", "outline", "border", "mask", "proof"],
"jobs": ["prove"],
"family": "effects",
"profile": "burst",
"evidence": "OutlineDraw entry, Border that draws with a composite donut, from the CSS mask research notes",
"syncPoints": [{ "id": "draw-complete", "phase": "in", "offset": 0.8 }],
"files": [
{
"path": "outline-draw.html",
"target": "compositions/components/outline-draw.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "progress",
"type": "number",
"role": "timing",
"label": "Draw progress",
"description": "Final percentage of the outline that is drawn.",
"default": 100,
"min": 0,
"max": 100,
"step": 1,
"unit": "%"
},
{
"id": "thickness",
"type": "number",
"role": "layout",
"label": "Stroke thickness",
"description": "Outline stroke in tenths of the host width.",
"default": 6,
"min": 1,
"max": 20,
"step": 1,
"unit": "0.1cqw"
},
{
"id": "radius",
"type": "number",
"role": "layout",
"label": "Corner radius",
"description": "Corner radius in tenths of the host smaller dimension.",
"default": 24,
"min": 0,
"max": 80,
"step": 1,
"unit": "0.1cqmin"
}
]
}