fix: add type safety for other props after variant resolved

This commit is contained in:
p-sw 2024-05-19 12:52:26 +09:00
parent 99151f13f2
commit 8e1cabba2c

View File

@ -22,12 +22,15 @@ export function vcn<V extends Record<string, Record<string, string>>>({
};
}): [
(variantProps: RawVariantProps<V> & { className?: string }) => string,
(
anyProps: Record<string, any>,
<AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve,
options?: {
excludeClassName?: boolean;
}
) => [RawVariantProps<V> & { className?: string }, Record<string, any>],
) => [
RawVariantProps<V> & { className?: string },
Omit<AnyPropBeforeResolve, keyof RawVariantProps<V> | "className">,
],
] {
return [
({ className, ...variantProps }) => {
@ -59,7 +62,10 @@ export function vcn<V extends Record<string, Record<string, string>>>({
return [variantProps, { ...otherProps, [key]: value }];
},
[{}, {}]
);
) as [
RawVariantProps<V> & { className?: string },
Omit<typeof anyProps, keyof RawVariantProps<V> | "className">,
];
},
];
}