@tscircuit/props 0.0.245 → 0.0.246

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -706,9 +706,10 @@ declare const supplierProps: z.ZodObject<{
706
706
  }, {
707
707
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
708
708
  }>;
709
- interface CommonComponentProps extends CommonLayoutProps {
709
+ interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
710
710
  key?: any;
711
711
  name: string;
712
+ pinAttributes?: Record<PinLabel, Record<string, any>>;
712
713
  supplierPartNumbers?: SupplierPartNumbers;
713
714
  cadModel?: CadModelProp;
714
715
  children?: any;
@@ -972,6 +973,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
972
973
  children: z.ZodOptional<z.ZodAny>;
973
974
  symbolName: z.ZodOptional<z.ZodString>;
974
975
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
976
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
975
977
  }>, "strip", z.ZodTypeAny, {
976
978
  name: string;
977
979
  pcbX?: number | undefined;
@@ -984,6 +986,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
984
986
  footprint?: FootprintProp | undefined;
985
987
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
986
988
  key?: any;
989
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
987
990
  cadModel?: string | {
988
991
  stlUrl: string;
989
992
  rotationOffset?: number | {
@@ -1054,6 +1057,7 @@ declare const commonComponentProps: z.ZodObject<z.objectUtil.extendShape<z.objec
1054
1057
  footprint?: FootprintProp | undefined;
1055
1058
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
1056
1059
  key?: any;
1060
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
1057
1061
  cadModel?: string | {
1058
1062
  stlUrl: string;
1059
1063
  rotationOffset?: number | {
@@ -1368,6 +1372,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
1368
1372
  children: z.ZodOptional<z.ZodAny>;
1369
1373
  symbolName: z.ZodOptional<z.ZodString>;
1370
1374
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
1375
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
1371
1376
  }>, "strip", z.ZodTypeAny, {
1372
1377
  name: string;
1373
1378
  pcbX?: number | undefined;
@@ -1380,6 +1385,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
1380
1385
  footprint?: FootprintProp | undefined;
1381
1386
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
1382
1387
  key?: any;
1388
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
1383
1389
  cadModel?: string | {
1384
1390
  stlUrl: string;
1385
1391
  rotationOffset?: number | {
@@ -1450,6 +1456,7 @@ declare const componentProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
1450
1456
  footprint?: FootprintProp | undefined;
1451
1457
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
1452
1458
  key?: any;
1459
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
1453
1460
  cadModel?: string | {
1454
1461
  stlUrl: string;
1455
1462
  rotationOffset?: number | {
@@ -8045,7 +8052,7 @@ interface PinCompatibleVariant {
8045
8052
  manufacturerPartNumber?: string;
8046
8053
  supplierPartNumber?: SupplierPartNumbers;
8047
8054
  }
8048
- interface ChipPropsSU<PinLabel extends string = string> extends CommonComponentProps {
8055
+ interface ChipPropsSU<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
8049
8056
  manufacturerPartNumber?: string;
8050
8057
  pinLabels?: PinLabelsProp<string, PinLabel>;
8051
8058
  /**
@@ -8363,6 +8370,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
8363
8370
  children: z.ZodOptional<z.ZodAny>;
8364
8371
  symbolName: z.ZodOptional<z.ZodString>;
8365
8372
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
8373
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
8366
8374
  }>, {
8367
8375
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
8368
8376
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
@@ -8624,6 +8632,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
8624
8632
  footprint?: FootprintProp | undefined;
8625
8633
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
8626
8634
  key?: any;
8635
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
8627
8636
  cadModel?: string | {
8628
8637
  stlUrl: string;
8629
8638
  rotationOffset?: number | {
@@ -8770,6 +8779,7 @@ declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
8770
8779
  footprint?: FootprintProp | undefined;
8771
8780
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
8772
8781
  key?: any;
8782
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
8773
8783
  cadModel?: string | {
8774
8784
  stlUrl: string;
8775
8785
  rotationOffset?: number | {
@@ -9163,6 +9173,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
9163
9173
  children: z.ZodOptional<z.ZodAny>;
9164
9174
  symbolName: z.ZodOptional<z.ZodString>;
9165
9175
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
9176
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
9166
9177
  }>, {
9167
9178
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
9168
9179
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
@@ -9424,6 +9435,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
9424
9435
  footprint?: FootprintProp | undefined;
9425
9436
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
9426
9437
  key?: any;
9438
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
9427
9439
  cadModel?: string | {
9428
9440
  stlUrl: string;
9429
9441
  rotationOffset?: number | {
@@ -9570,6 +9582,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
9570
9582
  footprint?: FootprintProp | undefined;
9571
9583
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
9572
9584
  key?: any;
9585
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
9573
9586
  cadModel?: string | {
9574
9587
  stlUrl: string;
9575
9588
  rotationOffset?: number | {
@@ -9985,6 +9998,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
9985
9998
  children: z.ZodOptional<z.ZodAny>;
9986
9999
  symbolName: z.ZodOptional<z.ZodString>;
9987
10000
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
10001
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
9988
10002
  }>, {
9989
10003
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
9990
10004
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -10135,6 +10149,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
10135
10149
  footprint?: FootprintProp | undefined;
10136
10150
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10137
10151
  key?: any;
10152
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
10138
10153
  cadModel?: string | {
10139
10154
  stlUrl: string;
10140
10155
  rotationOffset?: number | {
@@ -10250,6 +10265,7 @@ declare const jumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
10250
10265
  footprint?: FootprintProp | undefined;
10251
10266
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10252
10267
  key?: any;
10268
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
10253
10269
  cadModel?: string | {
10254
10270
  stlUrl: string;
10255
10271
  rotationOffset?: number | {
@@ -10620,6 +10636,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
10620
10636
  children: z.ZodOptional<z.ZodAny>;
10621
10637
  symbolName: z.ZodOptional<z.ZodString>;
10622
10638
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
10639
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
10623
10640
  }>, {
10624
10641
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
10625
10642
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -10773,6 +10790,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
10773
10790
  footprint?: FootprintProp | undefined;
10774
10791
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10775
10792
  key?: any;
10793
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
10776
10794
  cadModel?: string | {
10777
10795
  stlUrl: string;
10778
10796
  rotationOffset?: number | {
@@ -10890,6 +10908,7 @@ declare const solderjumperProps: z.ZodObject<z.objectUtil.extendShape<z.objectUt
10890
10908
  footprint?: FootprintProp | undefined;
10891
10909
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10892
10910
  key?: any;
10911
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
10893
10912
  cadModel?: string | {
10894
10913
  stlUrl: string;
10895
10914
  rotationOffset?: number | {
@@ -11271,6 +11290,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
11271
11290
  children: z.ZodOptional<z.ZodAny>;
11272
11291
  symbolName: z.ZodOptional<z.ZodString>;
11273
11292
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
11293
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
11274
11294
  }>, {
11275
11295
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
11276
11296
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -11420,6 +11440,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
11420
11440
  footprint?: FootprintProp | undefined;
11421
11441
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11422
11442
  key?: any;
11443
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
11423
11444
  cadModel?: string | {
11424
11445
  stlUrl: string;
11425
11446
  rotationOffset?: number | {
@@ -11534,6 +11555,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
11534
11555
  footprint?: FootprintProp | undefined;
11535
11556
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11536
11557
  key?: any;
11558
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
11537
11559
  cadModel?: string | {
11538
11560
  stlUrl: string;
11539
11561
  rotationOffset?: number | {
@@ -11641,7 +11663,7 @@ declare const connectorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
11641
11663
  */
11642
11664
  declare const fusePinLabels: readonly ["pin1", "pin2"];
11643
11665
  type FusePinLabels = (typeof fusePinLabels)[number];
11644
- interface FuseProps extends CommonComponentProps {
11666
+ interface FuseProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
11645
11667
  /**
11646
11668
  * Current rating of the fuse in amperes
11647
11669
  */
@@ -11658,7 +11680,7 @@ interface FuseProps extends CommonComponentProps {
11658
11680
  /**
11659
11681
  * Connections to other components
11660
11682
  */
11661
- connections?: Connections<FusePinLabels>;
11683
+ connections?: Connections<PinLabel>;
11662
11684
  }
11663
11685
  /**
11664
11686
  * Schema for validating fuse props
@@ -11920,6 +11942,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
11920
11942
  children: z.ZodOptional<z.ZodAny>;
11921
11943
  symbolName: z.ZodOptional<z.ZodString>;
11922
11944
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
11945
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
11923
11946
  }>, {
11924
11947
  currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11925
11948
  voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -11939,6 +11962,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
11939
11962
  footprint?: FootprintProp | undefined;
11940
11963
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11941
11964
  key?: any;
11965
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
11942
11966
  cadModel?: string | {
11943
11967
  stlUrl: string;
11944
11968
  rotationOffset?: number | {
@@ -12014,6 +12038,7 @@ declare const fuseProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
12014
12038
  footprint?: FootprintProp | undefined;
12015
12039
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12016
12040
  key?: any;
12041
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
12017
12042
  cadModel?: string | {
12018
12043
  stlUrl: string;
12019
12044
  rotationOffset?: number | {
@@ -12496,7 +12521,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
12496
12521
 
12497
12522
  declare const resistorPinLabels: readonly ["pin1", "pin2", "pos", "neg"];
12498
12523
  type ResistorPinLabels = (typeof resistorPinLabels)[number];
12499
- interface ResistorProps extends CommonComponentProps {
12524
+ interface ResistorProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
12500
12525
  resistance: number | string;
12501
12526
  pullupFor?: string;
12502
12527
  pullupTo?: string;
@@ -12762,6 +12787,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
12762
12787
  children: z.ZodOptional<z.ZodAny>;
12763
12788
  symbolName: z.ZodOptional<z.ZodString>;
12764
12789
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
12790
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
12765
12791
  }>, {
12766
12792
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12767
12793
  pullupFor: z.ZodOptional<z.ZodString>;
@@ -12783,6 +12809,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
12783
12809
  footprint?: FootprintProp | undefined;
12784
12810
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12785
12811
  key?: any;
12812
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
12786
12813
  cadModel?: string | {
12787
12814
  stlUrl: string;
12788
12815
  rotationOffset?: number | {
@@ -12860,6 +12887,7 @@ declare const resistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
12860
12887
  footprint?: FootprintProp | undefined;
12861
12888
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
12862
12889
  key?: any;
12890
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
12863
12891
  cadModel?: string | {
12864
12892
  stlUrl: string;
12865
12893
  rotationOffset?: number | {
@@ -13187,6 +13215,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
13187
13215
  children: z.ZodOptional<z.ZodAny>;
13188
13216
  symbolName: z.ZodOptional<z.ZodString>;
13189
13217
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
13218
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
13190
13219
  }>, {
13191
13220
  maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
13192
13221
  pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
@@ -13203,6 +13232,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
13203
13232
  footprint?: FootprintProp | undefined;
13204
13233
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13205
13234
  key?: any;
13235
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
13206
13236
  cadModel?: string | {
13207
13237
  stlUrl: string;
13208
13238
  rotationOffset?: number | {
@@ -13275,6 +13305,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
13275
13305
  footprint?: FootprintProp | undefined;
13276
13306
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13277
13307
  key?: any;
13308
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
13278
13309
  cadModel?: string | {
13279
13310
  stlUrl: string;
13280
13311
  rotationOffset?: number | {
@@ -13335,7 +13366,7 @@ declare const potentiometerProps: z.ZodObject<z.objectUtil.extendShape<z.objectU
13335
13366
  }>;
13336
13367
 
13337
13368
  type PinVariant = "two_pin" | "four_pin";
13338
- interface CrystalProps extends CommonComponentProps {
13369
+ interface CrystalProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
13339
13370
  frequency: number | string;
13340
13371
  loadCapacitance: number | string;
13341
13372
  pinVariant?: PinVariant;
@@ -13598,6 +13629,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
13598
13629
  children: z.ZodOptional<z.ZodAny>;
13599
13630
  symbolName: z.ZodOptional<z.ZodString>;
13600
13631
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
13632
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
13601
13633
  }>, {
13602
13634
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
13603
13635
  loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -13617,6 +13649,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
13617
13649
  footprint?: FootprintProp | undefined;
13618
13650
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13619
13651
  key?: any;
13652
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
13620
13653
  cadModel?: string | {
13621
13654
  stlUrl: string;
13622
13655
  rotationOffset?: number | {
@@ -13691,6 +13724,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
13691
13724
  footprint?: FootprintProp | undefined;
13692
13725
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13693
13726
  key?: any;
13727
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
13694
13728
  cadModel?: string | {
13695
13729
  stlUrl: string;
13696
13730
  rotationOffset?: number | {
@@ -13751,6 +13785,7 @@ declare const crystalProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
13751
13785
  pinVariant?: "two_pin" | "four_pin" | undefined;
13752
13786
  }>;
13753
13787
  declare const crystalPins: readonly ["pin1", "left", "pin2", "right"];
13788
+ type CrystalPinLabels = (typeof crystalPins)[number];
13754
13789
 
13755
13790
  type ResonatorPinVariant = "no_ground" | "ground_pin" | "two_ground_pins";
13756
13791
  interface ResonatorProps extends CommonComponentProps {
@@ -14015,6 +14050,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
14015
14050
  children: z.ZodOptional<z.ZodAny>;
14016
14051
  symbolName: z.ZodOptional<z.ZodString>;
14017
14052
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
14053
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
14018
14054
  }>, {
14019
14055
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14020
14056
  loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -14033,6 +14069,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
14033
14069
  footprint?: FootprintProp | undefined;
14034
14070
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
14035
14071
  key?: any;
14072
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
14036
14073
  cadModel?: string | {
14037
14074
  stlUrl: string;
14038
14075
  rotationOffset?: number | {
@@ -14106,6 +14143,7 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
14106
14143
  footprint?: FootprintProp | undefined;
14107
14144
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
14108
14145
  key?: any;
14146
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
14109
14147
  cadModel?: string | {
14110
14148
  stlUrl: string;
14111
14149
  rotationOffset?: number | {
@@ -15029,7 +15067,7 @@ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
15029
15067
 
15030
15068
  declare const capacitorPinLabels: readonly ["pin1", "pin2", "pos", "neg", "anode", "cathode"];
15031
15069
  type CapacitorPinLabels = (typeof capacitorPinLabels)[number];
15032
- interface CapacitorProps extends CommonComponentProps {
15070
+ interface CapacitorProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
15033
15071
  capacitance: number | string;
15034
15072
  maxVoltageRating?: number | string;
15035
15073
  schShowRatings?: boolean;
@@ -15299,6 +15337,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
15299
15337
  children: z.ZodOptional<z.ZodAny>;
15300
15338
  symbolName: z.ZodOptional<z.ZodString>;
15301
15339
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
15340
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
15302
15341
  }>, {
15303
15342
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
15304
15343
  maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -15326,6 +15365,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
15326
15365
  footprint?: FootprintProp | undefined;
15327
15366
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
15328
15367
  key?: any;
15368
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
15329
15369
  cadModel?: string | {
15330
15370
  stlUrl: string;
15331
15371
  rotationOffset?: number | {
@@ -15405,6 +15445,7 @@ declare const capacitorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
15405
15445
  footprint?: FootprintProp | undefined;
15406
15446
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
15407
15447
  key?: any;
15448
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
15408
15449
  cadModel?: string | {
15409
15450
  stlUrl: string;
15410
15451
  rotationOffset?: number | {
@@ -16828,7 +16869,7 @@ declare const footprintProps: z.ZodObject<{
16828
16869
  }>;
16829
16870
  type FootprintPropsInput = z.input<typeof footprintProps>;
16830
16871
 
16831
- interface BatteryProps extends CommonComponentProps {
16872
+ interface BatteryProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
16832
16873
  capacity?: number | string;
16833
16874
  schOrientation?: SchematicOrientation;
16834
16875
  }
@@ -17089,6 +17130,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
17089
17130
  children: z.ZodOptional<z.ZodAny>;
17090
17131
  symbolName: z.ZodOptional<z.ZodString>;
17091
17132
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
17133
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
17092
17134
  }>, {
17093
17135
  capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
17094
17136
  schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
@@ -17104,6 +17146,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
17104
17146
  footprint?: FootprintProp | undefined;
17105
17147
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
17106
17148
  key?: any;
17149
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
17107
17150
  cadModel?: string | {
17108
17151
  stlUrl: string;
17109
17152
  rotationOffset?: number | {
@@ -17176,6 +17219,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
17176
17219
  footprint?: FootprintProp | undefined;
17177
17220
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
17178
17221
  key?: any;
17222
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
17179
17223
  cadModel?: string | {
17180
17224
  stlUrl: string;
17181
17225
  rotationOffset?: number | {
@@ -17236,6 +17280,7 @@ declare const batteryProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
17236
17280
  capacity?: string | number | undefined;
17237
17281
  }>;
17238
17282
  declare const batteryPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
17283
+ type BatteryPinLabels = (typeof batteryPins)[number];
17239
17284
 
17240
17285
  interface PinHeaderProps extends CommonComponentProps {
17241
17286
  /**
@@ -17560,6 +17605,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
17560
17605
  children: z.ZodOptional<z.ZodAny>;
17561
17606
  symbolName: z.ZodOptional<z.ZodString>;
17562
17607
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
17608
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
17563
17609
  }>, {
17564
17610
  pinCount: z.ZodNumber;
17565
17611
  pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -17717,6 +17763,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
17717
17763
  footprint?: FootprintProp | undefined;
17718
17764
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
17719
17765
  key?: any;
17766
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
17720
17767
  cadModel?: string | {
17721
17768
  stlUrl: string;
17722
17769
  rotationOffset?: number | {
@@ -17836,6 +17883,7 @@ declare const pinHeaderProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
17836
17883
  footprint?: FootprintProp | undefined;
17837
17884
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
17838
17885
  key?: any;
17886
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
17839
17887
  cadModel?: string | {
17840
17888
  stlUrl: string;
17841
17889
  rotationOffset?: number | {
@@ -18271,6 +18319,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
18271
18319
  children: z.ZodOptional<z.ZodAny>;
18272
18320
  symbolName: z.ZodOptional<z.ZodString>;
18273
18321
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
18322
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
18274
18323
  }>, {
18275
18324
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
18276
18325
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
@@ -18532,6 +18581,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
18532
18581
  footprint?: FootprintProp | undefined;
18533
18582
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
18534
18583
  key?: any;
18584
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
18535
18585
  cadModel?: string | {
18536
18586
  stlUrl: string;
18537
18587
  rotationOffset?: number | {
@@ -18678,6 +18728,7 @@ declare const pushButtonProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
18678
18728
  footprint?: FootprintProp | undefined;
18679
18729
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
18680
18730
  key?: any;
18731
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
18681
18732
  cadModel?: string | {
18682
18733
  stlUrl: string;
18683
18734
  rotationOffset?: number | {
@@ -19602,7 +19653,7 @@ declare const subcircuitProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
19602
19653
  partsEngine?: PartsEngine | undefined;
19603
19654
  }>;
19604
19655
 
19605
- interface TransistorProps extends CommonComponentProps {
19656
+ interface TransistorProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
19606
19657
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
19607
19658
  }
19608
19659
  declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -19862,6 +19913,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
19862
19913
  children: z.ZodOptional<z.ZodAny>;
19863
19914
  symbolName: z.ZodOptional<z.ZodString>;
19864
19915
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
19916
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
19865
19917
  }>, {
19866
19918
  type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
19867
19919
  }>, "strip", z.ZodTypeAny, {
@@ -19877,6 +19929,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
19877
19929
  footprint?: FootprintProp | undefined;
19878
19930
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
19879
19931
  key?: any;
19932
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
19880
19933
  cadModel?: string | {
19881
19934
  stlUrl: string;
19882
19935
  rotationOffset?: number | {
@@ -19948,6 +20001,7 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
19948
20001
  footprint?: FootprintProp | undefined;
19949
20002
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
19950
20003
  key?: any;
20004
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
19951
20005
  cadModel?: string | {
19952
20006
  stlUrl: string;
19953
20007
  rotationOffset?: number | {
@@ -20006,8 +20060,9 @@ declare const transistorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
20006
20060
  doNotPlace?: boolean | undefined;
20007
20061
  }>;
20008
20062
  declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
20063
+ type TransistorPinLabels = (typeof transistorPins)[number];
20009
20064
 
20010
- interface MosfetProps extends CommonComponentProps {
20065
+ interface MosfetProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
20011
20066
  channelType: "n" | "p";
20012
20067
  mosfetMode: "enhancement" | "depletion";
20013
20068
  }
@@ -20268,6 +20323,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
20268
20323
  children: z.ZodOptional<z.ZodAny>;
20269
20324
  symbolName: z.ZodOptional<z.ZodString>;
20270
20325
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
20326
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
20271
20327
  }>, {
20272
20328
  channelType: z.ZodEnum<["n", "p"]>;
20273
20329
  mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
@@ -20285,6 +20341,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
20285
20341
  footprint?: FootprintProp | undefined;
20286
20342
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20287
20343
  key?: any;
20344
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
20288
20345
  cadModel?: string | {
20289
20346
  stlUrl: string;
20290
20347
  rotationOffset?: number | {
@@ -20357,6 +20414,7 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
20357
20414
  footprint?: FootprintProp | undefined;
20358
20415
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20359
20416
  key?: any;
20417
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
20360
20418
  cadModel?: string | {
20361
20419
  stlUrl: string;
20362
20420
  rotationOffset?: number | {
@@ -20415,8 +20473,9 @@ declare const mosfetProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
20415
20473
  doNotPlace?: boolean | undefined;
20416
20474
  }>;
20417
20475
  declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
20476
+ type MosfetPinLabels = (typeof mosfetPins)[number];
20418
20477
 
20419
- interface InductorProps extends CommonComponentProps {
20478
+ interface InductorProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
20420
20479
  inductance: number | string;
20421
20480
  maxCurrentRating?: number | string;
20422
20481
  schOrientation?: SchematicOrientation;
@@ -20678,6 +20737,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
20678
20737
  children: z.ZodOptional<z.ZodAny>;
20679
20738
  symbolName: z.ZodOptional<z.ZodString>;
20680
20739
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
20740
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
20681
20741
  }>, {
20682
20742
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20683
20743
  maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
@@ -20695,6 +20755,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
20695
20755
  footprint?: FootprintProp | undefined;
20696
20756
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20697
20757
  key?: any;
20758
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
20698
20759
  cadModel?: string | {
20699
20760
  stlUrl: string;
20700
20761
  rotationOffset?: number | {
@@ -20768,6 +20829,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
20768
20829
  footprint?: FootprintProp | undefined;
20769
20830
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20770
20831
  key?: any;
20832
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
20771
20833
  cadModel?: string | {
20772
20834
  stlUrl: string;
20773
20835
  rotationOffset?: number | {
@@ -20828,6 +20890,7 @@ declare const inductorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.e
20828
20890
  maxCurrentRating?: string | number | undefined;
20829
20891
  }>;
20830
20892
  declare const inductorPins: readonly ["pin1", "left", "pin2", "right"];
20893
+ type InductorPinLabels = (typeof inductorPins)[number];
20831
20894
 
20832
20895
  declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
20833
20896
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -21086,6 +21149,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21086
21149
  children: z.ZodOptional<z.ZodAny>;
21087
21150
  symbolName: z.ZodOptional<z.ZodString>;
21088
21151
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
21152
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21089
21153
  }>, {
21090
21154
  connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
21091
21155
  variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "photo", "tvs"]>>>;
@@ -21108,6 +21172,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21108
21172
  footprint?: FootprintProp | undefined;
21109
21173
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21110
21174
  key?: any;
21175
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21111
21176
  cadModel?: string | {
21112
21177
  stlUrl: string;
21113
21178
  rotationOffset?: number | {
@@ -21185,6 +21250,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21185
21250
  footprint?: FootprintProp | undefined;
21186
21251
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21187
21252
  key?: any;
21253
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21188
21254
  cadModel?: string | {
21189
21255
  stlUrl: string;
21190
21256
  rotationOffset?: number | {
@@ -21262,6 +21328,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21262
21328
  footprint?: FootprintProp | undefined;
21263
21329
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21264
21330
  key?: any;
21331
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21265
21332
  cadModel?: string | {
21266
21333
  stlUrl: string;
21267
21334
  rotationOffset?: number | {
@@ -21339,6 +21406,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21339
21406
  footprint?: FootprintProp | undefined;
21340
21407
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21341
21408
  key?: any;
21409
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21342
21410
  cadModel?: string | {
21343
21411
  stlUrl: string;
21344
21412
  rotationOffset?: number | {
@@ -21421,6 +21489,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21421
21489
  footprint?: FootprintProp | undefined;
21422
21490
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21423
21491
  key?: any;
21492
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21424
21493
  cadModel?: string | {
21425
21494
  stlUrl: string;
21426
21495
  rotationOffset?: number | {
@@ -21493,6 +21562,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21493
21562
  footprint?: FootprintProp | undefined;
21494
21563
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21495
21564
  key?: any;
21565
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21496
21566
  cadModel?: string | {
21497
21567
  stlUrl: string;
21498
21568
  rotationOffset?: number | {
@@ -21559,7 +21629,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<z.objectUtil.ext
21559
21629
  variant?: "standard" | "schottky" | "zener" | "photo" | "tvs" | undefined;
21560
21630
  }>;
21561
21631
  declare const diodePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
21562
- interface DiodeProps extends CommonComponentProps {
21632
+ type DiodePinLabels = (typeof diodePins)[number];
21633
+ interface DiodeProps<PinLabel extends string = string> extends CommonComponentProps<PinLabel> {
21563
21634
  connections?: {
21564
21635
  anode?: string | string[] | readonly string[];
21565
21636
  cathode?: string | string[] | readonly string[];
@@ -21836,6 +21907,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
21836
21907
  children: z.ZodOptional<z.ZodAny>;
21837
21908
  symbolName: z.ZodOptional<z.ZodString>;
21838
21909
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
21910
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21839
21911
  }>, {
21840
21912
  color: z.ZodOptional<z.ZodString>;
21841
21913
  wavelength: z.ZodOptional<z.ZodString>;
@@ -21854,6 +21926,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
21854
21926
  footprint?: FootprintProp | undefined;
21855
21927
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21856
21928
  key?: any;
21929
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21857
21930
  cadModel?: string | {
21858
21931
  stlUrl: string;
21859
21932
  rotationOffset?: number | {
@@ -21929,6 +22002,7 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
21929
22002
  footprint?: FootprintProp | undefined;
21930
22003
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
21931
22004
  key?: any;
22005
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
21932
22006
  cadModel?: string | {
21933
22007
  stlUrl: string;
21934
22008
  rotationOffset?: number | {
@@ -22259,6 +22333,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
22259
22333
  children: z.ZodOptional<z.ZodAny>;
22260
22334
  symbolName: z.ZodOptional<z.ZodString>;
22261
22335
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
22336
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
22262
22337
  }>, {
22263
22338
  type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
22264
22339
  isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -22280,6 +22355,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
22280
22355
  footprint?: FootprintProp | undefined;
22281
22356
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
22282
22357
  key?: any;
22358
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
22283
22359
  cadModel?: string | {
22284
22360
  stlUrl: string;
22285
22361
  rotationOffset?: number | {
@@ -22355,6 +22431,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
22355
22431
  footprint?: FootprintProp | undefined;
22356
22432
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
22357
22433
  key?: any;
22434
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
22358
22435
  cadModel?: string | {
22359
22436
  stlUrl: string;
22360
22437
  rotationOffset?: number | {
@@ -22431,6 +22508,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<z.o
22431
22508
  footprint?: FootprintProp | undefined;
22432
22509
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
22433
22510
  key?: any;
22511
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
22434
22512
  cadModel?: string | {
22435
22513
  stlUrl: string;
22436
22514
  rotationOffset?: number | {
@@ -23040,6 +23118,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
23040
23118
  children: z.ZodOptional<z.ZodAny>;
23041
23119
  symbolName: z.ZodOptional<z.ZodString>;
23042
23120
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
23121
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
23043
23122
  }>, {
23044
23123
  footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
23045
23124
  padShape: z.ZodDefault<z.ZodOptional<z.ZodEnum<["rect", "circle"]>>>;
@@ -23060,6 +23139,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
23060
23139
  footprint?: FootprintProp | undefined;
23061
23140
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23062
23141
  key?: any;
23142
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23063
23143
  cadModel?: string | {
23064
23144
  stlUrl: string;
23065
23145
  rotationOffset?: number | {
@@ -23135,6 +23215,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
23135
23215
  footprint?: FootprintProp | undefined;
23136
23216
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23137
23217
  key?: any;
23218
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23138
23219
  cadModel?: string | {
23139
23220
  stlUrl: string;
23140
23221
  rotationOffset?: number | {
@@ -23210,6 +23291,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
23210
23291
  footprint?: FootprintProp | undefined;
23211
23292
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23212
23293
  key?: any;
23294
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23213
23295
  cadModel?: string | {
23214
23296
  stlUrl: string;
23215
23297
  rotationOffset?: number | {
@@ -23285,6 +23367,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<
23285
23367
  footprint?: FootprintProp | undefined;
23286
23368
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23287
23369
  key?: any;
23370
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23288
23371
  cadModel?: string | {
23289
23372
  stlUrl: string;
23290
23373
  rotationOffset?: number | {
@@ -23703,6 +23786,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
23703
23786
  children: z.ZodOptional<z.ZodAny>;
23704
23787
  symbolName: z.ZodOptional<z.ZodString>;
23705
23788
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
23789
+ pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
23706
23790
  }>, {
23707
23791
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
23708
23792
  }>, "strip", z.ZodTypeAny, {
@@ -23718,6 +23802,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
23718
23802
  footprint?: FootprintProp | undefined;
23719
23803
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23720
23804
  key?: any;
23805
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23721
23806
  cadModel?: string | {
23722
23807
  stlUrl: string;
23723
23808
  rotationOffset?: number | {
@@ -23789,6 +23874,7 @@ declare const powerSourceProps: z.ZodObject<z.objectUtil.extendShape<z.objectUti
23789
23874
  footprint?: FootprintProp | undefined;
23790
23875
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
23791
23876
  key?: any;
23877
+ pinAttributes?: Record<string, Record<string, any>> | undefined;
23792
23878
  cadModel?: string | {
23793
23879
  stlUrl: string;
23794
23880
  rotationOffset?: number | {
@@ -24555,4 +24641,4 @@ declare const platformConfig: z.ZodType<PlatformConfig>;
24555
24641
 
24556
24642
  declare const ninePointAnchor: z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>;
24557
24643
 
24558
- export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
24644
+ export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };