refactor: use excludeClassName instead of includeClassName in vcn resolve option
This commit is contained in:
parent
376ccc724f
commit
99151f13f2
@ -25,7 +25,7 @@ export function vcn<V extends Record<string, Record<string, string>>>({
|
|||||||
(
|
(
|
||||||
anyProps: Record<string, any>,
|
anyProps: Record<string, any>,
|
||||||
options?: {
|
options?: {
|
||||||
includeClassName?: boolean;
|
excludeClassName?: boolean;
|
||||||
}
|
}
|
||||||
) => [RawVariantProps<V> & { className?: string }, Record<string, any>],
|
) => [RawVariantProps<V> & { className?: string }, Record<string, any>],
|
||||||
] {
|
] {
|
||||||
@ -52,7 +52,7 @@ export function vcn<V extends Record<string, Record<string, string>>>({
|
|||||||
([variantProps, otherProps], [key, value]) => {
|
([variantProps, otherProps], [key, value]) => {
|
||||||
if (
|
if (
|
||||||
variantKeys.includes(key) ||
|
variantKeys.includes(key) ||
|
||||||
(options.includeClassName && key === "className")
|
(!options.excludeClassName && key === "className")
|
||||||
) {
|
) {
|
||||||
return [{ ...variantProps, [key]: value }, otherProps];
|
return [{ ...variantProps, [key]: value }, otherProps];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user