This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { SortingStrategy } from "@dnd-kit/sortable"; | |
| /** | |
| * Custom sortable strategy where anchored items act as immovable rocks. | |
| * | |
| * The default `verticalListSortingStrategy` cascades every item between | |
| * activeIndex and overIndex by one row. That's wrong when some slots are | |
| * anchored (completed/past) — those should stay put while only the movable | |
| * slots reshuffle around them. | |
| * |