Skip to content

Popover

Popover

Overlay component for displaying rich content in a floating panel triggered by user interaction.

Import

import { Popover } from '@primitivekit/vue';

Basic Usage

<Popover>Content</Popover>

Props

No props available.

Customization

The Popover component supports CSS variables for complete customization:

<Popover style={{
  '--popover-bg-color': '#007bff',
  '--popover-text-color': '#ffffff'
}}>Custom</Popover>

Design Tokens

The following design tokens are available for customization:

  • --popover-bg-color
  • --popover-color
  • --popover-border-radius
  • --popover-border-width
  • --popover-border-color
  • --popover-box-shadow
  • --popover-padding-top
  • --popover-padding-y
  • --popover-padding-right
  • --popover-padding-x
  • … and 61 more

Accessibility

The Popover component is fully accessible and follows WCAG 2.1 AA standards:

  • ✅ Semantic HTML elements
  • ✅ Keyboard accessible
  • ✅ Focus visible indicator
  • ✅ Proper ARIA attributes
  • ✅ Screen reader compatible
  • ✅ Touch target size (44x44px minimum)
  • ✅ Color contrast compliance

Keyboard Navigation

KeyAction
TabMove focus to/from component

| Escape | Close component |

Related Components

  • Modal - Overlay component for displaying content in a dialog that requires user interaction.
  • Drawer - Overlay component for displaying a sliding panel from the edge of the screen.
  • Tooltip - Overlay component for displaying helpful information when hovering over an element.
  • Dropdown - Overlay component for displaying a menu or list of options triggered by a button.

See Also