I have a text input inside a div. Clicking on the input should set it to focus and stop the bubbling of the div click event. I\'ve tried the stopPropagation and
stopPropagation
Try with (click)="$event.stopPropagation()". It might help as it worked for me in my scenario.