@atelier-ui/create-workspace 0.2.7 → 0.2.9

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,18 @@
1
+ ## 0.2.9 (2026-08-26)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **tokens:** Instrument Sans + Instrument Serif + JetBrains Mono (ADR-0035) ([69c76f5](https://github.com/DominikPieper/atelier-ui/commit/69c76f5))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Claude Opus 5
10
+ - Dominik Pieper @DominikPieper
11
+
12
+ ## 0.2.8 (2026-08-26)
13
+
14
+ This was a version bump only for create-workspace to align it with other projects, there were no code changes.
15
+
1
16
  ## 0.2.7 (2026-07-23)
2
17
 
3
18
  This was a version bump only for create-workspace 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/create-workspace",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "Nx preset for Atelier workshop workspaces",
5
5
  "keywords": [
6
6
  "nx",
@@ -21,7 +21,7 @@
21
21
  "types": "./src/index.d.ts",
22
22
  "generators": "./generators.json",
23
23
  "dependencies": {
24
- "@nx/devkit": "23.1.0",
24
+ "@nx/devkit": "23.1.1",
25
25
  "prettier": "^3.0.0",
26
26
  "tslib": "^2.3.0"
27
27
  },
@@ -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;