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,84 +0,0 @@
{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "matrix-decode",
"type": "hyperframes:component",
"title": "Matrix Decode",
"description": "Random scramble resolves left-to-right into the target text.",
"tags": ["motion-primitive", "remocn-port", "typography"],
"files": [
{
"path": "matrix-decode.html",
"target": "compositions/components/matrix-decode.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "text",
"type": "string",
"role": "content",
"label": "Target text",
"description": "Word the scramble resolves into. One scrambling cell per character, up to 32.",
"default": "HYPERFRAMES"
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Colour family of the cells and their glow.",
"default": "green",
"options": [
{
"value": "green",
"label": "Green"
},
{
"value": "blue",
"label": "Blue"
},
{
"value": "violet",
"label": "Violet"
}
]
},
{
"id": "size",
"type": "number",
"role": "style",
"label": "Size",
"description": "Type size of the cells in pixels. Cell width follows it.",
"default": 64,
"min": 24,
"max": 160,
"step": 4,
"unit": "px"
},
{
"id": "glow",
"type": "enum",
"role": "style",
"label": "Glow",
"description": "Strength of the halo behind the cells, from none to a heavy bloom.",
"default": "standard",
"options": [
{
"value": "none",
"label": "None"
},
{
"value": "standard",
"label": "Standard"
},
{
"value": "strong",
"label": "Strong"
}
]
}
],
"preview": {
"poster": "https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/matrix-decode.png"
}
}