Releases: cozy/cozy-ui
Releases · cozy/cozy-ui
v126.0.0
v125.1.0
v125.0.0
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 preferMain
andContent
components.
v124.2.0
v124.1.1
v124.1.0
v124.0.0
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 reworkicon
(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
andreact-dnd-html5-backend ^16.0.1
to use dragndrop on virtualized table. Typically if you usedragProps: {{ enabled: true }}
onreact/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 useicon
prop. So replace<Filename icon={something} />
by<Filename icon={<Icon icon={something} />} />
- You must have
react ^16.14.0
andreact-dom ^16.14.0
.