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
.