You can open your custom popup by disabling the default one in the popupOpen event like below.
public onPopupOpen(args: PopupOpenEventArgs): void {
if (args.type === 'QuickInfo') {
args.cancel = true;
/// You can open your custom popup here
}
}
Sample: https://stackblitz.com/edit/angular-vvozcn?file=app.component.ts