Popover
Overlay flotante anclado a un disparador con texto o plantilla y posicionamiento adaptativo
TypeScript
import { NeuPopoverDirective } from '@neural-ui/core/popover';Texto simple (hover)
Plantilla (clic)
Trigger focus
HTML
<button
neuPopoverText="Información adicional"
neuPopoverPosition="top"
neuPopoverTrigger="hover"
>
Pasa el ratón
</button>
<!-- Con plantilla / With template -->
<button [neuPopover]="myTemplate" neuPopoverPosition="bottom">
Ver detalles
</button>
<ng-template #myTemplate>
<div style="padding: 12px">
Contenido <strong>enriquecido</strong>
</div>
</ng-template>