Skip to content

Releases: cozy/cozy-ui

v126.0.0

11 Jun 14:49
Compare
Choose a tag to compare

126.0.0 (2025-06-11)

Features

  • Add new QualificationIcon and use it in QualificationModal (65cadc4)
  • Remove QualificationIconStack component (d520f80)

BREAKING CHANGES

  • You must replace QualificationIconStack by QualificationIcon

v125.1.0

11 Jun 14:31
Compare
Choose a tag to compare

125.1.0 (2025-06-11)

Bug Fixes

  • Dialog: Width wasn't correct for small screens (0951f70)

Features

  • BreakpointsProvider: Add parentBasedIframe prop (4a49946)

v125.0.0

05 Jun 12:08
Compare
Choose a tag to compare

125.0.0 (2025-06-05)

Features

  • Dialogs: Add 50ms delay before showing backdrop (868c2b7)
  • Layout: Add refs on. Layout, Main and Content (98ab20e)
  • Layout: Always use background-color for Content (f510fd0)
  • Layout: Move style into sidebar and isolate layout styles (f9045e9)

BREAKING CHANGES

  • Layout: Layout doesn't apply style on Main and Content anymore, they have their own styles now. So if you didn't use these components but, for example, <main> instead of <Main> and <div role="main"> instead of <Content>, you could have a style problem. So prefer Main and Content components.

v124.2.0

02 Jun 13:40
Compare
Choose a tag to compare

124.2.0 (2025-06-02)

Features

  • Layout: Spaces and responsive behavior wasn't correct (3ad1a51)

v124.1.1

27 May 07:34
Compare
Choose a tag to compare

124.1.1 (2025-05-27)

Bug Fixes

  • Icons: cloud2 wasn't correct (f846901)

v124.1.0

26 May 14:40
Compare
Choose a tag to compare

124.1.0 (2025-05-26)

Features

  • Icons: Add cloud2, discuss, email-open, key2, peoples, secutiry (76b2dff)

v124.0.0

22 May 08:36
Compare
Choose a tag to compare

124.0.0 (2025-05-22)

Features

  • Add dragndrop on virtualized table (519e610)
  • Add react-dnd (4f2805e)
  • Add react-virtuoso (e121afe)
  • Add Virtual table example and adjust style (9cc9506)
  • Filename: Add path and rework icon (35a8459)
  • Memo rows and cells (bae4212)
  • TableRow: Add disabled style (2a0d626)
  • Upgrade react (fe320be)
  • VirtualizedTable: Add selection props (f819531)

BREAKING CHANGES

  • You have to add react-dnd ^16.0.1 and react-dnd-html5-backend ^16.0.1 to use dragndrop on virtualized table. Typically if you use dragProps: {{ enabled: true }} on react/Table/Virtualized component.
    You also need to wrap your table into the DnD Provider like so:
import { DndProvider } from 'react-dnd'
import { HTML5Backend } from 'react-dnd-html5-backend'

<DndProvider backend={HTML5Backend}>...</DndProvider>
  • Filename: You must use <Icon /> component to use icon prop. So replace <Filename icon={something} /> by <Filename icon={<Icon icon={something} />} />
  • You must have react ^16.14.0 and react-dom ^16.14.0.

v123.2.1

20 May 07:43
Compare
Choose a tag to compare

123.2.1 (2025-05-20)

Bug Fixes

  • Don't register Flagship UI on ActionsMenu until opened (87def0d)

v123.2.0

15 May 07:40
Compare
Choose a tag to compare

123.2.0 (2025-05-15)

Features

  • update new UI illustration (420fd31)

v123.1.1

14 May 12:15
Compare
Choose a tag to compare

123.1.1 (2025-05-14)

Bug Fixes

  • Missed some props on SVG Icons (Cube and Spinner) (c877409)