fix: add type safety for other props after variant resolved
This commit is contained in:
parent
99151f13f2
commit
8e1cabba2c
@ -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">,
|
||||
];
|
||||
},
|
||||
];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user