fix(Popover): add pointer-events class on opened condition

This commit is contained in:
p-sw 2024-06-30 14:10:09 +09:00
parent 113366d27c
commit c1289b63ea

View File

@ -80,8 +80,8 @@ const [popoverContentVariant, resolvePopoverContentVariantProps] = vcn({
lg: "[--popover-offset:8px]",
},
opened: {
true: "opacity-1 scale-100", // TODO: add pointer event disable
false: "opacity-0 scale-75",
true: "opacity-1 scale-100 pointer-events-auto select-auto touch-auto",
false: "opacity-0 scale-75 pointer-events-none select-none touch-none",
},
},
defaults: {