Files
hyperframes/registry/components/scroll-feed/registry-item.json
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

66 lines
1.9 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "scroll-feed",
"type": "hyperframes:component",
"title": "Scroll Feed",
"description": "A loop-friendly column of varied skeleton post cards scrolls upward with subtle motion trails and an agitated pace.",
"tags": ["motion-primitive", "effects", "scroll", "feed", "loop", "agitation"],
"jobs": ["demonstrate"],
"family": "effects",
"profile": "continuous",
"evidence": "Wave F U9 scroll-feed specification",
"files": [
{
"path": "scroll-feed.html",
"target": "compositions/components/scroll-feed.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "speed",
"type": "enum",
"role": "timing",
"label": "Scroll speed",
"description": "Pace of the upward feed movement.",
"default": "doom",
"options": [
{ "value": "doom", "label": "Doom" },
{ "value": "frantic", "label": "Frantic" }
]
},
{
"id": "card_count",
"type": "number",
"role": "content",
"label": "Card count",
"description": "Number of skeleton posts in one repeated feed cycle.",
"default": 6,
"min": 4,
"max": 10,
"step": 1
},
{
"id": "cues",
"type": "string",
"role": "timing",
"label": "Cues",
"description": "Comma-separated seconds (from mount start); each cue advances the feed by one card. Empty synthesizes evenly spaced flicks, one per card.",
"default": ""
},
{
"id": "exit",
"type": "enum",
"role": "timing",
"label": "Exit",
"description": "Optional departure. Default none: the feed scrolls until the frame cuts.",
"default": "none",
"options": [
{ "value": "none", "label": "None" },
{ "value": "fade", "label": "Fade" },
{ "value": "up", "label": "Up" }
]
}
]
}