Skip to main content
NeuralUIv1.14.3New
GitHub
Component

Popover

Floating overlay anchored to a trigger with text or template content and adaptive positioning

TypeScript
import { NeuPopoverDirective } from '@neural-ui/core/popover';
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>