calcite-components-angular is released with calcite-components 1.11.0!
I got an issue with ElementRef: nativeElement of ElementRef is undefined.
// alert.component.html
<calcite-alert #alertNode kind="danger" icon label="An report alert" scale="m">
<div slot="title">{{alertService.alert.title}}</div>
<div slot="message">{{alertService.alert.message}}</div>
</calcite-alert>
// alert.component.ts
ViewChild('alertNode', { static: true })
private alertRef!: ElementRef;
this.alertRef.nativeElement is undefined.