Hover cardPreview content on hover (Angular CDK). Preview Code ⧉ Copy hover me import { BuiHoverCard, BuiHoverCardContent } from 'ng-blatui'; <span [buiHoverCard]="tpl">@username</span> <ng-template #tpl> <div buiHoverCardContent>Profile preview content…</div> </ng-template>User card Preview Code ⧉ Copy@sofia<a buiButton variant="link" [buiHoverCard]="tpl">@sofia</a> <ng-template #tpl> <div buiHoverCardContent class="w-72"> <div class="flex gap-3"><bui-avatar>SC</bui-avatar> Sofia Carter — Product designer.</div> </div> </ng-template>Instant Preview Code ⧉ Copy hover me (no delay) <!-- [openDelay]="0" opens immediately --> <span [buiHoverCard]="tpl" [openDelay]="0">hover me</span>