diff --git a/packages/react/shared.ts b/packages/react/shared.ts index 1eeb951..da5688c 100644 --- a/packages/react/shared.ts +++ b/packages/react/shared.ts @@ -20,25 +20,51 @@ export function vcn>>({ defaults: { [VariantKey in keyof V]: BooleanString; }; -}): (variantProps: RawVariantProps & { className?: string }) => string { - return ({ className, ...variantProps }) => { - return twMerge( - base, - ...( - Object.entries(defaults) as [keyof V, keyof V[keyof V]][] - ).map( - ([variantKey, defaultValue]) => - variants[variantKey][ - (variantProps as unknown as RawVariantProps)[variantKey] ?? - defaultValue - ] - ), - className - ); - }; +}): [ + (variantProps: RawVariantProps & { className?: string }) => string, + ( + anyProps: Record, + options?: { + includeClassName?: boolean; + } + ) => [RawVariantProps & { className?: string }, Record], +] { + return [ + ({ className, ...variantProps }) => { + return twMerge( + base, + ...( + Object.entries(defaults) as [keyof V, keyof V[keyof V]][] + ).map( + ([variantKey, defaultValue]) => + variants[variantKey][ + (variantProps as unknown as RawVariantProps)[variantKey] ?? + defaultValue + ] + ), + className + ); + }, + (anyProps, options = {}) => { + const variantKeys = Object.keys(variants) as (keyof V)[]; + + return Object.entries(anyProps).reduce( + ([variantProps, otherProps], [key, value]) => { + if ( + variantKeys.includes(key) || + (options.includeClassName && key === "className") + ) { + return [{ ...variantProps, [key]: value }, otherProps]; + } + return [variantProps, { ...otherProps, [key]: value }]; + }, + [{}, {}] + ); + }, + ]; } -export type VariantProps> = F extends ( +export type VariantProps[0]> = F extends ( props: infer P ) => string ? P