Breaking change
Use (after-load-complete)="afterLoadComplete($event)
instead of [after-load-complete]="afterLoadComplete
on <pdf-viewer>
.
You do not need to bind your callback anymore.
Example of afterLoadComplete
callback:
afterLoadComplete(pdf: PDFDocumentProxy) {
this.pdf = pdf;
}