@atelier-ui/vue 0.2.8 → 0.2.10

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/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## 0.2.10 (2026-08-26)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **storybook:** apply the shell font rule so previews show the real typeface ([510ae61](https://github.com/DominikPieper/atelier-ui/commit/510ae61))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Claude Opus 5
10
+ - Dominik Pieper @DominikPieper
11
+
12
+ ## 0.2.9 (2026-08-26)
13
+
14
+ ### 🚀 Features
15
+
16
+ - **tokens:** Instrument Sans + Instrument Serif + JetBrains Mono (ADR-0035) ([69c76f5](https://github.com/DominikPieper/atelier-ui/commit/69c76f5))
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Claude Opus 5
21
+ - Dominik Pieper @DominikPieper
22
+
1
23
  ## 0.2.8 (2026-08-26)
2
24
 
3
25
  This was a version bump only for vue to align it with other projects, there were no code changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/vue",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "Atelier component library for Vue 3 — LLM-optimised, accessible, design-token-driven",
5
5
  "keywords": [
6
6
  "vue",
package/styles/tokens.css CHANGED
@@ -7,6 +7,11 @@
7
7
  * All foreground/background pairs verified WCAG 2.2 AA via
8
8
  * tools/scripts/wcag-contrast.mjs (52/52 pairs passing 2026-04-26).
9
9
  *
10
+ * Typography: Instrument Sans (UI) + Instrument Serif (display) + JetBrains
11
+ * Mono (code), chosen 2026-08-26 — see ADR-0035, which revises ADR-0020's
12
+ * Inter choice. The library declares the stacks; loading the faces is the
13
+ * consumer's job (the docs app does it through Astro's fonts config).
14
+ *
10
15
  * Plan: ~/.claude/plans/atelier-design-rebrief.md (Direction A pivot)
11
16
  *
12
17
  * Usage:
@@ -15,8 +20,11 @@
15
20
 
16
21
  :root {
17
22
  /* Typography */
18
- --ui-font-family: 'Inter', ui-sans-serif, system-ui, -apple-system,
23
+ --ui-font-family: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system,
19
24
  BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
25
+ --ui-font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
26
+ --ui-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco,
27
+ 'Courier New', monospace;
20
28
  --ui-font-size-xs: 0.75rem;
21
29
  --ui-font-size-sm: 0.875rem;
22
30
  --ui-font-size-md: 1rem;