I have a abc component (part of the page). It has an event mouseup.
@Component({ selector: \'abc-component\' }) @View({
Add a global event target like
to listen to events globally. (body and document work as well).
body
document
This works of course also in the components class
@HostListener('window:mouseup', ['$event']) mouseUp(event){}