@tscircuit/props 0.0.599 → 0.0.600

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
@@ -100947,6 +100947,7 @@ interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100947
100947
  solderMaskMarginRight?: Distance;
100948
100948
  solderMaskMarginTop?: Distance;
100949
100949
  solderMaskMarginBottom?: Distance;
100950
+ solderPasteMargin?: Distance;
100950
100951
  }
100951
100952
  interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100952
100953
  name?: string;
@@ -100962,6 +100963,7 @@ interface RotatedRectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100962
100963
  solderMaskMarginRight?: Distance;
100963
100964
  solderMaskMarginTop?: Distance;
100964
100965
  solderMaskMarginBottom?: Distance;
100966
+ solderPasteMargin?: Distance;
100965
100967
  }
100966
100968
  interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100967
100969
  name?: string;
@@ -100970,6 +100972,7 @@ interface CircleSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100970
100972
  portHints?: PortHints;
100971
100973
  coveredWithSolderMask?: boolean;
100972
100974
  solderMaskMargin?: Distance;
100975
+ solderPasteMargin?: Distance;
100973
100976
  }
100974
100977
  interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100975
100978
  name?: string;
@@ -100980,6 +100983,7 @@ interface PillSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100980
100983
  portHints?: PortHints;
100981
100984
  coveredWithSolderMask?: boolean;
100982
100985
  solderMaskMargin?: Distance;
100986
+ solderPasteMargin?: Distance;
100983
100987
  }
100984
100988
  interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100985
100989
  name?: string;
@@ -100988,6 +100992,7 @@ interface PolygonSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
100988
100992
  portHints?: PortHints;
100989
100993
  coveredWithSolderMask?: boolean;
100990
100994
  solderMaskMargin?: Distance;
100995
+ solderPasteMargin?: Distance;
100991
100996
  }
100992
100997
  type SmtPadProps = RectSmtPadProps | CircleSmtPadProps | RotatedRectSmtPadProps | PillSmtPadProps | PolygonSmtPadProps;
100993
100998
  declare const rectSmtPadProps: z.ZodObject<Omit<{
@@ -101069,6 +101074,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
101069
101074
  solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101070
101075
  solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101071
101076
  solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101077
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101072
101078
  }, "strip", z.ZodTypeAny, {
101073
101079
  shape: "rect";
101074
101080
  width: number;
@@ -101114,6 +101120,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
101114
101120
  solderMaskMarginRight?: number | undefined;
101115
101121
  solderMaskMarginTop?: number | undefined;
101116
101122
  solderMaskMarginBottom?: number | undefined;
101123
+ solderPasteMargin?: number | undefined;
101117
101124
  }, {
101118
101125
  shape: "rect";
101119
101126
  width: string | number;
@@ -101161,6 +101168,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
101161
101168
  solderMaskMarginRight?: string | number | undefined;
101162
101169
  solderMaskMarginTop?: string | number | undefined;
101163
101170
  solderMaskMarginBottom?: string | number | undefined;
101171
+ solderPasteMargin?: string | number | undefined;
101164
101172
  }>;
101165
101173
  declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
101166
101174
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -101241,6 +101249,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
101241
101249
  solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101242
101250
  solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101243
101251
  solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101252
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101244
101253
  }, "strip", z.ZodTypeAny, {
101245
101254
  shape: "rotated_rect";
101246
101255
  width: number;
@@ -101286,6 +101295,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
101286
101295
  solderMaskMarginRight?: number | undefined;
101287
101296
  solderMaskMarginTop?: number | undefined;
101288
101297
  solderMaskMarginBottom?: number | undefined;
101298
+ solderPasteMargin?: number | undefined;
101289
101299
  }, {
101290
101300
  shape: "rotated_rect";
101291
101301
  width: string | number;
@@ -101333,6 +101343,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
101333
101343
  solderMaskMarginRight?: string | number | undefined;
101334
101344
  solderMaskMarginTop?: string | number | undefined;
101335
101345
  solderMaskMarginBottom?: string | number | undefined;
101346
+ solderPasteMargin?: string | number | undefined;
101336
101347
  }>;
101337
101348
  declare const circleSmtPadProps: z.ZodObject<Omit<{
101338
101349
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -101406,6 +101417,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
101406
101417
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
101407
101418
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
101408
101419
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101420
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101409
101421
  }, "strip", z.ZodTypeAny, {
101410
101422
  shape: "circle";
101411
101423
  radius: number;
@@ -101444,6 +101456,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
101444
101456
  portHints?: (string | number)[] | undefined;
101445
101457
  solderMaskMargin?: number | undefined;
101446
101458
  coveredWithSolderMask?: boolean | undefined;
101459
+ solderPasteMargin?: number | undefined;
101447
101460
  }, {
101448
101461
  shape: "circle";
101449
101462
  radius: string | number;
@@ -101484,6 +101497,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
101484
101497
  portHints?: (string | number)[] | undefined;
101485
101498
  solderMaskMargin?: string | number | undefined;
101486
101499
  coveredWithSolderMask?: boolean | undefined;
101500
+ solderPasteMargin?: string | number | undefined;
101487
101501
  }>;
101488
101502
  declare const pillSmtPadProps: z.ZodObject<Omit<{
101489
101503
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -101559,6 +101573,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
101559
101573
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
101560
101574
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
101561
101575
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101576
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101562
101577
  }, "strip", z.ZodTypeAny, {
101563
101578
  shape: "pill";
101564
101579
  width: number;
@@ -101599,6 +101614,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
101599
101614
  portHints?: (string | number)[] | undefined;
101600
101615
  solderMaskMargin?: number | undefined;
101601
101616
  coveredWithSolderMask?: boolean | undefined;
101617
+ solderPasteMargin?: number | undefined;
101602
101618
  }, {
101603
101619
  shape: "pill";
101604
101620
  width: string | number;
@@ -101641,6 +101657,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
101641
101657
  portHints?: (string | number)[] | undefined;
101642
101658
  solderMaskMargin?: string | number | undefined;
101643
101659
  coveredWithSolderMask?: boolean | undefined;
101660
+ solderPasteMargin?: string | number | undefined;
101644
101661
  }>;
101645
101662
  declare const polygonSmtPadProps: z.ZodObject<Omit<{
101646
101663
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -101723,6 +101740,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
101723
101740
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
101724
101741
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
101725
101742
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101743
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101726
101744
  }, "strip", z.ZodTypeAny, {
101727
101745
  shape: "polygon";
101728
101746
  points: {
@@ -101764,6 +101782,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
101764
101782
  portHints?: (string | number)[] | undefined;
101765
101783
  solderMaskMargin?: number | undefined;
101766
101784
  coveredWithSolderMask?: boolean | undefined;
101785
+ solderPasteMargin?: number | undefined;
101767
101786
  }, {
101768
101787
  shape: "polygon";
101769
101788
  points: {
@@ -101807,6 +101826,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
101807
101826
  portHints?: (string | number)[] | undefined;
101808
101827
  solderMaskMargin?: string | number | undefined;
101809
101828
  coveredWithSolderMask?: boolean | undefined;
101829
+ solderPasteMargin?: string | number | undefined;
101810
101830
  }>;
101811
101831
  declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
101812
101832
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -101880,6 +101900,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
101880
101900
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
101881
101901
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
101882
101902
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101903
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
101883
101904
  }, "strip", z.ZodTypeAny, {
101884
101905
  shape: "circle";
101885
101906
  radius: number;
@@ -101918,6 +101939,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
101918
101939
  portHints?: (string | number)[] | undefined;
101919
101940
  solderMaskMargin?: number | undefined;
101920
101941
  coveredWithSolderMask?: boolean | undefined;
101942
+ solderPasteMargin?: number | undefined;
101921
101943
  }, {
101922
101944
  shape: "circle";
101923
101945
  radius: string | number;
@@ -101958,6 +101980,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
101958
101980
  portHints?: (string | number)[] | undefined;
101959
101981
  solderMaskMargin?: string | number | undefined;
101960
101982
  coveredWithSolderMask?: boolean | undefined;
101983
+ solderPasteMargin?: string | number | undefined;
101961
101984
  }>, z.ZodObject<Omit<{
101962
101985
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
101963
101986
  pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -102037,6 +102060,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102037
102060
  solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102038
102061
  solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102039
102062
  solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102063
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102040
102064
  }, "strip", z.ZodTypeAny, {
102041
102065
  shape: "rect";
102042
102066
  width: number;
@@ -102082,6 +102106,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102082
102106
  solderMaskMarginRight?: number | undefined;
102083
102107
  solderMaskMarginTop?: number | undefined;
102084
102108
  solderMaskMarginBottom?: number | undefined;
102109
+ solderPasteMargin?: number | undefined;
102085
102110
  }, {
102086
102111
  shape: "rect";
102087
102112
  width: string | number;
@@ -102129,6 +102154,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102129
102154
  solderMaskMarginRight?: string | number | undefined;
102130
102155
  solderMaskMarginTop?: string | number | undefined;
102131
102156
  solderMaskMarginBottom?: string | number | undefined;
102157
+ solderPasteMargin?: string | number | undefined;
102132
102158
  }>, z.ZodObject<Omit<{
102133
102159
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
102134
102160
  pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -102208,6 +102234,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102208
102234
  solderMaskMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102209
102235
  solderMaskMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102210
102236
  solderMaskMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102237
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102211
102238
  }, "strip", z.ZodTypeAny, {
102212
102239
  shape: "rotated_rect";
102213
102240
  width: number;
@@ -102253,6 +102280,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102253
102280
  solderMaskMarginRight?: number | undefined;
102254
102281
  solderMaskMarginTop?: number | undefined;
102255
102282
  solderMaskMarginBottom?: number | undefined;
102283
+ solderPasteMargin?: number | undefined;
102256
102284
  }, {
102257
102285
  shape: "rotated_rect";
102258
102286
  width: string | number;
@@ -102300,6 +102328,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102300
102328
  solderMaskMarginRight?: string | number | undefined;
102301
102329
  solderMaskMarginTop?: string | number | undefined;
102302
102330
  solderMaskMarginBottom?: string | number | undefined;
102331
+ solderPasteMargin?: string | number | undefined;
102303
102332
  }>, z.ZodObject<Omit<{
102304
102333
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
102305
102334
  pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -102374,6 +102403,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102374
102403
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
102375
102404
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
102376
102405
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102406
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102377
102407
  }, "strip", z.ZodTypeAny, {
102378
102408
  shape: "pill";
102379
102409
  width: number;
@@ -102414,6 +102444,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102414
102444
  portHints?: (string | number)[] | undefined;
102415
102445
  solderMaskMargin?: number | undefined;
102416
102446
  coveredWithSolderMask?: boolean | undefined;
102447
+ solderPasteMargin?: number | undefined;
102417
102448
  }, {
102418
102449
  shape: "pill";
102419
102450
  width: string | number;
@@ -102456,6 +102487,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102456
102487
  portHints?: (string | number)[] | undefined;
102457
102488
  solderMaskMargin?: string | number | undefined;
102458
102489
  coveredWithSolderMask?: boolean | undefined;
102490
+ solderPasteMargin?: string | number | undefined;
102459
102491
  }>, z.ZodObject<Omit<{
102460
102492
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
102461
102493
  pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -102537,6 +102569,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102537
102569
  portHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">>;
102538
102570
  coveredWithSolderMask: z.ZodOptional<z.ZodBoolean>;
102539
102571
  solderMaskMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102572
+ solderPasteMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
102540
102573
  }, "strip", z.ZodTypeAny, {
102541
102574
  shape: "polygon";
102542
102575
  points: {
@@ -102578,6 +102611,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102578
102611
  portHints?: (string | number)[] | undefined;
102579
102612
  solderMaskMargin?: number | undefined;
102580
102613
  coveredWithSolderMask?: boolean | undefined;
102614
+ solderPasteMargin?: number | undefined;
102581
102615
  }, {
102582
102616
  shape: "polygon";
102583
102617
  points: {
@@ -102621,6 +102655,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
102621
102655
  portHints?: (string | number)[] | undefined;
102622
102656
  solderMaskMargin?: string | number | undefined;
102623
102657
  coveredWithSolderMask?: boolean | undefined;
102658
+ solderPasteMargin?: string | number | undefined;
102624
102659
  }>]>;
102625
102660
  type InferredSmtPadProps = z.input<typeof smtPadProps>;
102626
102661
 
@@ -128010,7 +128045,7 @@ declare const transistorProps: z.ZodObject<{
128010
128045
  schSheetName?: string | undefined;
128011
128046
  connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
128012
128047
  }>;
128013
- declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
128048
+ declare const transistorPins: readonly ["pin1", "collector", "pin2", "base", "pin3", "emitter"];
128014
128049
  type TransistorPinLabels = (typeof transistorPins)[number];
128015
128050
 
128016
128051
  declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
package/dist/index.js CHANGED
@@ -17174,7 +17174,8 @@ var rectSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
17174
17174
  solderMaskMarginLeft: distance.optional(),
17175
17175
  solderMaskMarginRight: distance.optional(),
17176
17176
  solderMaskMarginTop: distance.optional(),
17177
- solderMaskMarginBottom: distance.optional()
17177
+ solderMaskMarginBottom: distance.optional(),
17178
+ solderPasteMargin: distance.optional()
17178
17179
  });
17179
17180
  expectTypesMatch(true);
17180
17181
  var rotatedRectSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
@@ -17190,7 +17191,8 @@ var rotatedRectSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
17190
17191
  solderMaskMarginLeft: distance.optional(),
17191
17192
  solderMaskMarginRight: distance.optional(),
17192
17193
  solderMaskMarginTop: distance.optional(),
17193
- solderMaskMarginBottom: distance.optional()
17194
+ solderMaskMarginBottom: distance.optional(),
17195
+ solderPasteMargin: distance.optional()
17194
17196
  });
17195
17197
  expectTypesMatch(true);
17196
17198
  var circleSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
@@ -17199,7 +17201,8 @@ var circleSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
17199
17201
  radius: distance,
17200
17202
  portHints: portHints.optional(),
17201
17203
  coveredWithSolderMask: z66.boolean().optional(),
17202
- solderMaskMargin: distance.optional()
17204
+ solderMaskMargin: distance.optional(),
17205
+ solderPasteMargin: distance.optional()
17203
17206
  });
17204
17207
  expectTypesMatch(true);
17205
17208
  var pillSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
@@ -17210,7 +17213,8 @@ var pillSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
17210
17213
  radius: distance,
17211
17214
  portHints: portHints.optional(),
17212
17215
  coveredWithSolderMask: z66.boolean().optional(),
17213
- solderMaskMargin: distance.optional()
17216
+ solderMaskMargin: distance.optional(),
17217
+ solderPasteMargin: distance.optional()
17214
17218
  });
17215
17219
  expectTypesMatch(true);
17216
17220
  var polygonSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
@@ -17219,7 +17223,8 @@ var polygonSmtPadProps = pcbLayoutProps.omit({ pcbRotation: true }).extend({
17219
17223
  points: z66.array(point),
17220
17224
  portHints: portHints.optional(),
17221
17225
  coveredWithSolderMask: z66.boolean().optional(),
17222
- solderMaskMargin: distance.optional()
17226
+ solderMaskMargin: distance.optional(),
17227
+ solderPasteMargin: distance.optional()
17223
17228
  });
17224
17229
  expectTypesMatch(true);
17225
17230
  var smtPadProps = z66.discriminatedUnion("shape", [
@@ -17830,11 +17835,11 @@ var transistorProps = commonComponentProps.extend({
17830
17835
  });
17831
17836
  var transistorPins = [
17832
17837
  "pin1",
17833
- "emitter",
17834
- "pin2",
17835
17838
  "collector",
17839
+ "pin2",
17840
+ "base",
17836
17841
  "pin3",
17837
- "base"
17842
+ "emitter"
17838
17843
  ];
17839
17844
  expectTypesMatch(true);
17840
17845