diff --git a/packages/react/shared.ts b/packages/react/shared.ts index 957fdd6..9defa43 100644 --- a/packages/react/shared.ts +++ b/packages/react/shared.ts @@ -76,12 +76,11 @@ type VariantKV = { * } * ``` */ -type PresetType = Record< - string, - Partial> & { className?: string } ->; +type PresetType = { + [PresetName in N]: Partial> & { className?: string }; +}; -export function vcn({ +export function vcn({ base, variants, defaults, @@ -90,12 +89,12 @@ export function vcn({ base?: string | undefined; variants: V /* VariantType */; defaults: VariantKV; - presets?: PresetType; + presets?: PresetType; }): [ ( variantProps: Partial> & { className?: string; - preset?: keyof PresetType; + preset?: N | undefined; } ) => string, >( @@ -107,7 +106,7 @@ export function vcn({ ) => [ Partial> & { className?: string; - preset?: keyof PresetType; + preset?: N | undefined; }, Omit< AnyPropBeforeResolve, @@ -124,7 +123,7 @@ export function vcn({ * @returns The class name. */ ({ className, preset, ...variantProps }) => { - const currentPreset: PresetType[string] | null = + const currentPreset: PresetType[N] | null = presets && preset ? presets[preset] ?? null : null; const presetVariantKeys: (keyof V)[] = Object.keys(currentPreset ?? {}); return twMerge( @@ -191,7 +190,7 @@ export function vcn({ * } * ``` */ -export type VariantProps[0]> = F extends ( +export type VariantProps string> = F extends ( props: infer P ) => string ? P