Skip to content

v0.15.0

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Nov 09:25
· 1207 commits to refs/heads/main since this release
b86871b

What’s Changed

  • Add Title as valid typography for Feedback title (#443) @gabro

💥 Breaking changes

Migration strategy

  • #432 deprecates the "default" color value for typography components (except for Label). If you were using <Body color="default" /> it's now recommended to use <Body color="primary" /> instead (which preserves the same behavior). "default" is kept around for compatibility purposes but it will be removed in the future.
  • #432 also introduces a breaking change for the typography "recipes" (bodyRecipe, titleRecipe, and so on). Specifically:
    • bodyRecipe does not accept "default" as value for color anymore (use "primary" instead)
    • displayRecipe, headlineRecipe and titleRecipe now require a color parameter (use "primary" to preserve the previous behavior)
  • #434 reduces the set of valid colors for the Navigation underline configuration. This has no direct replacement since the colors we removed did not make sense semantically for an underline, so we don't expect anyone was using them. If this change breaks your configuration, please open a discussion.
  • #434 also changes the configuration type for Tab's lineHeight configuration. If you were customizing this value you now have to use an object like { medium: 2, large: 2 } instead of a plain value.

🐞 Bug fixes

🔧 Dependency updates

🧹 Chores

  • Add detection of circular dependencies (#426) @gabro
  • Avoid including react-dom in the bundle (#420) @gabro

📚 Documentation