Files
hyperframes/registry/components/overwhelm-surround/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

52 lines
1.4 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "overwhelm-surround",
"type": "hyperframes:component",
"title": "Overwhelm Surround",
"description": "Tasks, tabs, pings, and notification bubbles accelerate inward around a calm central subject, turning overload into visible spatial pressure.",
"tags": ["effects", "agitate", "overwhelm", "pressure", "notifications"],
"jobs": ["agitate"],
"family": "effects",
"profile": "holdable",
"evidence": "SIM fixture; CORPUS blueprint",
"files": [
{
"path": "overwhelm-surround.html",
"target": "compositions/components/overwhelm-surround.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "count",
"type": "number",
"role": "content",
"label": "Chip count",
"description": "Number of tasks and notifications crowding the center.",
"default": 16,
"min": 8,
"max": 24,
"step": 1
},
{
"id": "centerLabel",
"type": "string",
"role": "content",
"label": "Center label",
"description": "Text inside the calm central subject. Blank hides the text.",
"default": "You"
},
{
"id": "intensity",
"type": "number",
"role": "layout",
"label": "Intensity",
"description": "How tightly and quickly the chips crowd the center.",
"default": 1,
"min": 0.5,
"max": 2,
"step": 0.1
}
]
}