chore(catalog): remove internal source markers

This commit is contained in:
Miguel Ángel
2026-08-13 21:10:12 -04:00
committed by GitHub
parent f7d2260f9d
commit 532caf7aa2
144 changed files with 1347 additions and 1425 deletions
+7 -7
View File
@@ -1,5 +1,5 @@
<!--
Shared Axis Y - remocn typography primitive for HyperFrames.
Shared Axis Y - typography primitive for HyperFrames.
Paste the markup, CSS and script into a composition. Drive the timeline
integration from a paused GSAP timeline so renders remain deterministic.
@@ -23,7 +23,7 @@
-->
<div
class="hf-remocn-shared-axis-y"
class="hf-catalog-shared-axis-y"
data-composition-variables='[
{ "id": "direction", "type": "enum", "role": "motion", "label": "Direction", "description": "Which side of the baseline the words travel in from.", "default": "up", "options": [{ "value": "up", "label": "Up" }, { "value": "down", "label": "Down" }] },
{ "id": "distance", "type": "enum", "role": "motion", "label": "Distance", "description": "Scales the vertical offset, so the words cover a shorter or longer run in the same time.", "default": "standard", "options": [{ "value": "close", "label": "Close" }, { "value": "standard", "label": "Standard" }, { "value": "far", "label": "Far" }] },
@@ -34,19 +34,19 @@
</div>
<style>
.hf-remocn-shared-axis-y {
.hf-catalog-shared-axis-y {
color: var(--hf-word-color, #18181b);
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
letter-spacing: -0.04em;
}
.hf-remocn-shared-axis-y {
.hf-catalog-shared-axis-y {
display: inline-flex;
gap: 12px;
font-size: 56px;
line-height: 1;
}
.hf-remocn-shared-axis-y span {
.hf-catalog-shared-axis-y span {
display: inline-block;
transform: translate(
var(--hf-word-x, 0px),
@@ -84,7 +84,7 @@
var reach = reaches[pick(reaches, vars.distance, "standard")];
var tone = tones[pick(tones, vars.tone, "ink")];
var roots = document.querySelectorAll(".hf-remocn-shared-axis-y");
var roots = document.querySelectorAll(".hf-catalog-shared-axis-y");
for (var i = 0; i < roots.length; i += 1) {
roots[i].style.setProperty("--hf-word-axis-y", String(sign * reach));
roots[i].style.setProperty("--hf-word-color", tone);
@@ -94,5 +94,5 @@
<!--
Timeline integration:
tl.fromTo('.hf-remocn-shared-axis-y span', { opacity: 0, '--hf-word-y': '32px' }, { opacity: 1, '--hf-word-y': '0px', duration: 0.22, stagger: 0.075, ease: 'power2.out' }, startTime);
tl.fromTo('.hf-catalog-shared-axis-y span', { opacity: 0, '--hf-word-y': '32px' }, { opacity: 1, '--hf-word-y': '0px', duration: 0.22, stagger: 0.075, ease: 'power2.out' }, startTime);
-->