Skip to content

v124.0.0

Compare
Choose a tag to compare
@cozy-bot cozy-bot released this 22 May 08:36
· 76 commits to master since this release

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.