@discourser/design-system 0.22.4 → 0.23.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.
Files changed (52) hide show
  1. package/dist/{chunk-WSJLKVXZ.cjs → chunk-AGZVRI36.cjs} +130 -2
  2. package/dist/chunk-AGZVRI36.cjs.map +1 -0
  3. package/dist/{chunk-GLPWI7OF.js → chunk-HN2IHIMR.js} +13 -7
  4. package/dist/chunk-HN2IHIMR.js.map +1 -0
  5. package/dist/{chunk-NN4YW27E.cjs → chunk-KIJKNZ73.cjs} +13 -7
  6. package/dist/chunk-KIJKNZ73.cjs.map +1 -0
  7. package/dist/{chunk-NU6GI57K.js → chunk-KQOHRIUP.js} +130 -3
  8. package/dist/chunk-KQOHRIUP.js.map +1 -0
  9. package/dist/components/Icons/AppleLoginIcon.d.ts +6 -0
  10. package/dist/components/Icons/AppleLoginIcon.d.ts.map +1 -0
  11. package/dist/components/Icons/GoogleLoginIcon.d.ts +6 -0
  12. package/dist/components/Icons/GoogleLoginIcon.d.ts.map +1 -0
  13. package/dist/components/Icons/index.d.ts +2 -0
  14. package/dist/components/Icons/index.d.ts.map +1 -1
  15. package/dist/components/divider/divider.d.ts +9 -0
  16. package/dist/components/divider/divider.d.ts.map +1 -0
  17. package/dist/components/divider/index.d.ts +2 -0
  18. package/dist/components/divider/index.d.ts.map +1 -0
  19. package/dist/components/index.cjs +73 -69
  20. package/dist/components/index.d.ts +1 -0
  21. package/dist/components/index.d.ts.map +1 -1
  22. package/dist/components/index.js +1 -1
  23. package/dist/contracts/design-language.contract.d.ts +2 -0
  24. package/dist/contracts/design-language.contract.d.ts.map +1 -1
  25. package/dist/figma-codex.json +2 -2
  26. package/dist/index.cjs +77 -73
  27. package/dist/index.js +2 -2
  28. package/dist/languages/material3.language.d.ts.map +1 -1
  29. package/dist/languages/transform.d.ts +1 -0
  30. package/dist/languages/transform.d.ts.map +1 -1
  31. package/dist/preset/index.cjs +2 -2
  32. package/dist/preset/index.js +1 -1
  33. package/package.json +1 -1
  34. package/src/components/Icons/AppleLoginIcon.tsx +21 -0
  35. package/src/components/Icons/GoogleLoginIcon.tsx +36 -0
  36. package/src/components/Icons/index.ts +2 -0
  37. package/src/components/divider/divider.tsx +125 -0
  38. package/src/components/divider/index.ts +1 -0
  39. package/src/components/index.ts +3 -0
  40. package/src/contracts/design-language.contract.ts +3 -1
  41. package/src/languages/material3.language.ts +55 -45
  42. package/src/languages/transform.ts +3 -0
  43. package/src/stories/foundations/Typography.mdx +5 -2
  44. package/dist/chunk-GLPWI7OF.js.map +0 -1
  45. package/dist/chunk-NN4YW27E.cjs.map +0 -1
  46. package/dist/chunk-NU6GI57K.js.map +0 -1
  47. package/dist/chunk-WSJLKVXZ.cjs.map +0 -1
  48. package/docs/context-share/STORY-001-VALIDATION-PASSED.md +0 -192
  49. package/docs/context-share/STORY-002-IMPLEMENTATION-COMPLETE.md +0 -161
  50. package/docs/context-share/STORYBOOK_MCP_STRATEGY.md +0 -867
  51. package/docs/context-share/m3-token-pipeline-audit.md +0 -125
  52. package/docs/context-share/storybook-mcp-kai-agent-revised-summary.md +0 -211
@@ -186,7 +186,8 @@ var material3Language = {
186
186
  lineHeight: "64px",
187
187
  fontWeight: "400",
188
188
  letterSpacing: "-0.25px",
189
- fontFamily: "display"
189
+ fontFamily: "display",
190
+ fontVariationSettings: "'SOFT' 0, 'WONK' 1"
190
191
  },
191
192
  displayMedium: {
192
193
  fontSize: "45px",
@@ -214,7 +215,8 @@ var material3Language = {
214
215
  lineHeight: "36px",
215
216
  fontWeight: "400",
216
217
  letterSpacing: "0px",
217
- fontFamily: "display"
218
+ fontFamily: "display",
219
+ fontVariationSettings: "'SOFT' 0, 'WONK' 1"
218
220
  },
219
221
  headlineSmall: {
220
222
  fontSize: "24px",
@@ -244,9 +246,11 @@ var material3Language = {
244
246
  letterSpacing: "0.1px",
245
247
  fontFamily: "body"
246
248
  },
249
+ // Custom override: bodyLarge bumped to 18px/28px (was M3 default 16px/24px)
250
+ // Decision date: 2026-03-24
247
251
  bodyLarge: {
248
- fontSize: "16px",
249
- lineHeight: "24px",
252
+ fontSize: "18px",
253
+ lineHeight: "28px",
250
254
  fontWeight: "400",
251
255
  letterSpacing: "0.5px",
252
256
  fontFamily: "body"
@@ -292,6 +296,7 @@ var material3Language = {
292
296
  none: "0px",
293
297
  xxs: "2px",
294
298
  xs: "4px",
299
+ "2xs": "12px",
295
300
  sm: "8px",
296
301
  md: "16px",
297
302
  lg: "24px",
@@ -415,7 +420,8 @@ function transformTextStyles(language) {
415
420
  fontSize: style.fontSize,
416
421
  lineHeight: style.lineHeight,
417
422
  fontWeight: style.fontWeight,
418
- letterSpacing: style.letterSpacing
423
+ letterSpacing: style.letterSpacing,
424
+ ...style.fontVariationSettings ? { fontVariationSettings: style.fontVariationSettings } : {}
419
425
  }
420
426
  }
421
427
  ])
@@ -4489,5 +4495,5 @@ var discourserPandaPreset = dev.definePreset({
4489
4495
  exports.discourserPandaPreset = discourserPandaPreset;
4490
4496
  exports.material3Language = material3Language;
4491
4497
  exports.transformToPandaTheme = transformToPandaTheme;
4492
- //# sourceMappingURL=chunk-NN4YW27E.cjs.map
4493
- //# sourceMappingURL=chunk-NN4YW27E.cjs.map
4498
+ //# sourceMappingURL=chunk-KIJKNZ73.cjs.map
4499
+ //# sourceMappingURL=chunk-KIJKNZ73.cjs.map