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,80 +0,0 @@
{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "simulated-cursor",
"type": "hyperframes:component",
"title": "Simulated Cursor",
"description": "A lightweight cursor pointer and click pulse for product walkthroughs and agent UI demos",
"tags": ["video-primitive", "motion-primitive", "cursor", "ui", "walkthrough"],
"files": [
{
"path": "simulated-cursor.html",
"target": "compositions/components/simulated-cursor.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "size",
"type": "number",
"role": "layout",
"label": "Size",
"description": "Height and width of the pointer in pixels. The click ring scales with it. Values outside the range clamp to the nearest end and anything that is not a number falls back to 44.",
"default": 44,
"min": 20,
"max": 120,
"step": 2,
"unit": "px"
},
{
"id": "tone",
"type": "enum",
"role": "style",
"label": "Tone",
"description": "Pointer fill and click ring colour: light reads on dark screens, dark reads on light ones, accent rides --hf-ui-accent.",
"default": "light",
"options": [
{
"value": "light",
"label": "Light"
},
{
"value": "dark",
"label": "Dark"
},
{
"value": "accent",
"label": "Accent"
}
]
},
{
"id": "pulse",
"type": "enum",
"role": "style",
"label": "Click ring",
"description": "Weight of the ring the click animation expands: subtle is a thin small ring, bold a thick wide one, none removes the ring entirely.",
"default": "standard",
"options": [
{
"value": "subtle",
"label": "Subtle"
},
{
"value": "standard",
"label": "Standard"
},
{
"value": "bold",
"label": "Bold"
},
{
"value": "none",
"label": "None"
}
]
}
],
"preview": {
"poster": "https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/simulated-cursor.png"
}
}