<script setup lang="ts">
import { APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverTrigger
class="text-sm color-text p-1.5 rounded-md inline-flex ring ring-ring-accented ring-inset shadow-md transition-colors-280 items-center focus-visible:bg-background-elevated hover:bg-background-elevated"
>
<i class="i-lucide:info" />
</APopoverTrigger>
<APopoverPortal>
<APopoverContent
side="bottom"
:side-offset="5"
class="rounded-md bg-background pointer-events-auto ring ring-ring shadow-lg origin-$akar-popover-content-transform-origin focus:outline-none data-[state=closed]:(animate-out fade-out-0 zoom-out-95) data-[state=open]:(animate-in fade-in-0 zoom-in-95) data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2"
>
<CorePlaceholder class="m-4 inline-flex size-48" />
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
Import all parts and piece them together.
<script setup>
import { APopoverAnchor, APopoverArrow, APopoverClose, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverTrigger />
<APopoverAnchor />
<APopoverPortal>
<APopoverContent>
<APopoverClose />
<APopoverArrow />
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
One benefit of using Akar is its flexibility and low-level control over the components. However, this also means that you may need to manually construct more complex UI elements by combining multiple Akar components together.
If you feel there's a lot of elements that needs to be constructed manually using Akar, consider using Pohon UI instead. It provides a higher-level abstraction over Akar components with pre-defined styles and behaviors that can help you build UIs faster.
Contains all the parts of a popover.
| Prop | Default | Type |
|---|---|---|
defaultOpen | false | booleanThe open state of the popover when it is initially rendered. Use when you do not need to control its open state. |
modal | false | booleanThe modality of the popover. When set to true, interaction with outside elements will be disabled and only popover content will be visible to screen readers. |
open | boolean |
| Event | Type |
|---|---|
update:open | [value: boolean]Event handler called when the open state of the popover changes. |
| Slot | Type |
|---|---|
open | booleanThe controlled open state of the popover. |
close | (): voidClose the popover |
The button that toggles the popover. By default, the APopoverContent will position itself against the trigger.
| Prop | Default | Type |
|---|---|---|
as | 'button' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. |
| Attribute | Value |
|---|---|
[data-state] | 'open' | 'closed' |
An optional element to position the APopoverContent against. If this part is not used, the content will position alongside the APopoverTrigger.
| Prop | Default | Type |
|---|---|---|
as | 'div' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
reference | ReferenceElementThe reference (or anchor) element that is being referred to for positioning. If not provided will use the current component as anchor. |
When used, portals the content part into the body.
| Prop | Default | Type |
|---|---|---|
defer | booleanDefer the resolving of a Teleport target until other parts of the application have mounted (requires Vue 3.5.0+) {@link https://vuejs.org/guide/built-ins/teleport.html#deferred-teleport} | |
disabled | booleanDisable teleport and render the component inline {@link https://vuejs.org/guide/built-ins/teleport.html#disabling-teleport} | |
forceMount | booleanUsed to force mounting when more control is needed. Useful when controlling animation with Vue animation libraries. | |
to | string | HTMLElementVue native teleport component prop {@link https://vuejs.org/guide/built-ins/teleport.html#basic-usage} |
The component that pops out when the popover is open.
| Prop | Default | Type |
|---|---|---|
as | 'div' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
align | 'start' | 'center' | 'end'The preferred alignment against the trigger. May change when collisions occur. | |
alignFlip | booleanFlip alignment when colliding with boundary.
May only occur when | |
alignOffset | numberAn offset in pixels from the | |
arrowPadding | numberThe padding between the arrow and the edges of the content. If your content has border-radius, this will prevent it from overflowing the corners. | |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
avoidCollisions | booleanWhen | |
collisionBoundary | Element | (Element | null)[] | nullThe element used as the collision boundary. By default this is the viewport, though you can provide additional element(s) to be included in this check. | |
collisionPadding | number | Partial<Record<Side, number>>The distance in pixels from the boundary edges where collision detection should occur. Accepts a number (same for all sides), or a partial padding object, for example: { top: 20, left: 20 }. | |
disableOutsidePointerEvents | booleanWhen | |
disableUpdateOnLayoutShift | booleanWhether to disable the update position for the content when the layout shifted. | |
forceMount | booleanUsed to force mounting when more control is needed. Useful when controlling animation with Vue animation libraries. | |
hideWhenDetached | booleanWhether to hide the content when the trigger becomes fully occluded. | |
positionStrategy | 'fixed' | 'absolute'The type of CSS position property to use. | |
prioritizePosition | booleanForce content to be position within the viewport. Might overlap the reference element, which may not be desired. | |
reference | ReferenceElementThe reference (or anchor) element that is being referred to for positioning. If not provided will use the current component as anchor. | |
side | 'top' | 'right' | 'bottom' | 'left'The preferred side of the trigger to render against when open. Will be reversed when collisions occur and avoidCollisions is enabled. | |
sideFlip | booleanFlip to the opposite side when colliding with boundary. | |
sideOffset | numberThe distance in pixels from the trigger. | |
sticky | 'always' | 'partial'The sticky behavior on the align axis. | |
trapFocus | booleanWhether focus should be trapped within the | |
updatePositionStrategy | 'always' | 'optimized'Strategy to update the position of the floating element on every animation frame. |
| Event | Type |
|---|---|
closeAutoFocus | [event: Event]Event handler called when auto-focusing on close. Can be prevented. |
escapeKeyDown | [event: KeyboardEvent] |
focusOutside | [event: FocusOutsideEvent] |
interactOutside | [event: PointerDownOutsideEvent | FocusOutsideEvent] |
openAutoFocus | [event: Event]Event handler called when auto-focusing on open. Can be prevented. |
pointerDownOutside | [event: PointerDownOutsideEvent] |
| Attribute | Value |
|---|---|
[data-state] | 'open' | 'closed' |
[data-side] | 'left' | 'right' | 'bottom' | 'top' |
[data-align] | 'start' | 'end' | 'center' |
| Variable | Description |
|---|---|
--akar-popover-content-transform-origin | The |
--akar-popover-content-available-width | The remaining width between the trigger and the boundary edge |
--akar-popover-content-available-height | The remaining height between the trigger and the boundary edge |
--akar-popover-trigger-width | The width of the trigger |
--akar-popover-trigger-height | The height of the trigger |
An optional arrow element to render alongside the popover. This can be used to help visually link the anchor with the APopoverContent. Must be rendered inside APopoverContent.
| Prop | Default | Type |
|---|---|---|
as | 'svg' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
height | 5 | numberThe height of the arrow in pixels. |
rounded | booleanWhen | |
width | 10 | numberThe width of the arrow in pixels. |
The button that closes an open popover.
| Prop | Default | Type |
|---|---|---|
as | 'button' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. |
You may want to constrain the width of the content so that it matches the trigger width. You may also want to constrain its height to not exceed the viewport.
We expose several CSS custom properties such as --akar-popover-trigger-width and --akar-popover-content-available-height to support this. Use them to constrain the content dimensions.
<script setup>
import { APopoverArrow, APopoverClose, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverTrigger>…</APopoverTrigger>
<APopoverPortal>
<APopoverContent
class="APopoverContent"
:side-offset="5"
>
…
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
/* styles.css */
.APopoverContent {
width: var(--akar-popover-trigger-width);
max-height: var(--akar-popover-content-available-height);
}
We expose a CSS custom property --akar-popover-content-transform-origin. Use it to animate the content from its computed origin based on side, sideOffset, align, alignOffset and any collisions.
<script setup>
import { APopoverArrow, APopoverClose, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverTrigger>…</APopoverTrigger>
<APopoverPortal>
<APopoverContent class="APopoverContent">
…
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
/* styles.css */
.APopoverContent {
transform-origin: var(--akar-popover-content-transform-origin);
animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
from {
opacity: 0;
transform: scale(0);
}
to {
opacity: 1;
transform: scale(1);
}
}
We expose data-side and data-align attributes. Their values will change at runtime to reflect collisions. Use them to create collision and direction-aware animations.
<script setup>
import { APopoverArrow, APopoverClose, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverTrigger>…</APopoverTrigger>
<APopoverPortal>
<APopoverContent class="APopoverContent">
…
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
/* styles.css */
.APopoverContent {
animation-duration: 0.6s;
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.APopoverContent[data-side='top'] {
animation-name: slideUp;
}
.APopoverContent[data-side='bottom'] {
animation-name: slideDown;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
You can anchor the content to another element if you do not want to use the trigger as the anchor.
<script setup>
import { APopoverAnchor, APopoverArrow, APopoverClose, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot>
<APopoverAnchor as-child>
<div class="Row">
Row as anchor <APopoverTrigger>Trigger</APopoverTrigger>
</div>
</APopoverAnchor>
<APopoverPortal>
<APopoverContent>…</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
/* styles.css */
.Row {
background-color: gainsboro;
padding: 20px;
}
Alternatively, you can use the close method provided by the APopoverRoot slot props to programmatically close the popover.
<script setup>
import { APopoverAnchor, APopoverArrow, APopoverContent, APopoverPortal, APopoverRoot, APopoverTrigger } from 'akar';
</script>
<template>
<APopoverRoot v-slot="{ close }">
<APopoverTrigger>Open</APopoverTrigger>
<APopoverAnchor />
<APopoverPortal>
<APopoverContent>
<button
type="submit"
@click="close"
>
Submit
</button>
<APopoverArrow />
</APopoverContent>
</APopoverPortal>
</APopoverRoot>
</template>
Adheres to the Dialog WAI-ARIA design pattern.
| Key | Description |
|---|---|
Space | Opens/closes the popover. |
Enter | Opens/closes the popover. |
Tab | Moves focus to the next focusable element |
Shift + Tab | Moves focus to the previous focusable element |
Esc | Closes the popover and moves focus to |
Create your own API by abstracting the primitive parts into your own component.
This example abstracts the APopoverArrow part and sets a default sideOffset configuration.
<script setup lang="ts">
import { APopover, APopoverContent, APopoverTrigger } from './your-popover';
</script>
<template>
<APopover>
<APopoverTrigger>APopover trigger</APopoverTrigger>
<APopoverContent>APopover content</APopoverContent>
</APopover>
</template>
export { APopoverRoot as APopover, APopoverTrigger } from 'akar';
// your-popover.ts
export { default as APopoverContent } from 'APopoverContent.vue';
<!-- APopoverContent.vue -->
<script setup lang="ts">
import type { APopoverContentEmits, APopoverContentProps } from 'akar';
import { APopoverContent, APopoverPortal, useForwardPropsEmits } from 'akar';
const props = defineProps<APopoverContentProps>();
const emits = defineEmits<APopoverContentEmits>();
const forwarded = useForwardPropsEmits(props, emits);
</script>
<template>
<APopoverPortal>
<APopoverContent v-bind="{ ...forwarded, ...$attrs }">
<slot />
</APopoverContent>
</APopoverPortal>
</template>