We use cookies to ensure you get the best experience on our website. Read our privacy policy

Skip to main content

Directory

Popover Component

The Popover component creates contextual overlays that appear next to a trigger element. It features smart positioning, smooth animations, and comprehensive accessibility support.

  • Check Circle

    Smart Positioning: Automatically adjusts to stay within viewport

  • Check Circle

    Multiple Alignments: Start, center, or end alignment options

  • Check Circle

    Keyboard Support: Full keyboard navigation and accessibility

  • Check Circle

    Click Outside: Automatic closing when clicking outside

Create a simple popover with default settings:

<Popover>
<p>Open Popover</p>
<p>This is the popover content.</p>
</Popover>
<Popover position="above">
<p slot="trigger">Above</p>
<div class="w-max modal p-4">
<p>Appears above the trigger</p>
</div>
</Popover>
<Popover position="below" alignment="center">
<p slot="trigger">Center</p>
<div class="w-max modal p-4">
<p>Center aligned content</p>
</div>
</Popover>
Popover Component Props
Prop Type Default Description
alignment 'start' | 'center' | 'end' start Alignment of the popover
buttonProps ButtonProps Props for trigger button
absoluteProps HTMLDivElement Props for absolute container
position 'above' | 'below' | 'left' | 'right' below Position relative to trigger
variant 'default' | 'none' default Visual style variant

The Popover component exposes methods for programmatic control:

// Get popover instance
const popover = document.querySelector('popover-wrapper');
// Show popover
popover.toggle(true);
// Hide popover
popover.toggle(false);
// Toggle popover
popover.toggle();
Modals
Dropdown Menus
Input Panels

Limited Time Launch Sale

Add interactive popovers to your website with our AstroJS starter template. Get started now!

GET 60% OFF!
North Star Themes Logo

Subscribe to our newsletter

Get the latest AstroJS tips and tricks right to your inbox

Email: [email protected]

© 2025 North Star Themes

Web Kit Provided By North Star Themes