Event emitted when the user removes an item from a drop container by moving it into another one.
API
interface CdkDragExit<T = any, I = T> {
container: CdkDropList<T>;
item: CdkDrag<I>;
}
container
CdkDropList<T>Container from which the user has a removed an item.
item
CdkDrag<I>Item that was removed from the container.