From edb43b301ad6219b1125336f9b03e999e64f04ed Mon Sep 17 00:00:00 2001 From: techmannih Date: Fri, 26 Jun 2026 10:39:05 +0530 Subject: [PATCH] Add footprintVariant to chip props and schema --- lib/components/chip.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/components/chip.ts b/lib/components/chip.ts index e756f85d..c37e7b36 100644 --- a/lib/components/chip.ts +++ b/lib/components/chip.ts @@ -44,6 +44,7 @@ export interface ChipPropsSU< PinLabel extends SchematicPinLabel = SchematicPinLabel, > extends CommonComponentProps { manufacturerPartNumber?: string + footprintVariant?: string pinLabels?: PinLabelsProp /** * Whether to show pin aliases in the schematic @@ -155,6 +156,7 @@ export const pinCompatibleVariant = z.object({ export const chipProps = commonComponentProps.extend({ manufacturerPartNumber: z.string().optional(), + footprintVariant: z.string().optional(), pinLabels: pinLabelsProp.optional(), showPinAliases: z.boolean().optional(), pcbPinLabels: z.record(z.string(), z.string()).optional(),