Skip to content

Releases: Frontify/fondue

v8.1.0

10 May 12:50
fb1daf4
Compare
Choose a tag to compare

Features

  • feat(RichTextEditor): implement new rte design by @celine-s in #753

Fixes

Full Changelog: v8.0.0...v8.1.0

v8.0.0

06 May 09:57
24e0f58
Compare
Choose a tag to compare

BREAKING CHANGE

Complete refactor of the Tooltip component.
What's changed?

  • No need anymore to nest the component, just use the withArrow prop to enable it
  • Positioning is now handled within the component so no need to add popper on your side
  • More options for positioning (Top, Bottom, Right, Left) and Alignment (Start, Middle, End) have been added
  • You can choose to use automatic flip and you can add a HoverDelay
  • Accessibility has been improved, it's now possible to tab into interactive elements inside the tooltip.

New Usage (no nesting necessary, new properties added)

<Tooltip
    alignment="Middle"
    content="Cupcake ipsum dolor sit amet ice cream. (https://Cupcakeipsumdolorsitameticecream.com)"
    flip
    heading="Title"
    hoverDelay={200}
    position="Bottom"
    triggerElement={<button className="tw-flex tw-justify-center tw-items-center"><IconExclamationMarkCircle filled size="Size16"/><span>Tooltip trigger</span></button>}
  />

Full Changelog: v7.2.2...v8.0.0

v7.2.2

05 May 13:38
1105970
Compare
Choose a tag to compare

Bug Fixes

Improvements

Full Changelog: v7.2.1...v7.2.2

v7.2.1

04 May 08:07
6fc0fa1
Compare
Choose a tag to compare

Fixes

Full Changelog: v7.2.0...v7.2.1

v7.2.0

03 May 13:25
c48e7e2
Compare
Choose a tag to compare

Features

Fixes

Others

  • chore(deps): update dependency @types/react-dom to v17.0.16 by @renovate in #750
  • chore(deps): update dependency @storybook/builder-vite to v0.1.32 by @renovate in #749
  • chore(deps): lock file maintenance by @renovate in #751
  • style: hide overflow from image by @SamuelAlev in #748

New Contributors

Full Changelog: v7.1.1...v7.2.0

v7.1.1

29 Apr 09:15
8b50508
Compare
Choose a tag to compare

Improvements

Full Changelog: v7.1.0...v7.1.1

v7.1.0

27 Apr 09:55
dd20b29
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.0.1...v7.1.0

v7.0.1

26 Apr 08:11
37c531e
Compare
Choose a tag to compare

Fixes

  • fix(LinkChooser & AssetChooser): adjust width on resize by @Walkeezy in #741

Others

Full Changelog: v7.0.0...v7.0.1

v7.0.0

22 Apr 09:42
a565855
Compare
Choose a tag to compare

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

v6.4.1

20 Apr 08:22
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.4.0...v6.4.1