From 8e1cabba2cb74fb0b72dc0ae3761b2e38af5f354 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 19 May 2024 12:52:26 +0900 Subject: [PATCH] fix: add type safety for other props after variant resolved --- packages/react/shared.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/packages/react/shared.ts b/packages/react/shared.ts index bff6174..8652051 100644 --- a/packages/react/shared.ts +++ b/packages/react/shared.ts @@ -22,12 +22,15 @@ export function vcn>>({ }; }): [ (variantProps: RawVariantProps & { className?: string }) => string, - ( - anyProps: Record, + >( + anyProps: AnyPropBeforeResolve, options?: { excludeClassName?: boolean; } - ) => [RawVariantProps & { className?: string }, Record], + ) => [ + RawVariantProps & { className?: string }, + Omit | "className">, + ], ] { return [ ({ className, ...variantProps }) => { @@ -59,7 +62,10 @@ export function vcn>>({ return [variantProps, { ...otherProps, [key]: value }]; }, [{}, {}] - ); + ) as [ + RawVariantProps & { className?: string }, + Omit | "className">, + ]; }, ]; }