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