constructor(private overlay: Overlay, private viewContainerRef:ViewContainerRef) {}
Следует добавить viewContainerRef при инициализации компонента
ngOnInit() {
this.overlayRef = this.overlay.create({ hasBackdrop: true });
this.formComponentPortal = new ComponentPortal(FormComponent, this.viewContainerRef);
}
и событие закрытия кнопки
public onButtonClose() {
this.overlayRef.detach();
}