From 9f529b44f79b85488a2df98fe0d93cfd1d1c2a04 Mon Sep 17 00:00:00 2001
From: casperiv <53900565+casperiv0@users.noreply.github.com>
Date: Thu, 30 Apr 2026 14:38:35 +0200
Subject: [PATCH] chore: export Popover Portal comp
---
packages/ui/src/components/ui/popover.tsx | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/packages/ui/src/components/ui/popover.tsx b/packages/ui/src/components/ui/popover.tsx
index 78724df..1277829 100644
--- a/packages/ui/src/components/ui/popover.tsx
+++ b/packages/ui/src/components/ui/popover.tsx
@@ -9,6 +9,10 @@ function Popover({ ...props }: PopoverPrimitive.Root.Props) {
return
}
+function PopoverPortal({ ...props }: PopoverPrimitive.Portal.Props) {
+ return
+}
+
function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props) {
return
}
@@ -82,6 +86,7 @@ function PopoverDescription({
export {
Popover,
+ PopoverPortal,
PopoverContent,
PopoverDescription,
PopoverHeader,