Revert "feat(registry): the video-primitive moves, documented and customisable (#3090)" (#3162)

This reverts commit 3b53bfd2f7.
This commit is contained in:
Miguel Ángel
2026-08-10 14:47:47 -04:00
committed by GitHub
parent 3b53bfd2f7
commit c86d4013f5
2328 changed files with 5906 additions and 458525 deletions
@@ -1,67 +0,0 @@
{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "svg-stroke-trace",
"type": "hyperframes:component",
"title": "SVG Stroke Trace",
"description": "An authored SVG path draws from its measured length, holds with subtle drift, and optionally fills when the path is closed.",
"tags": ["motion-primitive", "intro", "reveal", "svg", "stroke", "line-draw"],
"jobs": ["reveal"],
"family": "intros-and-reveals",
"profile": "trace",
"evidence": "Video Primitives Wave I I5 svg-stroke-trace contract",
"syncPoints": [{ "id": "trace-complete", "phase": "in", "offset": 1.55 }],
"files": [
{
"path": "svg-stroke-trace.html",
"target": "compositions/components/svg-stroke-trace.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "path",
"type": "string",
"role": "content",
"label": "Path",
"description": "SVG path data for the authored mark.",
"default": "M 92 328 C 178 142 292 138 366 276 C 430 396 500 414 558 262 C 622 94 724 112 786 274 C 836 406 894 376 930 194"
},
{
"id": "stroke_width",
"type": "number",
"role": "style",
"label": "Stroke width",
"description": "Width of the traced stroke in SVG viewBox units.",
"default": 12,
"min": 2,
"max": 32,
"step": 1
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Color used by the trace and optional fill.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
},
{
"id": "exit",
"type": "enum",
"role": "timing",
"label": "Exit",
"description": "Optional departure. Default none: the finished mark holds until the frame cuts.",
"default": "none",
"options": [
{ "value": "none", "label": "None" },
{ "value": "fade", "label": "Fade" },
{ "value": "up", "label": "Up" }
]
}
]
}