@arclux/arc-ui-html 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +57 -0
- package/css/animated-number.css +12 -0
- package/css/app-shell.css +52 -0
- package/css/arc-ui.css +3045 -0
- package/css/aspect-ratio.css +23 -0
- package/css/auth-shell.css +98 -0
- package/css/avatar-group.css +49 -0
- package/css/avatar.css +53 -0
- package/css/badge.css +76 -0
- package/css/button.css +94 -0
- package/css/callout.css +84 -0
- package/css/card.css +50 -0
- package/css/code-block.css +86 -0
- package/css/color-swatch.css +47 -0
- package/css/container.css +15 -0
- package/css/dashboard-grid.css +21 -0
- package/css/divider.css +128 -0
- package/css/empty-state.css +43 -0
- package/css/feature-card.css +102 -0
- package/css/footer.css +60 -0
- package/css/form.css +454 -0
- package/css/highlight.css +13 -0
- package/css/icon-button.css +118 -0
- package/css/icon.css +36 -0
- package/css/kbd.css +21 -0
- package/css/link.css +74 -0
- package/css/markdown.css +133 -0
- package/css/meter.css +59 -0
- package/css/page-header.css +55 -0
- package/css/page-layout.css +65 -0
- package/css/progress.css +96 -0
- package/css/scroll-area.css +70 -0
- package/css/section.css +27 -0
- package/css/settings-layout.css +55 -0
- package/css/skeleton.css +44 -0
- package/css/spinner.css +46 -0
- package/css/stack.css +38 -0
- package/css/stat.css +42 -0
- package/css/status-bar.css +50 -0
- package/css/stepper.css +134 -0
- package/css/table.css +85 -0
- package/css/text.css +77 -0
- package/css/timeline.css +117 -0
- package/css/toolbar.css +54 -0
- package/css/tooltip.css +107 -0
- package/css/top-bar.css +158 -0
- package/css/value-card.css +60 -0
- package/examples/animated-number.html +8 -0
- package/examples/animated-number.inline.html +8 -0
- package/examples/app-shell.html +20 -0
- package/examples/app-shell.inline.html +31 -0
- package/examples/aspect-ratio.html +12 -0
- package/examples/aspect-ratio.inline.html +12 -0
- package/examples/auth-shell.html +20 -0
- package/examples/auth-shell.inline.html +28 -0
- package/examples/avatar-group.html +8 -0
- package/examples/avatar-group.inline.html +8 -0
- package/examples/avatar.html +7 -0
- package/examples/avatar.inline.html +11 -0
- package/examples/badge.html +5 -0
- package/examples/badge.inline.html +10 -0
- package/examples/button.html +5 -0
- package/examples/button.inline.html +21 -0
- package/examples/callout.html +12 -0
- package/examples/callout.inline.html +12 -0
- package/examples/card.html +5 -0
- package/examples/card.inline.html +13 -0
- package/examples/code-block.html +18 -0
- package/examples/code-block.inline.html +22 -0
- package/examples/color-swatch.html +12 -0
- package/examples/color-swatch.inline.html +16 -0
- package/examples/container.html +5 -0
- package/examples/container.inline.html +5 -0
- package/examples/dashboard-grid.html +7 -0
- package/examples/dashboard-grid.inline.html +10 -0
- package/examples/divider.html +5 -0
- package/examples/divider.inline.html +10 -0
- package/examples/empty-state.html +14 -0
- package/examples/empty-state.inline.html +14 -0
- package/examples/feature-card.html +12 -0
- package/examples/feature-card.inline.html +25 -0
- package/examples/footer.html +18 -0
- package/examples/footer.inline.html +18 -0
- package/examples/form.html +86 -0
- package/examples/highlight.html +5 -0
- package/examples/highlight.inline.html +5 -0
- package/examples/icon-button.html +5 -0
- package/examples/icon-button.inline.html +22 -0
- package/examples/icon.html +12 -0
- package/examples/icon.inline.html +12 -0
- package/examples/kbd.html +5 -0
- package/examples/kbd.inline.html +5 -0
- package/examples/link.html +13 -0
- package/examples/link.inline.html +23 -0
- package/examples/markdown.html +6 -0
- package/examples/markdown.inline.html +16 -0
- package/examples/meter.html +20 -0
- package/examples/meter.inline.html +29 -0
- package/examples/page-header.html +22 -0
- package/examples/page-header.inline.html +22 -0
- package/examples/page-layout.html +15 -0
- package/examples/page-layout.inline.html +21 -0
- package/examples/progress.html +20 -0
- package/examples/progress.inline.html +27 -0
- package/examples/scroll-area.html +12 -0
- package/examples/scroll-area.inline.html +22 -0
- package/examples/section.html +8 -0
- package/examples/section.inline.html +13 -0
- package/examples/settings-layout.html +12 -0
- package/examples/settings-layout.inline.html +22 -0
- package/examples/skeleton.html +10 -0
- package/examples/skeleton.inline.html +15 -0
- package/examples/spinner.html +9 -0
- package/examples/spinner.inline.html +9 -0
- package/examples/stack.html +5 -0
- package/examples/stack.inline.html +5 -0
- package/examples/stat.html +9 -0
- package/examples/stat.inline.html +10 -0
- package/examples/status-bar.html +15 -0
- package/examples/status-bar.inline.html +15 -0
- package/examples/stepper.html +18 -0
- package/examples/stepper.inline.html +18 -0
- package/examples/table.html +7 -0
- package/examples/table.inline.html +7 -0
- package/examples/text.html +5 -0
- package/examples/text.inline.html +5 -0
- package/examples/timeline.html +10 -0
- package/examples/timeline.inline.html +10 -0
- package/examples/toolbar.html +15 -0
- package/examples/toolbar.inline.html +15 -0
- package/examples/tooltip.html +19 -0
- package/examples/tooltip.inline.html +19 -0
- package/examples/top-bar.html +23 -0
- package/examples/top-bar.inline.html +29 -0
- package/examples/value-card.html +11 -0
- package/examples/value-card.inline.html +15 -0
- package/package.json +31 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclux/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-scroll-area — self-contained, no external CSS needed -->
|
|
3
|
+
<style>
|
|
4
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5
|
+
.arc-scroll-area *,
|
|
6
|
+
.arc-scroll-area *::before,
|
|
7
|
+
.arc-scroll-area *::after { animation-duration: 0.01ms !important;
|
|
8
|
+
animation-iteration-count: 1 !important;
|
|
9
|
+
transition-duration: 0.01ms !important; }
|
|
10
|
+
}
|
|
11
|
+
.arc-scroll-area .scroll-area::-webkit-scrollbar-thumb:hover { background: rgb(110, 115, 155); }
|
|
12
|
+
</style>
|
|
13
|
+
<div class="arc-scroll-area" style="display: block; position: relative">
|
|
14
|
+
<div
|
|
15
|
+
class="scroll-area" style="overflow: hidden; scroll-behavior: smooth; border-radius: var(--radius-full); width: 6px; height: 6px; background: var(--bg-elevated); scrollbar-width: thin; scrollbar-color: var(--border-bright) var(--bg-elevated)"
|
|
16
|
+
tabindex="0"
|
|
17
|
+
role="region"
|
|
18
|
+
aria-label="Scrollable content"
|
|
19
|
+
>
|
|
20
|
+
Scroll Area
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-section — self-contained, no external CSS needed -->
|
|
3
|
+
<style>
|
|
4
|
+
@media (max-width: 768px) {
|
|
5
|
+
.arc-section .section { padding: 64px 16px; }
|
|
6
|
+
}
|
|
7
|
+
</style>
|
|
8
|
+
<div class="arc-section" style="display: block">
|
|
9
|
+
<section class="section" style="width: 100%; max-width: 1120px; margin-inline: auto; padding: 96px 24px; scroll-margin-top: 16px">
|
|
10
|
+
Label
|
|
11
|
+
Section
|
|
12
|
+
</section>
|
|
13
|
+
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-settings-layout — requires settings-layout.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-settings-layout">
|
|
4
|
+
<div>
|
|
5
|
+
<div class="nav">
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
<div class="content">
|
|
9
|
+
Settings Layout
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-settings-layout — self-contained, no external CSS needed -->
|
|
3
|
+
<style>
|
|
4
|
+
@media (max-width: 768px) {
|
|
5
|
+
.arc-settings-layout .settings-layout--left { display: flex;
|
|
6
|
+
flex-direction: column; }
|
|
7
|
+
}
|
|
8
|
+
@media (max-width: 768px) {
|
|
9
|
+
.arc-settings-layout .settings-layout--left .nav { border-right: none;
|
|
10
|
+
border-bottom: 1px solid rgb(24, 24, 30); }
|
|
11
|
+
}
|
|
12
|
+
</style>
|
|
13
|
+
<div class="arc-settings-layout" style="display: block; box-sizing: border-box">
|
|
14
|
+
<div>
|
|
15
|
+
<div class="nav" style="padding: 24px; background: rgb(13, 13, 18); border-right: 1px solid rgb(24, 24, 30); border-bottom: 1px solid rgb(24, 24, 30)">
|
|
16
|
+
|
|
17
|
+
</div>
|
|
18
|
+
<div style="padding: 40px; flex: 1">
|
|
19
|
+
Settings Layout
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-skeleton — requires skeleton.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-skeleton">
|
|
4
|
+
<div
|
|
5
|
+
class="skeleton"
|
|
6
|
+
role="status"
|
|
7
|
+
aria-label="Loading"
|
|
8
|
+
aria-busy="true"
|
|
9
|
+
></div>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-skeleton — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-skeleton" style="display: block">
|
|
4
|
+
<div
|
|
5
|
+
style="background: linear-gradient(
|
|
6
|
+
90deg,
|
|
7
|
+
rgb(17, 17, 22) 25%,
|
|
8
|
+
rgb(24, 24, 30) 37%,
|
|
9
|
+
rgb(17, 17, 22) 63%
|
|
10
|
+
); background-size: 200% 100%; animation: shimmer 1.8s ease-in-out infinite"
|
|
11
|
+
role="status"
|
|
12
|
+
aria-label="Loading"
|
|
13
|
+
aria-busy="true"
|
|
14
|
+
></div>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-spinner — self-contained, no external CSS needed -->
|
|
3
|
+
<span class="arc-spinner" style="display: inline-flex">
|
|
4
|
+
<div
|
|
5
|
+
style="border-radius: 9999px; border-style: solid; border-color: rgb(77, 126, 247); border-top-color: transparent; animation: spin 0.75s linear infinite; box-sizing: border-box"
|
|
6
|
+
role="status"
|
|
7
|
+
aria-label="Loading"
|
|
8
|
+
></div>
|
|
9
|
+
</span>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclux/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-stack — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-stack" style="display: flex; flex-direction: column; gap: 16px; align-items: stretch; justify-content: flex-start">
|
|
4
|
+
Stack
|
|
5
|
+
</div>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-stat — requires stat.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-stat">
|
|
4
|
+
<div class="stat">
|
|
5
|
+
<span class="stat__value">Value</span>
|
|
6
|
+
<span class="stat__rule"></span>
|
|
7
|
+
<span class="stat__label">Label</span>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-stat — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-stat" style="display: block">
|
|
4
|
+
<div style="display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 24px 16px">
|
|
5
|
+
<span style="font-size: clamp(32px, 4.5vw, 48px); font-weight: 200; letter-spacing: -1px; line-height: 1; background: linear-gradient(90deg, rgb(77, 126, 247), rgb(139, 92, 246)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 16px rgba(77, 126, 247,0.3))
|
|
6
|
+
drop-shadow(0 0 40px rgba(139, 92, 246,0.12))">Value</span>
|
|
7
|
+
<span style="width: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgb(77, 126, 247), transparent); opacity: 0.4"></span>
|
|
8
|
+
<span style="font-family: 'Tektur', system-ui, sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgb(124, 124, 137)">Label</span>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-status-bar — requires status-bar.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-status-bar">
|
|
4
|
+
<div class="status-bar" role="status">
|
|
5
|
+
<div class="status-bar__left">
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
<div class="status-bar__center">
|
|
9
|
+
Status Bar
|
|
10
|
+
</div>
|
|
11
|
+
<div class="status-bar__right">
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-status-bar — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-status-bar" style="display: block; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: rgb(124, 124, 137)">
|
|
4
|
+
<div style="display: flex; align-items: center; height: 28px; padding: 0 8px; background: rgb(3, 3, 7); border-top: 1px solid rgb(24, 24, 30); gap: 8px" role="status">
|
|
5
|
+
<div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
<div style="display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center">
|
|
9
|
+
Status Bar
|
|
10
|
+
</div>
|
|
11
|
+
<div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto">
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-stepper — requires stepper.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-stepper">
|
|
4
|
+
<div
|
|
5
|
+
class="step step--"
|
|
6
|
+
role="listitem"
|
|
7
|
+
aria-current=""
|
|
8
|
+
>
|
|
9
|
+
<div class="step__header">
|
|
10
|
+
|
|
11
|
+
<span class="step__circle">
|
|
12
|
+
|
|
13
|
+
</span>
|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
<span class="step__label"></span>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-stepper — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-stepper" style="display: block">
|
|
4
|
+
<div
|
|
5
|
+
|
|
6
|
+
role="listitem"
|
|
7
|
+
aria-current=""
|
|
8
|
+
>
|
|
9
|
+
<div style="display: flex; align-items: center; width: 100%; position: relative">
|
|
10
|
+
|
|
11
|
+
<span style="width: 32px; height: 32px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-family: 'Tektur', system-ui, sans-serif; font-size: 13px; font-weight: 600; flex-shrink: 0; position: relative; z-index: 1; margin: 0 auto; box-sizing: border-box; background: rgb(77, 126, 247); color: rgb(232, 232, 236); border: 2px solid rgb(77, 126, 247); box-shadow: 0 0 12px rgba(77, 126, 247, 0.25)">
|
|
12
|
+
|
|
13
|
+
</span>
|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
<span style="margin-top: 8px; font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 13px; color: rgb(138, 138, 150); text-align: center; font-weight: 600"></span>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-table — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-table" style="display: block; color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: clamp(15px, 1.2vw, 16px)">
|
|
4
|
+
<div style="overflow-x: auto; border: 1px solid rgb(34, 34, 41); border-radius: 14px">
|
|
5
|
+
Table
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-timeline — requires timeline.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-timeline">
|
|
4
|
+
<div class="timeline__slot-host">
|
|
5
|
+
Timeline
|
|
6
|
+
</div>
|
|
7
|
+
<ol class="timeline" role="list">
|
|
8
|
+
_items
|
|
9
|
+
</ol>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-timeline — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-timeline" style="display: block">
|
|
4
|
+
<div style="display: none">
|
|
5
|
+
Timeline
|
|
6
|
+
</div>
|
|
7
|
+
<ol style="display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; list-style: none" role="list">
|
|
8
|
+
_items
|
|
9
|
+
</ol>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-toolbar — requires toolbar.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-toolbar">
|
|
4
|
+
<div class="toolbar" role="toolbar">
|
|
5
|
+
<div class="toolbar__start">
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
<div class="toolbar__center">
|
|
9
|
+
Toolbar
|
|
10
|
+
</div>
|
|
11
|
+
<div class="toolbar__end">
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-toolbar — self-contained, no external CSS needed -->
|
|
3
|
+
<div class="arc-toolbar" style="display: block; font-family: 'Host Grotesk', system-ui, sans-serif">
|
|
4
|
+
<div style="display: flex; align-items: center; height: 48px; padding: 0 16px; background: rgb(13, 13, 18); gap: 8px" role="toolbar">
|
|
5
|
+
<div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
|
|
6
|
+
|
|
7
|
+
</div>
|
|
8
|
+
<div style="display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center">
|
|
9
|
+
Toolbar
|
|
10
|
+
</div>
|
|
11
|
+
<div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto">
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-tooltip — requires tooltip.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<span class="arc-tooltip">
|
|
4
|
+
<div
|
|
5
|
+
class="tooltip__trigger"
|
|
6
|
+
|
|
7
|
+
aria-describedby="_tooltip Id"
|
|
8
|
+
>
|
|
9
|
+
Tooltip
|
|
10
|
+
</div>
|
|
11
|
+
<div
|
|
12
|
+
class="tooltip__popup _visible"
|
|
13
|
+
role="tooltip"
|
|
14
|
+
id="_tooltip Id"
|
|
15
|
+
>
|
|
16
|
+
Content goes here
|
|
17
|
+
<div class="tooltip__arrow"></div>
|
|
18
|
+
</div>
|
|
19
|
+
</span>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-tooltip — self-contained, no external CSS needed -->
|
|
3
|
+
<span class="arc-tooltip" style="display: inline-block; position: relative">
|
|
4
|
+
<div
|
|
5
|
+
style="display: inline-block"
|
|
6
|
+
|
|
7
|
+
aria-describedby="_tooltip Id"
|
|
8
|
+
>
|
|
9
|
+
Tooltip
|
|
10
|
+
</div>
|
|
11
|
+
<div
|
|
12
|
+
|
|
13
|
+
role="tooltip"
|
|
14
|
+
id="_tooltip Id"
|
|
15
|
+
>
|
|
16
|
+
Content goes here
|
|
17
|
+
<div style="position: absolute; width: 8px; height: 8px; background: rgb(17, 17, 22); border: 1px solid rgb(34, 34, 41); transform: rotate(45deg)"></div>
|
|
18
|
+
</div>
|
|
19
|
+
</span>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-top-bar — requires top-bar.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-top-bar">
|
|
4
|
+
<header class="topbar">
|
|
5
|
+
<button class="topbar__menu-btn" aria-label="Toggle menu" aria-expanded="false">
|
|
6
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
|
|
7
|
+
<rect y="3" width="20" height="2" rx="1"/>
|
|
8
|
+
<rect y="9" width="20" height="2" rx="1"/>
|
|
9
|
+
<rect y="15" width="20" height="2" rx="1"/>
|
|
10
|
+
</svg>
|
|
11
|
+
</button>
|
|
12
|
+
<a class="topbar__brand" href="/">
|
|
13
|
+
|
|
14
|
+
Heading
|
|
15
|
+
</a>
|
|
16
|
+
<div class="topbar__center">
|
|
17
|
+
|
|
18
|
+
</div>
|
|
19
|
+
<div class="topbar__actions">
|
|
20
|
+
|
|
21
|
+
</div>
|
|
22
|
+
</header>
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-top-bar — self-contained, no external CSS needed -->
|
|
3
|
+
<style>
|
|
4
|
+
@media (max-width: 768px) {
|
|
5
|
+
.arc-top-bar .topbar__menu-btn { display: flex; }
|
|
6
|
+
}
|
|
7
|
+
.arc-top-bar .topbar__menu-btn:hover { background: rgba(255, 255, 255, 0.05); }
|
|
8
|
+
</style>
|
|
9
|
+
<div class="arc-top-bar" style="display: block; width: 100%; z-index: 100">
|
|
10
|
+
<header class="topbar" style="display: flex; align-items: center; height: 64px; padding: 0 24px; background: rgb(3, 3, 7); border-bottom: 1px solid rgb(24, 24, 30); gap: 16px">
|
|
11
|
+
<button class="topbar__menu-btn" style="display: none; background: none; border: none; color: rgb(232, 232, 236); cursor: pointer; padding: 4px; border-radius: 4px" aria-label="Toggle menu" aria-expanded="false">
|
|
12
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="currentColor">
|
|
13
|
+
<rect y="3" width="20" height="2" rx="1"/>
|
|
14
|
+
<rect y="9" width="20" height="2" rx="1"/>
|
|
15
|
+
<rect y="15" width="20" height="2" rx="1"/>
|
|
16
|
+
</svg>
|
|
17
|
+
</button>
|
|
18
|
+
<a style="display: flex; align-items: center; gap: 8px; font-family: 'Tektur', system-ui, sans-serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; letter-spacing: clamp(8px, 1.2vw, 14px); text-transform: uppercase; color: rgb(232, 232, 236); text-decoration: none; flex-shrink: 0" href="/">
|
|
19
|
+
|
|
20
|
+
Heading
|
|
21
|
+
</a>
|
|
22
|
+
<div style="flex: 1; display: flex; align-items: center; justify-content: center">
|
|
23
|
+
|
|
24
|
+
</div>
|
|
25
|
+
<div style="display: flex; align-items: center; gap: 8px; flex-shrink: 0">
|
|
26
|
+
|
|
27
|
+
</div>
|
|
28
|
+
</header>
|
|
29
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-value-card — requires value-card.css + tokens.css (or arc-ui.css) -->
|
|
3
|
+
<div class="arc-value-card">
|
|
4
|
+
<div class="card">
|
|
5
|
+
<div class="card__icon">★</div>
|
|
6
|
+
<div class="card__text">
|
|
7
|
+
<h3 class="card__title">Heading</h3>
|
|
8
|
+
<p class="card__desc">Description text goes here</p>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<!-- Auto-generated by @arclight/prism — do not edit manually -->
|
|
2
|
+
<!-- arc-value-card — self-contained, no external CSS needed -->
|
|
3
|
+
<style>
|
|
4
|
+
.arc-value-card .card:hover { border-color: rgb(51, 51, 64);
|
|
5
|
+
box-shadow: 0 0 20px rgba(139, 92, 246,0.06); }
|
|
6
|
+
</style>
|
|
7
|
+
<div class="arc-value-card" style="display: flex; flex-direction: column; height: 100%">
|
|
8
|
+
<div class="card" style="position: relative; display: flex; align-items: flex-start; gap: 24px; padding: 24px; flex: 1; border: 1px solid rgb(24, 24, 30); border-radius: 14px">
|
|
9
|
+
<div style="flex-shrink: 0; color: rgb(139, 92, 246); font-size: 24px; line-height: 1; padding-top: 2px">★</div>
|
|
10
|
+
<div style="display: flex; flex-direction: column; gap: 8px">
|
|
11
|
+
<h3 style="font-size: 17px; font-weight: 600; color: rgb(232, 232, 236); margin: 0">Heading</h3>
|
|
12
|
+
<p style="color: rgb(138, 138, 150); font-family: 'Host Grotesk', system-ui, sans-serif; font-size: 14px; line-height: 1.7; margin: 0">Description text goes here</p>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@arclux/arc-ui-html",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ARC UI — Standalone CSS and HTML examples for vanilla projects. Auto-generated by @arclux/prism.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"css/",
|
|
9
|
+
"examples/"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
"./css/*": "./css/*",
|
|
13
|
+
"./examples/*": "./examples/*"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"arc-ui",
|
|
17
|
+
"css",
|
|
18
|
+
"design-system",
|
|
19
|
+
"html",
|
|
20
|
+
"components"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/arclight-digital/arc-ui",
|
|
25
|
+
"directory": "packages/html"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://arcui.dev",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/arclight-digital/arc-ui/issues"
|
|
30
|
+
}
|
|
31
|
+
}
|