You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Related Issue:** #8963
## Summary
Generated font-stack values are now comma-delimited according to the
[`font-family`
spec](https://drafts.csswg.org/css-fonts/#font-family-prop):
> Component values are a comma-separated list indicating alternatives.
Copy file name to clipboardExpand all lines: packages/calcite-design-tokens/support/tests/__snapshots__/index.spec.ts.snap
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -445,10 +445,10 @@ exports[`generated tokens CSS global should match 1`] = `
445
445
--calcite-font-weight-regular: 400;
446
446
--calcite-font-weight-normal: 400; /* For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular" */
447
447
--calcite-font-weight-light: 300; /* For Avenir Next World (secondary font family) */
$calcite-font-weight-normal: 400; // For backwards compatibility only. This token will be removed from the published tokens in the next major in favor of the more descriptive word "regular"
2035
2035
$calcite-font-weight-light: 300; // For Avenir Next World (secondary font family)
Copy file name to clipboardExpand all lines: packages/calcite-design-tokens/support/token-transformer/styleDictionary/transformer/value/valueFontFamilyFallbacks.ts
0 commit comments