Skip to content

Commit 532caf7

Browse files
chore(catalog): remove internal source markers
1 parent f7d2260 commit 532caf7

144 files changed

Lines changed: 1347 additions & 1425 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/catalog/components/ai-generation-canvas.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ That writes one file: `compositions/components/ai-generation-canvas.html`.
2424

2525
```html
2626
<!--
27-
AI Generation Canvas - remocn component ported to HyperFrames authoring format.
27+
AI Generation Canvas - catalog component for HyperFrames.
2828
2929
Paste the markup and CSS into a composition. Drive the timeline integration
3030
from a paused GSAP timeline so renders remain deterministic.
3131
-->
3232

33-
<div class="hf-remocn-ai-generation-canvas">
33+
<div class="hf-catalog-ai-generation-canvas">
3434
<div class="panel prompt">
3535
<h3>AI Generation Canvas</h3>
3636
<p>A prompt composer expands into a generated dashboard preview.</p>
@@ -46,15 +46,15 @@ That writes one file: `compositions/components/ai-generation-canvas.html`.
4646
</div>
4747

4848
<style>
49-
.hf-remocn-ai-generation-canvas {
49+
.hf-catalog-ai-generation-canvas {
5050
--hf-accent: var(--accent, #18181b);
5151
--hf-ink: #111827;
5252
--hf-muted: #6b7280;
5353
--hf-surface: #ffffff;
5454
color: var(--hf-ink);
5555
font-family: Inter, system-ui, sans-serif;
5656
}
57-
.hf-remocn-ai-generation-canvas {
57+
.hf-catalog-ai-generation-canvas {
5858
width: 820px;
5959
min-height: 460px;
6060
border-radius: 34px;
@@ -66,19 +66,19 @@ That writes one file: `compositions/components/ai-generation-canvas.html`.
6666
gap: 22px;
6767
overflow: hidden;
6868
}
69-
.hf-remocn-ai-generation-canvas .panel {
69+
.hf-catalog-ai-generation-canvas .panel {
7070
border: 1px solid rgba(15, 23, 42, 0.08);
7171
border-radius: 24px;
7272
background: rgba(255, 255, 255, 0.76);
7373
padding: 22px;
7474
backdrop-filter: blur(12px);
7575
}
76-
.hf-remocn-ai-generation-canvas .prompt {
76+
.hf-catalog-ai-generation-canvas .prompt {
7777
display: grid;
7878
gap: 12px;
7979
align-content: start;
8080
}
81-
.hf-remocn-ai-generation-canvas .pill {
81+
.hf-catalog-ai-generation-canvas .pill {
8282
height: 42px;
8383
border-radius: 999px;
8484
background: #111827;
@@ -89,11 +89,11 @@ That writes one file: `compositions/components/ai-generation-canvas.html`.
8989
font-weight: 800;
9090
transform: translateX(var(--hf-pill-x, 0px));
9191
}
92-
.hf-remocn-ai-generation-canvas .preview {
92+
.hf-catalog-ai-generation-canvas .preview {
9393
display: grid;
9494
gap: 14px;
9595
}
96-
.hf-remocn-ai-generation-canvas .card {
96+
.hf-catalog-ai-generation-canvas .card {
9797
min-height: 78px;
9898
border-radius: 18px;
9999
background: #fff;
@@ -102,20 +102,20 @@ That writes one file: `compositions/components/ai-generation-canvas.html`.
102102
scale(var(--hf-card-scale, 1));
103103
opacity: var(--hf-card-opacity, 1);
104104
}
105-
.hf-remocn-ai-generation-canvas h3 {
105+
.hf-catalog-ai-generation-canvas h3 {
106106
margin: 0 0 14px;
107107
font-size: 32px;
108108
letter-spacing: -0.04em;
109109
}
110-
.hf-remocn-ai-generation-canvas p {
110+
.hf-catalog-ai-generation-canvas p {
111111
margin: 0;
112112
color: #475569;
113113
}
114114
</style>
115115

116116
<!--
117117
Timeline integration:
118-
tl.fromTo('.hf-remocn-ai-generation-canvas .pill', { '--hf-pill-x': '-18px', opacity: 0 }, { '--hf-pill-x': '0px', opacity: 1, duration: 0.25, stagger: 0.08, ease: 'power2.out' }, startTime); tl.fromTo('.hf-remocn-ai-generation-canvas .card', { '--hf-card-y': '28px', '--hf-card-scale': 0.96, '--hf-card-opacity': 0 }, { '--hf-card-y': '0px', '--hf-card-scale': 1, '--hf-card-opacity': 1, duration: 0.42, stagger: 0.12, ease: 'power3.out' }, startTime + 0.2);
118+
tl.fromTo('.hf-catalog-ai-generation-canvas .pill', { '--hf-pill-x': '-18px', opacity: 0 }, { '--hf-pill-x': '0px', opacity: 1, duration: 0.25, stagger: 0.08, ease: 'power2.out' }, startTime); tl.fromTo('.hf-catalog-ai-generation-canvas .card', { '--hf-card-y': '28px', '--hf-card-scale': 0.96, '--hf-card-opacity': 0 }, { '--hf-card-y': '0px', '--hf-card-scale': 1, '--hf-card-opacity': 1, duration: 0.42, stagger: 0.12, ease: 'power3.out' }, startTime + 0.2);
119119
-->
120120
```
121121

@@ -127,7 +127,7 @@ Open `compositions/components/ai-generation-canvas.html` and paste its contents
127127

128128
{/* hf:generated-footer */}
129129

130-
Tagged `showcase` `remocn-port` `ai`.
130+
Tagged `showcase` `ai`.
131131

132132
## Related topics
133133

docs/catalog/components/ai-prompt-flow.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ That writes one file: `compositions/components/ai-prompt-flow.html`.
2424

2525
```html
2626
<!--
27-
AI Prompt Flow - Remocn-inspired composed UI flow for HyperFrames.
27+
AI Prompt Flow - Composed UI flow for HyperFrames.
2828
2929
Paste the markup and CSS into a composition. Use the timeline integration
3030
note at the bottom as the starting point for deterministic GSAP animation.
@@ -136,7 +136,7 @@ Open `compositions/components/ai-prompt-flow.html` and paste its contents into y
136136

137137
{/* hf:generated-footer */}
138138

139-
Tagged `ui-flow` `remocn-port` `ai` `prompt`.
139+
Tagged `ui-flow` `ai` `prompt`.
140140

141141
## Related topics
142142

docs/catalog/components/animated-bar-chart.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ That writes one file: `compositions/components/animated-bar-chart.html`.
2424

2525
```html
2626
<!--
27-
Animated Bar Chart - remocn component ported to HyperFrames authoring format.
27+
Animated Bar Chart - catalog component for HyperFrames.
2828
2929
Paste the markup and CSS into a composition. Drive the timeline integration
3030
from a paused GSAP timeline so renders remain deterministic.
3131
-->
3232

33-
<div class="hf-remocn-animated-bar-chart">
33+
<div class="hf-catalog-animated-bar-chart">
3434
<header>
3535
<div>
3636
<h3>Animated Bar Chart</h3>
@@ -56,7 +56,7 @@ That writes one file: `compositions/components/animated-bar-chart.html`.
5656
</div>
5757

5858
<style>
59-
.hf-remocn-animated-bar-chart {
59+
.hf-catalog-animated-bar-chart {
6060
--hf-accent: var(--accent, #111827);
6161
--hf-ink: #111827;
6262
--hf-l1: rgba(17, 24, 39, 0.72);
@@ -69,7 +69,7 @@ That writes one file: `compositions/components/animated-bar-chart.html`.
6969
color: var(--hf-ink);
7070
font-family: Inter, system-ui, sans-serif;
7171
}
72-
.hf-remocn-animated-bar-chart {
72+
.hf-catalog-animated-bar-chart {
7373
width: 760px;
7474
min-height: 420px;
7575
border-radius: 28px;
@@ -79,38 +79,38 @@ That writes one file: `compositions/components/animated-bar-chart.html`.
7979
display: grid;
8080
gap: 22px;
8181
}
82-
.hf-remocn-animated-bar-chart header {
82+
.hf-catalog-animated-bar-chart header {
8383
display: flex;
8484
justify-content: space-between;
8585
align-items: end;
8686
}
87-
.hf-remocn-animated-bar-chart h3 {
87+
.hf-catalog-animated-bar-chart h3 {
8888
margin: 0;
8989
font-size: 34px;
9090
letter-spacing: -0.04em;
9191
}
92-
.hf-remocn-animated-bar-chart strong {
92+
.hf-catalog-animated-bar-chart strong {
9393
font-size: 54px;
9494
letter-spacing: -0.06em;
9595
}
96-
.hf-remocn-animated-bar-chart .bars {
96+
.hf-catalog-animated-bar-chart .bars {
9797
height: 210px;
9898
display: grid;
9999
grid-template-columns: repeat(7, 1fr);
100100
align-items: end;
101101
gap: 14px;
102102
}
103-
.hf-remocn-animated-bar-chart .bar {
103+
.hf-catalog-animated-bar-chart .bar {
104104
height: calc(var(--h) * var(--hf-grow, 1));
105105
border-radius: 14px 14px 5px 5px;
106106
background: var(--hf-l1);
107107
}
108-
.hf-remocn-animated-bar-chart svg {
108+
.hf-catalog-animated-bar-chart svg {
109109
width: 100%;
110110
height: 210px;
111111
overflow: visible;
112112
}
113-
.hf-remocn-animated-bar-chart path {
113+
.hf-catalog-animated-bar-chart path {
114114
color: var(--hf-l2);
115115
stroke-dasharray: 900;
116116
stroke-dashoffset: var(--hf-dash, 0);
@@ -119,7 +119,7 @@ That writes one file: `compositions/components/animated-bar-chart.html`.
119119

120120
<!--
121121
Timeline integration:
122-
tl.fromTo('.hf-remocn-animated-bar-chart', { '--hf-grow': 0, '--hf-dash': 900 }, { '--hf-grow': 1, '--hf-dash': 0, duration: 1.2, ease: 'power3.out' }, startTime);
122+
tl.fromTo('.hf-catalog-animated-bar-chart', { '--hf-grow': 0, '--hf-dash': 900 }, { '--hf-grow': 1, '--hf-dash': 0, duration: 1.2, ease: 'power3.out' }, startTime);
123123
-->
124124
```
125125

@@ -131,7 +131,7 @@ Open `compositions/components/animated-bar-chart.html` and paste its contents in
131131

132132
{/* hf:generated-footer */}
133133

134-
Tagged `data` `remocn-port`.
134+
Tagged `data`.
135135

136136
## Related topics
137137

docs/catalog/components/blur-in.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ defaults, so this behaves exactly like the preview above until you change one:
543543

544544
{/* hf:generated-footer */}
545545

546-
Tagged `video-primitive` `remocn-port` `blur-in` `text-effect`.
546+
Tagged `video-primitive` `blur-in` `text-effect`.
547547

548548
## Related topics
549549

docs/catalog/components/blur-out-up.mdx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
1515

1616
```html blur-out-up.html
1717
<!--
18-
Blur Out Up - remocn typography primitive for HyperFrames.
18+
Blur Out Up - typography primitive for HyperFrames.
1919
2020
Paste the markup, CSS and script into a composition. Drive the timeline
2121
integration from a paused GSAP timeline so renders remain deterministic.
@@ -41,7 +41,7 @@ import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
4141
-->
4242

4343
<div
44-
class="hf-remocn-blur-out-up"
44+
class="hf-catalog-blur-out-up"
4545
data-composition-variables='[
4646
{ "id": "direction", "type": "enum", "role": "motion", "label": "Direction", "description": "Where the offset the timeline drives points.", "default": "up", "options": [{ "value": "up", "label": "Up" }, { "value": "down", "label": "Down" }, { "value": "left", "label": "Left" }, { "value": "right", "label": "Right" }] },
4747
{ "id": "distance", "type": "enum", "role": "motion", "label": "Distance", "description": "Scales the travel 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" }] },
@@ -53,19 +53,19 @@ import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
5353
</div>
5454

5555
<style>
56-
.hf-remocn-blur-out-up {
56+
.hf-catalog-blur-out-up {
5757
color: var(--hf-word-color, #18181b);
5858
font-family: Inter, system-ui, sans-serif;
5959
font-weight: 900;
6060
letter-spacing: -0.04em;
6161
}
62-
.hf-remocn-blur-out-up {
62+
.hf-catalog-blur-out-up {
6363
display: inline-flex;
6464
gap: 12px;
6565
font-size: 56px;
6666
line-height: 1;
6767
}
68-
.hf-remocn-blur-out-up span {
68+
.hf-catalog-blur-out-up span {
6969
display: inline-block;
7070
transform: translate(
7171
calc(var(--hf-word-x, 0px) + var(--hf-word-y, 0px) * var(--hf-word-axis-x, 0)),
@@ -110,7 +110,7 @@ import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
110110
var blurScale = blurScales[pick(blurScales, vars.blur, "standard")];
111111
var tone = tones[pick(tones, vars.tone, "ink")];
112112
113-
var roots = document.querySelectorAll(".hf-remocn-blur-out-up");
113+
var roots = document.querySelectorAll(".hf-catalog-blur-out-up");
114114
for (var i = 0; i < roots.length; i += 1) {
115115
roots[i].style.setProperty("--hf-word-axis-x", String(axis.x * reach));
116116
roots[i].style.setProperty("--hf-word-axis-y", String(axis.y * reach));
@@ -122,7 +122,7 @@ import { VariablesExplorer } from "/snippets/variables-explorer.jsx";
122122

123123
<!--
124124
Timeline integration:
125-
tl.fromTo('.hf-remocn-blur-out-up span', { opacity: 0, '--hf-word-y': '22px', '--hf-word-scale': 0.92, '--hf-word-blur': '5px' }, { opacity: 1, '--hf-word-y': '0px', '--hf-word-scale': 1, '--hf-word-blur': '0px', duration: 0.3, stagger: 0.055, ease: 'power3.out' }, startTime);
125+
tl.fromTo('.hf-catalog-blur-out-up span', { opacity: 0, '--hf-word-y': '22px', '--hf-word-scale': 0.92, '--hf-word-blur': '5px' }, { opacity: 1, '--hf-word-y': '0px', '--hf-word-scale': 1, '--hf-word-blur': '0px', duration: 0.3, stagger: 0.055, ease: 'power3.out' }, startTime);
126126
-->
127127
```
128128

@@ -163,7 +163,7 @@ defaults, so this behaves exactly like the preview above until you change one:
163163

164164
```html
165165
<!--
166-
Blur Out Up - remocn typography primitive for HyperFrames.
166+
Blur Out Up - typography primitive for HyperFrames.
167167
168168
Paste the markup, CSS and script into a composition. Drive the timeline
169169
integration from a paused GSAP timeline so renders remain deterministic.
@@ -189,7 +189,7 @@ defaults, so this behaves exactly like the preview above until you change one:
189189
-->
190190

191191
<div
192-
class="hf-remocn-blur-out-up"
192+
class="hf-catalog-blur-out-up"
193193
data-composition-variables='[
194194
{ "id": "direction", "type": "enum", "role": "motion", "label": "Direction", "description": "Where the offset the timeline drives points.", "default": "up", "options": [{ "value": "up", "label": "Up" }, { "value": "down", "label": "Down" }, { "value": "left", "label": "Left" }, { "value": "right", "label": "Right" }] },
195195
{ "id": "distance", "type": "enum", "role": "motion", "label": "Distance", "description": "Scales the travel 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" }] },
@@ -201,19 +201,19 @@ defaults, so this behaves exactly like the preview above until you change one:
201201
</div>
202202

203203
<style>
204-
.hf-remocn-blur-out-up {
204+
.hf-catalog-blur-out-up {
205205
color: var(--hf-word-color, #18181b);
206206
font-family: Inter, system-ui, sans-serif;
207207
font-weight: 900;
208208
letter-spacing: -0.04em;
209209
}
210-
.hf-remocn-blur-out-up {
210+
.hf-catalog-blur-out-up {
211211
display: inline-flex;
212212
gap: 12px;
213213
font-size: 56px;
214214
line-height: 1;
215215
}
216-
.hf-remocn-blur-out-up span {
216+
.hf-catalog-blur-out-up span {
217217
display: inline-block;
218218
transform: translate(
219219
calc(var(--hf-word-x, 0px) + var(--hf-word-y, 0px) * var(--hf-word-axis-x, 0)),
@@ -258,7 +258,7 @@ defaults, so this behaves exactly like the preview above until you change one:
258258
var blurScale = blurScales[pick(blurScales, vars.blur, "standard")];
259259
var tone = tones[pick(tones, vars.tone, "ink")];
260260
261-
var roots = document.querySelectorAll(".hf-remocn-blur-out-up");
261+
var roots = document.querySelectorAll(".hf-catalog-blur-out-up");
262262
for (var i = 0; i < roots.length; i += 1) {
263263
roots[i].style.setProperty("--hf-word-axis-x", String(axis.x * reach));
264264
roots[i].style.setProperty("--hf-word-axis-y", String(axis.y * reach));
@@ -270,7 +270,7 @@ defaults, so this behaves exactly like the preview above until you change one:
270270

271271
<!--
272272
Timeline integration:
273-
tl.fromTo('.hf-remocn-blur-out-up span', { opacity: 0, '--hf-word-y': '22px', '--hf-word-scale': 0.92, '--hf-word-blur': '5px' }, { opacity: 1, '--hf-word-y': '0px', '--hf-word-scale': 1, '--hf-word-blur': '0px', duration: 0.3, stagger: 0.055, ease: 'power3.out' }, startTime);
273+
tl.fromTo('.hf-catalog-blur-out-up span', { opacity: 0, '--hf-word-y': '22px', '--hf-word-scale': 0.92, '--hf-word-blur': '5px' }, { opacity: 1, '--hf-word-y': '0px', '--hf-word-scale': 1, '--hf-word-blur': '0px', duration: 0.3, stagger: 0.055, ease: 'power3.out' }, startTime);
274274
-->
275275
```
276276

@@ -282,7 +282,7 @@ Open `compositions/components/blur-out-up.html` and paste its contents into your
282282

283283
{/* hf:generated-footer */}
284284

285-
Tagged `motion-primitive` `remocn-port` `typography`.
285+
Tagged `motion-primitive` `typography`.
286286

287287
## Related topics
288288

docs/catalog/components/checkout-flow.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ That writes one file: `compositions/components/checkout-flow.html`.
2424

2525
```html
2626
<!--
27-
Checkout Flow - Remocn-inspired composed UI flow for HyperFrames.
27+
Checkout Flow - Composed UI flow for HyperFrames.
2828
2929
Paste the markup and CSS into a composition. Use the timeline integration
3030
note at the bottom as the starting point for deterministic GSAP animation.
@@ -122,7 +122,7 @@ Open `compositions/components/checkout-flow.html` and paste its contents into yo
122122

123123
{/* hf:generated-footer */}
124124

125-
Tagged `ui-flow` `remocn-port` `checkout` `commerce`.
125+
Tagged `ui-flow` `checkout` `commerce`.
126126

127127
## Related topics
128128

0 commit comments

Comments
 (0)