From 8e94a0bea523549e7644a4bfd9a3f0621d6ffed0 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Tue, 18 Mar 2025 09:05:19 +0100 Subject: [PATCH 1/2] N-FIN-98: update related shadcn components --- bun.lockb | Bin 227574 -> 227574 bytes package.json | 2 +- src/components/ui/button.tsx | 6 +++--- src/components/ui/calendar.tsx | 18 +++++++++--------- src/components/ui/popover.tsx | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/bun.lockb b/bun.lockb index adb22c8a39522ad9e371a6d22fd315260e14e304..f9b5b089d2018a657bc10b0d79af3916262ef413 100755 GIT binary patch delta 25 hcmezNk@wq2-i8*&Elh817|q(>*)VN?XT!{40|2Bg3f}+# delta 25 hcmezNk@wq2-i8*&Elh817){#W*)VN?XT!{40|2BK3f%wz diff --git a/package.json b/package.json index bd7a404..5cb533a 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@radix-ui/react-dropdown-menu": "^2.1.4", "@radix-ui/react-label": "^2.1.1", "@radix-ui/react-navigation-menu": "^1.2.3", - "@radix-ui/react-popover": "^1.1.4", + "@radix-ui/react-popover": "^1.1.6", "@radix-ui/react-scroll-area": "^1.2.2", "@radix-ui/react-select": "^2.1.4", "@radix-ui/react-separator": "^1.1.1", diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index 6170dc8..48a63a3 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -5,7 +5,7 @@ import { cva, type VariantProps } from 'class-variance-authority'; import { cn } from '@/lib/utils'; const buttonVariants = cva( - 'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50', + 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0', { variants: { variant: { @@ -40,11 +40,11 @@ export interface ButtonProps } const Button = React.forwardRef( - ({className, variant, size, asChild = false, ...props}, ref) => { + ({ className, variant, size, asChild = false, ...props }, ref) => { const Comp = asChild ? Slot : 'button'; return ( diff --git a/src/components/ui/calendar.tsx b/src/components/ui/calendar.tsx index ae0a208..bec83b7 100644 --- a/src/components/ui/calendar.tsx +++ b/src/components/ui/calendar.tsx @@ -10,11 +10,11 @@ import { buttonVariants } from '@/components/ui/button'; export type CalendarProps = React.ComponentProps function Calendar({ - className, - classNames, - showOutsideDays = true, - ...props -}: CalendarProps) { + className, + classNames, + showOutsideDays = true, + ...props + }: CalendarProps) { return ( ( + IconLeft: ({ className, ...props }) => ( ), - IconRight: ({className, ...props}) => ( + IconRight: ({ className, ...props }) => ( ), }} diff --git a/src/components/ui/popover.tsx b/src/components/ui/popover.tsx index a84f99c..fe8c832 100644 --- a/src/components/ui/popover.tsx +++ b/src/components/ui/popover.tsx @@ -12,7 +12,7 @@ const PopoverTrigger = PopoverPrimitive.Trigger; const PopoverContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef ->(({className, align = 'center', sideOffset = 4, ...props}, ref) => ( +>(({ className, align = 'center', sideOffset = 4, ...props }, ref) => ( Date: Tue, 18 Mar 2025 09:05:37 +0100 Subject: [PATCH 2/2] N-FIN-98: remove initialFocus attribute --- src/components/form/paymentForm.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/form/paymentForm.tsx b/src/components/form/paymentForm.tsx index 3963d75..c4f968f 100644 --- a/src/components/form/paymentForm.tsx +++ b/src/components/form/paymentForm.tsx @@ -125,10 +125,7 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas { - field.onChange(e); - }} - initialFocus + onSelect={field.onChange} />