From fab580743551099bb81b6d88b9a93d57b57e27c9 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 29 Jun 2024 12:05:14 +0900 Subject: [PATCH] fix: update component to latest --- src/pswui/components/Button.tsx | 3 ++- src/pswui/components/Popover.tsx | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/pswui/components/Button.tsx b/src/pswui/components/Button.tsx index 586027b..b197662 100644 --- a/src/pswui/components/Button.tsx +++ b/src/pswui/components/Button.tsx @@ -2,6 +2,7 @@ import React from "react"; import { vcn, VariantProps, Slot, AsChild } from "@pswui-lib"; const colors = { + disabled: "disabled:brightness-50 disabled:cursor-not-allowed disabled:opacity-50 disabled:saturate-50", outline: { focus: "dark:focus-visible:outline-white/20 focus-visible:outline-black/10", }, @@ -26,7 +27,7 @@ const colors = { }; const [buttonVariants, resolveVariants] = vcn({ - base: `w-fit flex flex-row items-center justify-between rounded-md outline outline-1 outline-transparent outline-offset-2 ${colors.outline.focus} transition-all`, + base: `w-fit flex flex-row items-center justify-between rounded-md outline outline-1 outline-transparent outline-offset-2 ${colors.outline.focus} ${colors.disabled} transition-all cursor-pointer`, variants: { size: { link: "p-0 text-base", diff --git a/src/pswui/components/Popover.tsx b/src/pswui/components/Popover.tsx index 4f2ff0e..de29b7b 100644 --- a/src/pswui/components/Popover.tsx +++ b/src/pswui/components/Popover.tsx @@ -107,8 +107,11 @@ const PopoverContent = React.forwardRef( const internalRef = useRef(null); useEffect(() => { - function handleOutsideClick(e: any) { - if (internalRef.current && !internalRef.current.contains(e.target)) { + function handleOutsideClick(e: MouseEvent) { + if ( + internalRef.current && + !internalRef.current.contains(e.target as Node | null) + ) { setState((prev) => ({ ...prev, opened: false })); } }