I use @angular/cdk/drag-drop module in my app. Dragging and dropping works as expected, but I want to do some actions when drag item is on top of drop area.
I tried this code, but it seems that onDragOver method is not called
<div cdkDropList>
<span (dragover)="onDragOver($event)">...</span>
<div>
onDragOver($event){
console.log('ondragover');
}
Is there any built in way in @angular/cdk/drag-drop to achieve this?