v0.15.0
·
1207 commits
to refs/heads/main
since this release
What’s Changed
💥 Breaking changes
- Improve underline configuration (#434) @marcopiii
- Uniform the
color
prop of typography components (#432) @marcopiii
Migration strategy
- #432 deprecates the
"default"
color value for typography components (except forLabel
). 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 forcolor
anymore (use"primary"
instead)displayRecipe
,headlineRecipe
andtitleRecipe
now require acolor
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
'slineHeight
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
- Fix the alignment of labels in
fill-parent
Tabs (#433) @marcopiii
🔧 Dependency updates
- Update dependency tsup to v6 (#441) @renovate-bot
- Update pnpm to v7.15.0 (#440) @renovate-bot
- Update dependency css-loader to v6.7.2 (#438) @renovate-bot
- Update dependency husky to v8.0.2 (#439) @renovate-bot
- Update dependency @types/react-dom to v18.0.8 (#429) @renovate-bot
- Update dependency @types/react to v18.0.25 (#428) @renovate-bot
- Update dependency @floating-ui/dom to v1.0.4 (#418) @renovate-bot
- Update dependency @types/react to v18.0.24 (#419) @renovate-bot
- Update dependency @floating-ui/dom to v1.0.3 (#415) @renovate-bot
- Update storybook monorepo to v6.5.13 (#416) @renovate-bot
- Update dependency postcss to v8.4.18 (#413) @renovate-bot
- Update react-aria monorepo (#414) @renovate-bot
🧹 Chores
- Add detection of circular dependencies (#426) @gabro
- Avoid including react-dom in the bundle (#420) @gabro