* Removes an item from the container after it was dragged into another container by the user. * @param item Item that was dragged out.
(item: DragRef)
| 287 | * @param item Item that was dragged out. |
| 288 | */ |
| 289 | exit(item: DragRef): void { |
| 290 | this._reset(); |
| 291 | this.exited.next({item, container: this}); |
| 292 | } |
| 293 | |
| 294 | /** |
| 295 | * Drops an item into this container. |
no test coverage detected