I'm attempting to use the primeng block UI component to block one panel. The example uses p-panel as the wrapper and I've implemented it like this:
<p-blockUI [blocked]="blockUI" [target]="pnl"></p-blockUI>
<p-panel #pnl [showHeader]="false">
<div [class]="myPanelClass" *ngIf="data?.IsVisible">
<p-card [style]="{'width': '100%', 'height': '365px', 'margin-top': '10px'}">
<app-component></app-component>
</p-card>
</div>
</p-panel>
The problem is that adding the p-panel around my existing "div" throws everything off because of the p-panel's styling. Is there another component that would act like a simple "div" that could be used?