clauderic / dnd-kit

The modern, lightweight, performant, accessible and extensible drag & drop toolkit for React.
http://dndkit.com
MIT License
11.9k stars 602 forks source link

`items` prop of SortableContext should be ReadonlyArray #1399

Open wand2016 opened 1 month ago

wand2016 commented 1 month ago

https://github.com/clauderic/dnd-kit/blob/694dcc2f62e5269541fc941fa6c9af46ccd682ad/packages/sortable/src/components/SortableContext.tsx#L11

In order to pass immutable array data, items prop should be:

ReadonlyArray<UniqueIdentifier | {
  id: UniqueIdentifier;
}>;