|
2 | 2 |
|
3 | 3 | This guide provides detailed instructions for migrating your project from one version of the `@metamask/design-tokens` to another.
|
4 | 4 |
|
| 5 | +- [From version 6.0.0 to 7.0.0](#from-version-600-to-700) |
5 | 6 | - [From version 5.1.0 to 6.0.0](#from-version-510-to-600)
|
6 | 7 | - [From version 4.1.0 to 5.0.0](#from-version-410-to-500)
|
7 | 8 | - [From version 3.0.0 to 4.0.0](#from-version-300-to-400)
|
8 | 9 | - [From version 2.1.1 to 3.0.0](#from-version-211-to-300)
|
9 | 10 |
|
| 11 | +## From version 6.0.0 to 7.0.0 |
| 12 | + |
| 13 | +### Typography Changes (Breaking Changes) |
| 14 | + |
| 15 | +In version 7.0.0, we've simplified the typography system by removing individual font family tokens for each typography variant. This is a breaking change that affects both CSS and JS tokens. |
| 16 | + |
| 17 | +#### Removed Tokens |
| 18 | + |
| 19 | +##### CSS Variables |
| 20 | + |
| 21 | +```css |
| 22 | +/* Typography font family tokens */ |
| 23 | +--typography-s-display-md-font-family |
| 24 | +--typography-s-heading-lg-font-family |
| 25 | +--typography-s-heading-md-font-family |
| 26 | +--typography-s-heading-sm-font-family |
| 27 | +--typography-s-heading-sm-regular-font-family |
| 28 | +--typography-s-body-lg-medium-font-family |
| 29 | +--typography-s-body-md-font-family |
| 30 | +--typography-s-body-md-medium-font-family |
| 31 | +--typography-s-body-md-bold-font-family |
| 32 | +--typography-s-body-sm-font-family |
| 33 | +--typography-s-body-sm-medium-font-family |
| 34 | +--typography-s-body-sm-bold-font-family |
| 35 | +--typography-s-body-xs-font-family |
| 36 | +--typography-s-body-xs-medium-font-family |
| 37 | +--typography-l-display-md-font-family |
| 38 | +--typography-l-heading-lg-font-family |
| 39 | +--typography-l-heading-md-font-family |
| 40 | +--typography-l-heading-sm-font-family |
| 41 | +--typography-l-heading-sm-regular-font-family |
| 42 | +--typography-l-body-lg-medium-font-family |
| 43 | +--typography-l-body-md-font-family |
| 44 | +--typography-l-body-md-medium-font-family |
| 45 | +--typography-l-body-md-bold-font-family |
| 46 | +--typography-l-body-sm-font-family |
| 47 | +--typography-l-body-sm-medium-font-family |
| 48 | +--typography-l-body-sm-bold-font-family |
| 49 | +--typography-l-body-xs-font-family |
| 50 | +--typography-l-body-xs-medium-font-family |
| 51 | +``` |
| 52 | + |
| 53 | +##### JS Tokens |
| 54 | + |
| 55 | +```javascript |
| 56 | +typography.sDisplayMD.fontFamily; |
| 57 | +typography.sHeadingLG.fontFamily; |
| 58 | +typography.sHeadingMD.fontFamily; |
| 59 | +typography.sHeadingSM.fontFamily; |
| 60 | +typography.sHeadingSMRegular.fontFamily; |
| 61 | +typography.sBodyLGMedium.fontFamily; |
| 62 | +typography.sBodyMD.fontFamily; |
| 63 | +typography.sBodyMDMedium.fontFamily; |
| 64 | +typography.sBodyMDBold.fontFamily; |
| 65 | +typography.sBodySM.fontFamily; |
| 66 | +typography.sBodySMMedium.fontFamily; |
| 67 | +typography.sBodySMBold.fontFamily; |
| 68 | +typography.sBodyXS.fontFamily; |
| 69 | +typography.sBodyXSMedium.fontFamily; |
| 70 | +typography.lDisplayMD.fontFamily; |
| 71 | +typography.lHeadingLG.fontFamily; |
| 72 | +typography.lHeadingMD.fontFamily; |
| 73 | +typography.lHeadingSM.fontFamily; |
| 74 | +typography.lHeadingSMRegular.fontFamily; |
| 75 | +typography.lBodyLGMedium.fontFamily; |
| 76 | +typography.lBodyMD.fontFamily; |
| 77 | +typography.lBodyMDMedium.fontFamily; |
| 78 | +typography.lBodyMDBold.fontFamily; |
| 79 | +typography.lBodySM.fontFamily; |
| 80 | +typography.lBodySMMedium.fontFamily; |
| 81 | +typography.lBodySMBold.fontFamily; |
| 82 | +typography.lBodyXS.fontFamily; |
| 83 | +typography.lBodyXSMedium.fontFamily; |
| 84 | +``` |
| 85 | + |
| 86 | +#### Added Tokens |
| 87 | + |
| 88 | +##### CSS Variables |
| 89 | + |
| 90 | +```css |
| 91 | +/* Font family tokens */ |
| 92 | +--font-family-accent: 'MMSans', sans-serif; |
| 93 | +--font-family-hero: 'MMPoly', sans-serif; |
| 94 | +``` |
| 95 | + |
| 96 | +##### JS Tokens |
| 97 | + |
| 98 | +```javascript |
| 99 | +const FontFamilies = { |
| 100 | + default: 'CentraNo1', |
| 101 | + accent: 'MMSans', |
| 102 | + hero: 'MMPoly', |
| 103 | +}; |
| 104 | +``` |
| 105 | + |
| 106 | +### Migration Steps |
| 107 | + |
| 108 | +1. Remove all references to individual typography font family tokens |
| 109 | +2. Use the base font family tokens instead: |
| 110 | + - For web: Use `--font-family-default` for all typography variants |
| 111 | + - For React Native: Use the appropriate font family from the base font tokens |
| 112 | +3. Update any CSS or style definitions that were using the removed tokens |
| 113 | +4. Test all typography variants to ensure they're using the correct font family |
| 114 | +5. For special typography needs: |
| 115 | + - Use `--font-family-accent` for accent text (CSS) or `FontFamilies.accent` (JS) |
| 116 | + - Use `--font-family-hero` for hero text (CSS) or `FontFamilies.hero` (JS) |
| 117 | + |
10 | 118 | ## From version 5.1.0 to 6.0.0
|
11 | 119 |
|
12 | 120 | ### Font Family Changes (Breaking Changes)
|
|
0 commit comments