Event emitted when the user swaps the position of two drag items.
API
interface CdkDragSortEvent<T = any, I = T> {
previousIndex: number;
currentIndex: number;
container: CdkDropList<T>;
item: CdkDrag<I>;
}
previousIndex
numberIndex from which the item was sorted previously.
currentIndex
numberIndex that the item is currently in.
container
CdkDropList<T>Container that the item belongs to.
item
CdkDrag<I>Item that is being sorted.