Skip to content

v7.0.0

Choose a tag to compare

@SamuelAlev SamuelAlev released this 22 Apr 09:42
· 1825 commits to main since this release
a565855

BREAKING CHANGES

  • fix(badge)!: convert badge emphasis property to enum by @SamCreasey in #730

New type created for the emphasis property: BadgeEmphasis

// Emphasis Strong
<Badge
  emphasis={BadgeEmphasis.Strong}
>
  Text
</Badge>

// Emphasis None
<Badge
  emphasis={BadgeEmphasis.None}
>
  Text
</Badge>

Features

  • feat(ColorPickerFlyout): add onDelete prop and trash icon by @dominiquemb in #687

Fixes

Full Changelog: v6.4.1...v7.0.0