0
 public openForgotDialog(): void {
    const dialogConfig = new MatDialogConfig();
    dialogConfig.width = '450px';
    dialogConfig.panelClass ="dialog-container";
    const dialog = this.matDialog.open(ForgotComponent, dialogConfig);
}

like this i'm calling a method to open a matdialog popup, without a animation popup has to open, crazy requirement from client

Shaik Habeeb
  • 205
  • 1
  • 5
  • 15

1 Answers1

0

https://angular.io/api/animations/trigger#disable-animations

 <div #dialogContainer [@.disabled]="true"></div>
Palak Jadav
  • 1,202
  • 1
  • 11
  • 23