Files
hyperframes/registry/components/avatar-group-hover/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

87 lines
2.1 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "avatar-group-hover",
"type": "hyperframes:component",
"title": "Avatar Group Hover",
"description": "A distance-falloff avatar group lift with bouncy hover return",
"tags": ["video-primitive", "transition-primitive", "transitions-dev-port", "avatar", "hover"],
"files": [
{
"path": "avatar-group-hover.html",
"target": "compositions/components/avatar-group-hover.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "size",
"type": "enum",
"role": "style",
"label": "Size",
"description": "Avatar diameter, with the initials scaling alongside it.",
"default": "standard",
"options": [
{
"value": "small",
"label": "Small"
},
{
"value": "standard",
"label": "Standard"
},
{
"value": "large",
"label": "Large"
}
]
},
{
"id": "overlap",
"type": "enum",
"role": "style",
"label": "Overlap",
"description": "How far each avatar tucks under the one before it, as a share of its own diameter.",
"default": "standard",
"options": [
{
"value": "tight",
"label": "Tight"
},
{
"value": "standard",
"label": "Standard"
},
{
"value": "loose",
"label": "Loose"
}
]
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Colour the avatar gradient resolves into.",
"default": "blue",
"options": [
{
"value": "blue",
"label": "Blue"
},
{
"value": "violet",
"label": "Violet"
},
{
"value": "green",
"label": "Green"
}
]
}
],
"preview": {
"poster": "https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/avatar-group-hover.png"
}
}