@letterstory/design 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -75,6 +75,11 @@ import registry from "@letterstory/design/themes"; // themes.json, typed by them
75
75
  import type { PhantomBlogTheme } from "@letterstory/design/themes";
76
76
  ```
77
77
 
78
+ The registry says which looks a customer may **choose**; `src/themes/` in lettersprite says
79
+ what each one **is**. Neither half is complete alone, and an unregistered theme is unpickable
80
+ while an unimplemented one silently renders the default. `src/themes/registry.test.ts` there
81
+ asserts both directions against this package, so a theme added at either end cannot land alone.
82
+
78
83
  ## Where the values come from
79
84
 
80
85
  The letterstory app is a **consumer**, not a source: `src/app/globals.css` imports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@letterstory/design",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Letterstory design tokens, the phantom theme registry, and the design principles — one source for every Letterstory repo.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
package/themes.d.ts CHANGED
@@ -62,7 +62,8 @@ export type PhantomBlogTheme =
62
62
  | "apiwire"
63
63
  | "bourse"
64
64
  | "folio"
65
- | "kiosk";
65
+ | "kiosk"
66
+ | "vitrine";
66
67
 
67
68
  export interface PhantomBlogThemeGroupEntry {
68
69
  readonly id: PhantomBlogThemeGroup;
package/themes.json CHANGED
@@ -406,6 +406,13 @@
406
406
  "hint": "Taste-style warm editorial newsstand, riso covers",
407
407
  "group": "publication",
408
408
  "tags": ["editorial", "magazine", "tech", "b2b", "warm", "design"]
409
+ },
410
+ {
411
+ "value": "vitrine",
412
+ "label": "Vitrine",
413
+ "hint": "Franklin Azzi-style minimalist gallery, dense image grid",
414
+ "group": "publication",
415
+ "tags": ["editorial", "minimal", "gallery", "tech", "developer", "design"]
409
416
  }
410
417
  ]
411
418
  }