@tscircuit/props 0.0.598 → 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/README.md +14 -0
- package/dist/index.d.ts +86 -2
- package/dist/index.js +34 -26
- package/dist/index.js.map +1 -1
- package/lib/components/autoroutingphase.ts +23 -0
- package/lib/components/smtpad.ts +10 -0
- package/lib/components/transistor.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -352,6 +352,20 @@ export interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
|
352
352
|
* boundary where fanout traces terminate.
|
|
353
353
|
*/
|
|
354
354
|
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
355
|
+
/**
|
|
356
|
+
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
357
|
+
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
358
|
+
* mapped plane layer.
|
|
359
|
+
*/
|
|
360
|
+
fanoutRoutingLayers?: LayerRefInput[];
|
|
361
|
+
/**
|
|
362
|
+
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
363
|
+
* source-only traces on those nets drop to the mapped layer instead of
|
|
364
|
+
* routing to the breakout boundary.
|
|
365
|
+
*
|
|
366
|
+
* This is inferred from `<copperpour>` components when omitted.
|
|
367
|
+
*/
|
|
368
|
+
fanoutPourNetMap?: FanoutPourNetMap;
|
|
355
369
|
}
|
|
356
370
|
```
|
|
357
371
|
|
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
|
|
|
@@ -123211,6 +123246,7 @@ declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"p
|
|
|
123211
123246
|
type BusFanoutDirection = NinePointAnchor | {
|
|
123212
123247
|
direction: NinePointAnchor;
|
|
123213
123248
|
};
|
|
123249
|
+
type FanoutPourNetMap = Partial<Record<Extract<LayerRef, string>, string | string[]>>;
|
|
123214
123250
|
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
123215
123251
|
key?: any;
|
|
123216
123252
|
name?: string;
|
|
@@ -123236,6 +123272,20 @@ interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
|
123236
123272
|
* boundary where fanout traces terminate.
|
|
123237
123273
|
*/
|
|
123238
123274
|
fanoutBoundaryPadding?: FanoutBoundaryPadding;
|
|
123275
|
+
/**
|
|
123276
|
+
* Copper layers available to boundary-terminated fanout buses. Source-only
|
|
123277
|
+
* traces whose nets are mapped by `fanoutPourNetMap` terminate on their
|
|
123278
|
+
* mapped plane layer.
|
|
123279
|
+
*/
|
|
123280
|
+
fanoutRoutingLayers?: LayerRefInput[];
|
|
123281
|
+
/**
|
|
123282
|
+
* Maps copper layers to the net or nets poured on them. During fanout,
|
|
123283
|
+
* source-only traces on those nets drop to the mapped layer instead of
|
|
123284
|
+
* routing to the breakout boundary.
|
|
123285
|
+
*
|
|
123286
|
+
* This is inferred from `<copperpour>` components when omitted.
|
|
123287
|
+
*/
|
|
123288
|
+
fanoutPourNetMap?: FanoutPourNetMap;
|
|
123239
123289
|
}
|
|
123240
123290
|
declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
123241
123291
|
region: z.ZodOptional<z.ZodObject<{
|
|
@@ -123283,6 +123333,24 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123283
123333
|
top?: string | number | undefined;
|
|
123284
123334
|
bottom?: string | number | undefined;
|
|
123285
123335
|
}>]>>;
|
|
123336
|
+
fanoutRoutingLayers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
123337
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
123338
|
+
}, "strip", z.ZodTypeAny, {
|
|
123339
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123340
|
+
}, {
|
|
123341
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123342
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123343
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123344
|
+
}>, "many">>;
|
|
123345
|
+
fanoutPourNetMap: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
123346
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
123347
|
+
}, "strip", z.ZodTypeAny, {
|
|
123348
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123349
|
+
}, {
|
|
123350
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123351
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123352
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123353
|
+
}>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
123286
123354
|
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123287
123355
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
123288
123356
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -123329,6 +123397,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123329
123397
|
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123330
123398
|
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123331
123399
|
}> | undefined;
|
|
123400
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123401
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123332
123402
|
}, {
|
|
123333
123403
|
name?: string | undefined;
|
|
123334
123404
|
key?: any;
|
|
@@ -123362,6 +123432,12 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123362
123432
|
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123363
123433
|
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123364
123434
|
}> | undefined;
|
|
123435
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123436
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123437
|
+
})[] | undefined;
|
|
123438
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123439
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123440
|
+
}, string | string[]>> | undefined;
|
|
123365
123441
|
}>, {
|
|
123366
123442
|
name?: string | undefined;
|
|
123367
123443
|
key?: any;
|
|
@@ -123395,6 +123471,8 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123395
123471
|
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123396
123472
|
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123397
123473
|
}> | undefined;
|
|
123474
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8")[] | undefined;
|
|
123475
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", string | string[]>> | undefined;
|
|
123398
123476
|
}, {
|
|
123399
123477
|
name?: string | undefined;
|
|
123400
123478
|
key?: any;
|
|
@@ -123428,6 +123506,12 @@ declare const autoroutingPhaseProps: z.ZodEffects<z.ZodObject<{
|
|
|
123428
123506
|
busFanoutDirections?: Record<string, "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | {
|
|
123429
123507
|
direction: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
123430
123508
|
}> | undefined;
|
|
123509
|
+
fanoutRoutingLayers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123510
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123511
|
+
})[] | undefined;
|
|
123512
|
+
fanoutPourNetMap?: Partial<Record<"top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
123513
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
123514
|
+
}, string | string[]>> | undefined;
|
|
123431
123515
|
}>;
|
|
123432
123516
|
|
|
123433
123517
|
declare const transistorPinsLabels: readonly ["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"];
|
|
@@ -127961,7 +128045,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
127961
128045
|
schSheetName?: string | undefined;
|
|
127962
128046
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
127963
128047
|
}>;
|
|
127964
|
-
declare const transistorPins: readonly ["pin1", "
|
|
128048
|
+
declare const transistorPins: readonly ["pin1", "collector", "pin2", "base", "pin3", "emitter"];
|
|
127965
128049
|
type TransistorPinLabels = (typeof transistorPins)[number];
|
|
127966
128050
|
|
|
127967
128051
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
@@ -192519,4 +192603,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
192519
192603
|
}
|
|
192520
192604
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
192521
192605
|
|
|
192522
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
192606
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FanoutPourNetMap, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, 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 MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, 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, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|