refactor: remove option to disable excluding

This commit is contained in:
p-sw 2024-05-21 19:36:22 +09:00
parent 694ee880f3
commit 9aa861fe19

View File

@ -143,18 +143,15 @@ export function vcn<V extends VariantType, N extends string>({
* Otherwise, it will parse A as variant props. * Otherwise, it will parse A as variant props.
* *
* @param anyProps - Any props that have passed to the component. * @param anyProps - Any props that have passed to the component.
* @param options - Options.
* @returns [variantProps, otherProps] * @returns [variantProps, otherProps]
*/ */
(anyProps, options = {}) => { (anyProps) => {
const variantKeys = Object.keys(variants) as (keyof V)[]; const variantKeys = Object.keys(variants) as (keyof V)[];
return Object.entries(anyProps).reduce( return Object.entries(anyProps).reduce(
([variantProps, otherProps], [key, value]) => { ([variantProps, otherProps], [key, value]) => {
if ( if (
variantKeys.includes(key) || variantKeys.includes(key)
(!options.excludeClassName && key === "className") ||
(!options.excludePreset && key === "preset")
) { ) {
return [{ ...variantProps, [key]: value }, otherProps]; return [{ ...variantProps, [key]: value }, otherProps];
} }
@ -162,8 +159,8 @@ export function vcn<V extends VariantType, N extends string>({
}, },
[{}, {}] [{}, {}]
) as [ ) as [
Partial<VariantKV<V>> & { className?: string }, Partial<VariantKV<V>>,
Omit<typeof anyProps, keyof Partial<VariantKV<V>> | "className">, Omit<typeof anyProps, keyof Partial<VariantKV<V>> | "preset" | "className">,
]; ];
}, },
]; ];