@tscircuit/props 0.0.449 → 0.0.450
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 +101 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6453,6 +6453,7 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
6453
6453
|
* Whether to show this component's CAD model as translucent in the 3D viewer.
|
|
6454
6454
|
*/
|
|
6455
6455
|
showAsTranslucentModel?: boolean;
|
|
6456
|
+
mfn?: string;
|
|
6456
6457
|
}
|
|
6457
6458
|
declare const commonComponentProps: z.ZodObject<{
|
|
6458
6459
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -9516,6 +9517,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9516
9517
|
highlightColor?: string | undefined;
|
|
9517
9518
|
mustBeConnected?: boolean | undefined;
|
|
9518
9519
|
}>>>;
|
|
9520
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
9519
9521
|
}, "strip", z.ZodTypeAny, {
|
|
9520
9522
|
name: string;
|
|
9521
9523
|
symbol?: SymbolProp | undefined;
|
|
@@ -10009,6 +10011,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10009
10011
|
doNotPlace?: boolean | undefined;
|
|
10010
10012
|
obstructsWithinBounds?: boolean | undefined;
|
|
10011
10013
|
showAsTranslucentModel?: boolean | undefined;
|
|
10014
|
+
mfn?: string | undefined;
|
|
10012
10015
|
}, {
|
|
10013
10016
|
name: string;
|
|
10014
10017
|
symbol?: SymbolProp | undefined;
|
|
@@ -10504,6 +10507,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10504
10507
|
doNotPlace?: boolean | undefined;
|
|
10505
10508
|
obstructsWithinBounds?: boolean | undefined;
|
|
10506
10509
|
showAsTranslucentModel?: boolean | undefined;
|
|
10510
|
+
mfn?: string | undefined;
|
|
10507
10511
|
}>;
|
|
10508
10512
|
declare const componentProps: z.ZodObject<{
|
|
10509
10513
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -13567,6 +13571,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13567
13571
|
highlightColor?: string | undefined;
|
|
13568
13572
|
mustBeConnected?: boolean | undefined;
|
|
13569
13573
|
}>>>;
|
|
13574
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
13570
13575
|
}, "strip", z.ZodTypeAny, {
|
|
13571
13576
|
name: string;
|
|
13572
13577
|
symbol?: SymbolProp | undefined;
|
|
@@ -14060,6 +14065,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14060
14065
|
doNotPlace?: boolean | undefined;
|
|
14061
14066
|
obstructsWithinBounds?: boolean | undefined;
|
|
14062
14067
|
showAsTranslucentModel?: boolean | undefined;
|
|
14068
|
+
mfn?: string | undefined;
|
|
14063
14069
|
}, {
|
|
14064
14070
|
name: string;
|
|
14065
14071
|
symbol?: SymbolProp | undefined;
|
|
@@ -14555,6 +14561,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14555
14561
|
doNotPlace?: boolean | undefined;
|
|
14556
14562
|
obstructsWithinBounds?: boolean | undefined;
|
|
14557
14563
|
showAsTranslucentModel?: boolean | undefined;
|
|
14564
|
+
mfn?: string | undefined;
|
|
14558
14565
|
}>;
|
|
14559
14566
|
type ComponentProps = z.input<typeof componentProps>;
|
|
14560
14567
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -30484,6 +30491,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
30484
30491
|
highlightColor?: string | undefined;
|
|
30485
30492
|
mustBeConnected?: boolean | undefined;
|
|
30486
30493
|
}>>>;
|
|
30494
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
30487
30495
|
} & {
|
|
30488
30496
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
30489
30497
|
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">]>>>;
|
|
@@ -31227,6 +31235,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31227
31235
|
doNotPlace?: boolean | undefined;
|
|
31228
31236
|
obstructsWithinBounds?: boolean | undefined;
|
|
31229
31237
|
showAsTranslucentModel?: boolean | undefined;
|
|
31238
|
+
mfn?: string | undefined;
|
|
31230
31239
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
31231
31240
|
schPinArrangement?: {
|
|
31232
31241
|
leftSize?: number | undefined;
|
|
@@ -31799,6 +31808,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31799
31808
|
doNotPlace?: boolean | undefined;
|
|
31800
31809
|
obstructsWithinBounds?: boolean | undefined;
|
|
31801
31810
|
showAsTranslucentModel?: boolean | undefined;
|
|
31811
|
+
mfn?: string | undefined;
|
|
31802
31812
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
31803
31813
|
schPinArrangement?: {
|
|
31804
31814
|
leftSize?: number | undefined;
|
|
@@ -34942,6 +34952,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
34942
34952
|
highlightColor?: string | undefined;
|
|
34943
34953
|
mustBeConnected?: boolean | undefined;
|
|
34944
34954
|
}>>>;
|
|
34955
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
34945
34956
|
} & {
|
|
34946
34957
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
34947
34958
|
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">]>>>;
|
|
@@ -35685,6 +35696,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35685
35696
|
doNotPlace?: boolean | undefined;
|
|
35686
35697
|
obstructsWithinBounds?: boolean | undefined;
|
|
35687
35698
|
showAsTranslucentModel?: boolean | undefined;
|
|
35699
|
+
mfn?: string | undefined;
|
|
35688
35700
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
35689
35701
|
schPinArrangement?: {
|
|
35690
35702
|
leftSize?: number | undefined;
|
|
@@ -36257,6 +36269,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36257
36269
|
doNotPlace?: boolean | undefined;
|
|
36258
36270
|
obstructsWithinBounds?: boolean | undefined;
|
|
36259
36271
|
showAsTranslucentModel?: boolean | undefined;
|
|
36272
|
+
mfn?: string | undefined;
|
|
36260
36273
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
36261
36274
|
schPinArrangement?: {
|
|
36262
36275
|
leftSize?: number | undefined;
|
|
@@ -39399,6 +39412,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
39399
39412
|
highlightColor?: string | undefined;
|
|
39400
39413
|
mustBeConnected?: boolean | undefined;
|
|
39401
39414
|
}>>>;
|
|
39415
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
39402
39416
|
} & {
|
|
39403
39417
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
39404
39418
|
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">]>>>;
|
|
@@ -40142,6 +40156,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40142
40156
|
doNotPlace?: boolean | undefined;
|
|
40143
40157
|
obstructsWithinBounds?: boolean | undefined;
|
|
40144
40158
|
showAsTranslucentModel?: boolean | undefined;
|
|
40159
|
+
mfn?: string | undefined;
|
|
40145
40160
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
40146
40161
|
schPinArrangement?: {
|
|
40147
40162
|
leftSize?: number | undefined;
|
|
@@ -40714,6 +40729,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40714
40729
|
doNotPlace?: boolean | undefined;
|
|
40715
40730
|
obstructsWithinBounds?: boolean | undefined;
|
|
40716
40731
|
showAsTranslucentModel?: boolean | undefined;
|
|
40732
|
+
mfn?: string | undefined;
|
|
40717
40733
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
40718
40734
|
schPinArrangement?: {
|
|
40719
40735
|
leftSize?: number | undefined;
|
|
@@ -43888,6 +43904,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
43888
43904
|
highlightColor?: string | undefined;
|
|
43889
43905
|
mustBeConnected?: boolean | undefined;
|
|
43890
43906
|
}>>>;
|
|
43907
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
43891
43908
|
} & {
|
|
43892
43909
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
43893
43910
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -44620,6 +44637,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44620
44637
|
doNotPlace?: boolean | undefined;
|
|
44621
44638
|
obstructsWithinBounds?: boolean | undefined;
|
|
44622
44639
|
showAsTranslucentModel?: boolean | undefined;
|
|
44640
|
+
mfn?: string | undefined;
|
|
44623
44641
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
44624
44642
|
schPinArrangement?: {
|
|
44625
44643
|
leftSize?: number | undefined;
|
|
@@ -45187,6 +45205,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45187
45205
|
doNotPlace?: boolean | undefined;
|
|
45188
45206
|
obstructsWithinBounds?: boolean | undefined;
|
|
45189
45207
|
showAsTranslucentModel?: boolean | undefined;
|
|
45208
|
+
mfn?: string | undefined;
|
|
45190
45209
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
45191
45210
|
schPinArrangement?: {
|
|
45192
45211
|
leftSize?: number | undefined;
|
|
@@ -48333,6 +48352,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
48333
48352
|
highlightColor?: string | undefined;
|
|
48334
48353
|
mustBeConnected?: boolean | undefined;
|
|
48335
48354
|
}>>>;
|
|
48355
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
48336
48356
|
} & {
|
|
48337
48357
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
48338
48358
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -49068,6 +49088,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49068
49088
|
doNotPlace?: boolean | undefined;
|
|
49069
49089
|
obstructsWithinBounds?: boolean | undefined;
|
|
49070
49090
|
showAsTranslucentModel?: boolean | undefined;
|
|
49091
|
+
mfn?: string | undefined;
|
|
49071
49092
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
49072
49093
|
schPinArrangement?: {
|
|
49073
49094
|
leftSize?: number | undefined;
|
|
@@ -49637,6 +49658,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49637
49658
|
doNotPlace?: boolean | undefined;
|
|
49638
49659
|
obstructsWithinBounds?: boolean | undefined;
|
|
49639
49660
|
showAsTranslucentModel?: boolean | undefined;
|
|
49661
|
+
mfn?: string | undefined;
|
|
49640
49662
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49641
49663
|
schPinArrangement?: {
|
|
49642
49664
|
leftSize?: number | undefined;
|
|
@@ -52794,6 +52816,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
52794
52816
|
highlightColor?: string | undefined;
|
|
52795
52817
|
mustBeConnected?: boolean | undefined;
|
|
52796
52818
|
}>>>;
|
|
52819
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
52797
52820
|
} & {
|
|
52798
52821
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
52799
52822
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -53424,6 +53447,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53424
53447
|
doNotPlace?: boolean | undefined;
|
|
53425
53448
|
obstructsWithinBounds?: boolean | undefined;
|
|
53426
53449
|
showAsTranslucentModel?: boolean | undefined;
|
|
53450
|
+
mfn?: string | undefined;
|
|
53427
53451
|
schPinSpacing?: number | undefined;
|
|
53428
53452
|
schPinStyle?: Record<string, {
|
|
53429
53453
|
marginLeft?: number | undefined;
|
|
@@ -53963,6 +53987,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53963
53987
|
doNotPlace?: boolean | undefined;
|
|
53964
53988
|
obstructsWithinBounds?: boolean | undefined;
|
|
53965
53989
|
showAsTranslucentModel?: boolean | undefined;
|
|
53990
|
+
mfn?: string | undefined;
|
|
53966
53991
|
schPinSpacing?: string | number | undefined;
|
|
53967
53992
|
schPinStyle?: Record<string, {
|
|
53968
53993
|
marginLeft?: string | number | undefined;
|
|
@@ -57080,6 +57105,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57080
57105
|
highlightColor?: string | undefined;
|
|
57081
57106
|
mustBeConnected?: boolean | undefined;
|
|
57082
57107
|
}>>>;
|
|
57108
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
57083
57109
|
} & {
|
|
57084
57110
|
standard: z.ZodOptional<z.ZodEnum<["TSC0001_36P_XALT_2025_11", "0805", "0603", "1206"]>>;
|
|
57085
57111
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -57577,6 +57603,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57577
57603
|
doNotPlace?: boolean | undefined;
|
|
57578
57604
|
obstructsWithinBounds?: boolean | undefined;
|
|
57579
57605
|
showAsTranslucentModel?: boolean | undefined;
|
|
57606
|
+
mfn?: string | undefined;
|
|
57580
57607
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
57581
57608
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
57582
57609
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -58075,6 +58102,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58075
58102
|
doNotPlace?: boolean | undefined;
|
|
58076
58103
|
obstructsWithinBounds?: boolean | undefined;
|
|
58077
58104
|
showAsTranslucentModel?: boolean | undefined;
|
|
58105
|
+
mfn?: string | undefined;
|
|
58078
58106
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
58079
58107
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
58080
58108
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -61169,6 +61197,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61169
61197
|
highlightColor?: string | undefined;
|
|
61170
61198
|
mustBeConnected?: boolean | undefined;
|
|
61171
61199
|
}>>>;
|
|
61200
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
61172
61201
|
} & {
|
|
61173
61202
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
61174
61203
|
voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -61669,6 +61698,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61669
61698
|
doNotPlace?: boolean | undefined;
|
|
61670
61699
|
obstructsWithinBounds?: boolean | undefined;
|
|
61671
61700
|
showAsTranslucentModel?: boolean | undefined;
|
|
61701
|
+
mfn?: string | undefined;
|
|
61672
61702
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
61673
61703
|
voltageRating?: string | number | undefined;
|
|
61674
61704
|
schShowRatings?: boolean | undefined;
|
|
@@ -62169,6 +62199,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62169
62199
|
doNotPlace?: boolean | undefined;
|
|
62170
62200
|
obstructsWithinBounds?: boolean | undefined;
|
|
62171
62201
|
showAsTranslucentModel?: boolean | undefined;
|
|
62202
|
+
mfn?: string | undefined;
|
|
62172
62203
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
62173
62204
|
voltageRating?: string | number | undefined;
|
|
62174
62205
|
schShowRatings?: boolean | undefined;
|
|
@@ -66840,6 +66871,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
66840
66871
|
highlightColor?: string | undefined;
|
|
66841
66872
|
mustBeConnected?: boolean | undefined;
|
|
66842
66873
|
}>>>;
|
|
66874
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
66843
66875
|
} & {
|
|
66844
66876
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
66845
66877
|
pullupFor: z.ZodOptional<z.ZodString>;
|
|
@@ -67343,6 +67375,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67343
67375
|
doNotPlace?: boolean | undefined;
|
|
67344
67376
|
obstructsWithinBounds?: boolean | undefined;
|
|
67345
67377
|
showAsTranslucentModel?: boolean | undefined;
|
|
67378
|
+
mfn?: string | undefined;
|
|
67346
67379
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
67347
67380
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
67348
67381
|
pullupFor?: string | undefined;
|
|
@@ -67846,6 +67879,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67846
67879
|
doNotPlace?: boolean | undefined;
|
|
67847
67880
|
obstructsWithinBounds?: boolean | undefined;
|
|
67848
67881
|
showAsTranslucentModel?: boolean | undefined;
|
|
67882
|
+
mfn?: string | undefined;
|
|
67849
67883
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
67850
67884
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
67851
67885
|
pullupFor?: string | undefined;
|
|
@@ -70923,6 +70957,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
70923
70957
|
highlightColor?: string | undefined;
|
|
70924
70958
|
mustBeConnected?: boolean | undefined;
|
|
70925
70959
|
}>>>;
|
|
70960
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
70926
70961
|
} & {
|
|
70927
70962
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
70928
70963
|
pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
|
|
@@ -71420,6 +71455,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71420
71455
|
doNotPlace?: boolean | undefined;
|
|
71421
71456
|
obstructsWithinBounds?: boolean | undefined;
|
|
71422
71457
|
showAsTranslucentModel?: boolean | undefined;
|
|
71458
|
+
mfn?: string | undefined;
|
|
71423
71459
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
71424
71460
|
}, {
|
|
71425
71461
|
name: string;
|
|
@@ -71917,6 +71953,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71917
71953
|
doNotPlace?: boolean | undefined;
|
|
71918
71954
|
obstructsWithinBounds?: boolean | undefined;
|
|
71919
71955
|
showAsTranslucentModel?: boolean | undefined;
|
|
71956
|
+
mfn?: string | undefined;
|
|
71920
71957
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
71921
71958
|
}>;
|
|
71922
71959
|
|
|
@@ -74994,6 +75031,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
74994
75031
|
highlightColor?: string | undefined;
|
|
74995
75032
|
mustBeConnected?: boolean | undefined;
|
|
74996
75033
|
}>>>;
|
|
75034
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
74997
75035
|
} & {
|
|
74998
75036
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
74999
75037
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -75497,6 +75535,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
75497
75535
|
doNotPlace?: boolean | undefined;
|
|
75498
75536
|
obstructsWithinBounds?: boolean | undefined;
|
|
75499
75537
|
showAsTranslucentModel?: boolean | undefined;
|
|
75538
|
+
mfn?: string | undefined;
|
|
75500
75539
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
75501
75540
|
manufacturerPartNumber?: string | undefined;
|
|
75502
75541
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -75999,6 +76038,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
75999
76038
|
doNotPlace?: boolean | undefined;
|
|
76000
76039
|
obstructsWithinBounds?: boolean | undefined;
|
|
76001
76040
|
showAsTranslucentModel?: boolean | undefined;
|
|
76041
|
+
mfn?: string | undefined;
|
|
76002
76042
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
76003
76043
|
manufacturerPartNumber?: string | undefined;
|
|
76004
76044
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -79074,6 +79114,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79074
79114
|
highlightColor?: string | undefined;
|
|
79075
79115
|
mustBeConnected?: boolean | undefined;
|
|
79076
79116
|
}>>>;
|
|
79117
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
79077
79118
|
} & {
|
|
79078
79119
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
79079
79120
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -79573,6 +79614,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79573
79614
|
doNotPlace?: boolean | undefined;
|
|
79574
79615
|
obstructsWithinBounds?: boolean | undefined;
|
|
79575
79616
|
showAsTranslucentModel?: boolean | undefined;
|
|
79617
|
+
mfn?: string | undefined;
|
|
79576
79618
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
79577
79619
|
}, {
|
|
79578
79620
|
name: string;
|
|
@@ -80071,6 +80113,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80071
80113
|
doNotPlace?: boolean | undefined;
|
|
80072
80114
|
obstructsWithinBounds?: boolean | undefined;
|
|
80073
80115
|
showAsTranslucentModel?: boolean | undefined;
|
|
80116
|
+
mfn?: string | undefined;
|
|
80074
80117
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
80075
80118
|
}>;
|
|
80076
80119
|
|
|
@@ -84598,6 +84641,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
84598
84641
|
highlightColor?: string | undefined;
|
|
84599
84642
|
mustBeConnected?: boolean | undefined;
|
|
84600
84643
|
}>>>;
|
|
84644
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
84601
84645
|
} & {
|
|
84602
84646
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
84603
84647
|
maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -85107,6 +85151,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85107
85151
|
doNotPlace?: boolean | undefined;
|
|
85108
85152
|
obstructsWithinBounds?: boolean | undefined;
|
|
85109
85153
|
showAsTranslucentModel?: boolean | undefined;
|
|
85154
|
+
mfn?: string | undefined;
|
|
85110
85155
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
85111
85156
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
85112
85157
|
schSize?: number | "xs" | "sm" | "md" | "default" | undefined;
|
|
@@ -85612,6 +85657,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85612
85657
|
doNotPlace?: boolean | undefined;
|
|
85613
85658
|
obstructsWithinBounds?: boolean | undefined;
|
|
85614
85659
|
showAsTranslucentModel?: boolean | undefined;
|
|
85660
|
+
mfn?: string | undefined;
|
|
85615
85661
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
85616
85662
|
schShowRatings?: boolean | undefined;
|
|
85617
85663
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -88719,6 +88765,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
88719
88765
|
highlightColor?: string | undefined;
|
|
88720
88766
|
mustBeConnected?: boolean | undefined;
|
|
88721
88767
|
}>>>;
|
|
88768
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
88722
88769
|
} & {
|
|
88723
88770
|
soldermaskPullback: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88724
88771
|
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -89215,6 +89262,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89215
89262
|
doNotPlace?: boolean | undefined;
|
|
89216
89263
|
obstructsWithinBounds?: boolean | undefined;
|
|
89217
89264
|
showAsTranslucentModel?: boolean | undefined;
|
|
89265
|
+
mfn?: string | undefined;
|
|
89218
89266
|
padDiameter?: number | undefined;
|
|
89219
89267
|
soldermaskPullback?: number | undefined;
|
|
89220
89268
|
}, {
|
|
@@ -89712,6 +89760,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89712
89760
|
doNotPlace?: boolean | undefined;
|
|
89713
89761
|
obstructsWithinBounds?: boolean | undefined;
|
|
89714
89762
|
showAsTranslucentModel?: boolean | undefined;
|
|
89763
|
+
mfn?: string | undefined;
|
|
89715
89764
|
padDiameter?: string | number | undefined;
|
|
89716
89765
|
soldermaskPullback?: string | number | undefined;
|
|
89717
89766
|
}>;
|
|
@@ -96936,6 +96985,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
96936
96985
|
highlightColor?: string | undefined;
|
|
96937
96986
|
mustBeConnected?: boolean | undefined;
|
|
96938
96987
|
}>>>;
|
|
96988
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
96939
96989
|
} & {
|
|
96940
96990
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
96941
96991
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -97434,6 +97484,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
97434
97484
|
doNotPlace?: boolean | undefined;
|
|
97435
97485
|
obstructsWithinBounds?: boolean | undefined;
|
|
97436
97486
|
showAsTranslucentModel?: boolean | undefined;
|
|
97487
|
+
mfn?: string | undefined;
|
|
97437
97488
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
97438
97489
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
97439
97490
|
capacity?: number | undefined;
|
|
@@ -97933,6 +97984,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
97933
97984
|
doNotPlace?: boolean | undefined;
|
|
97934
97985
|
obstructsWithinBounds?: boolean | undefined;
|
|
97935
97986
|
showAsTranslucentModel?: boolean | undefined;
|
|
97987
|
+
mfn?: string | undefined;
|
|
97936
97988
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
97937
97989
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
97938
97990
|
capacity?: string | number | undefined;
|
|
@@ -101083,6 +101135,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101083
101135
|
highlightColor?: string | undefined;
|
|
101084
101136
|
mustBeConnected?: boolean | undefined;
|
|
101085
101137
|
}>>>;
|
|
101138
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
101086
101139
|
} & {
|
|
101087
101140
|
pinCount: z.ZodNumber;
|
|
101088
101141
|
pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101724,6 +101777,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101724
101777
|
doNotPlace?: boolean | undefined;
|
|
101725
101778
|
obstructsWithinBounds?: boolean | undefined;
|
|
101726
101779
|
showAsTranslucentModel?: boolean | undefined;
|
|
101780
|
+
mfn?: string | undefined;
|
|
101727
101781
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
101728
101782
|
schPinArrangement?: {
|
|
101729
101783
|
leftSize?: number | undefined;
|
|
@@ -102271,6 +102325,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
102271
102325
|
doNotPlace?: boolean | undefined;
|
|
102272
102326
|
obstructsWithinBounds?: boolean | undefined;
|
|
102273
102327
|
showAsTranslucentModel?: boolean | undefined;
|
|
102328
|
+
mfn?: string | undefined;
|
|
102274
102329
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
102275
102330
|
schPinArrangement?: {
|
|
102276
102331
|
leftSize?: number | undefined;
|
|
@@ -105458,6 +105513,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
105458
105513
|
highlightColor?: string | undefined;
|
|
105459
105514
|
mustBeConnected?: boolean | undefined;
|
|
105460
105515
|
}>>>;
|
|
105516
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
105461
105517
|
} & {
|
|
105462
105518
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
105463
105519
|
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">]>>>;
|
|
@@ -106201,6 +106257,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106201
106257
|
doNotPlace?: boolean | undefined;
|
|
106202
106258
|
obstructsWithinBounds?: boolean | undefined;
|
|
106203
106259
|
showAsTranslucentModel?: boolean | undefined;
|
|
106260
|
+
mfn?: string | undefined;
|
|
106204
106261
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
106205
106262
|
schPinArrangement?: {
|
|
106206
106263
|
leftSize?: number | undefined;
|
|
@@ -106773,6 +106830,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106773
106830
|
doNotPlace?: boolean | undefined;
|
|
106774
106831
|
obstructsWithinBounds?: boolean | undefined;
|
|
106775
106832
|
showAsTranslucentModel?: boolean | undefined;
|
|
106833
|
+
mfn?: string | undefined;
|
|
106776
106834
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
106777
106835
|
schPinArrangement?: {
|
|
106778
106836
|
leftSize?: number | undefined;
|
|
@@ -111285,6 +111343,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
111285
111343
|
highlightColor?: string | undefined;
|
|
111286
111344
|
mustBeConnected?: boolean | undefined;
|
|
111287
111345
|
}>>>;
|
|
111346
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
111288
111347
|
} & {
|
|
111289
111348
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
111290
111349
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -111782,6 +111841,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
111782
111841
|
doNotPlace?: boolean | undefined;
|
|
111783
111842
|
obstructsWithinBounds?: boolean | undefined;
|
|
111784
111843
|
showAsTranslucentModel?: boolean | undefined;
|
|
111844
|
+
mfn?: string | undefined;
|
|
111785
111845
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
111786
111846
|
}, {
|
|
111787
111847
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -112279,6 +112339,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
112279
112339
|
doNotPlace?: boolean | undefined;
|
|
112280
112340
|
obstructsWithinBounds?: boolean | undefined;
|
|
112281
112341
|
showAsTranslucentModel?: boolean | undefined;
|
|
112342
|
+
mfn?: string | undefined;
|
|
112282
112343
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
112283
112344
|
}>;
|
|
112284
112345
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -115350,6 +115411,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
115350
115411
|
highlightColor?: string | undefined;
|
|
115351
115412
|
mustBeConnected?: boolean | undefined;
|
|
115352
115413
|
}>>>;
|
|
115414
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
115353
115415
|
} & {
|
|
115354
115416
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
115355
115417
|
mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
|
|
@@ -115848,6 +115910,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
115848
115910
|
doNotPlace?: boolean | undefined;
|
|
115849
115911
|
obstructsWithinBounds?: boolean | undefined;
|
|
115850
115912
|
showAsTranslucentModel?: boolean | undefined;
|
|
115913
|
+
mfn?: string | undefined;
|
|
115851
115914
|
}, {
|
|
115852
115915
|
name: string;
|
|
115853
115916
|
channelType: "n" | "p";
|
|
@@ -116345,6 +116408,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
116345
116408
|
doNotPlace?: boolean | undefined;
|
|
116346
116409
|
obstructsWithinBounds?: boolean | undefined;
|
|
116347
116410
|
showAsTranslucentModel?: boolean | undefined;
|
|
116411
|
+
mfn?: string | undefined;
|
|
116348
116412
|
}>;
|
|
116349
116413
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
116350
116414
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -119422,6 +119486,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
119422
119486
|
highlightColor?: string | undefined;
|
|
119423
119487
|
mustBeConnected?: boolean | undefined;
|
|
119424
119488
|
}>>>;
|
|
119489
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
119425
119490
|
} & {
|
|
119426
119491
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["inverting_input", "non_inverting_input", "output", "positive_supply", "negative_supply"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
119427
119492
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -119917,6 +119982,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
119917
119982
|
doNotPlace?: boolean | undefined;
|
|
119918
119983
|
obstructsWithinBounds?: boolean | undefined;
|
|
119919
119984
|
showAsTranslucentModel?: boolean | undefined;
|
|
119985
|
+
mfn?: string | undefined;
|
|
119920
119986
|
connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
119921
119987
|
}, {
|
|
119922
119988
|
name: string;
|
|
@@ -120413,6 +120479,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
120413
120479
|
doNotPlace?: boolean | undefined;
|
|
120414
120480
|
obstructsWithinBounds?: boolean | undefined;
|
|
120415
120481
|
showAsTranslucentModel?: boolean | undefined;
|
|
120482
|
+
mfn?: string | undefined;
|
|
120416
120483
|
connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
120417
120484
|
}>;
|
|
120418
120485
|
/**
|
|
@@ -123491,6 +123558,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
123491
123558
|
highlightColor?: string | undefined;
|
|
123492
123559
|
mustBeConnected?: boolean | undefined;
|
|
123493
123560
|
}>>>;
|
|
123561
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
123494
123562
|
} & {
|
|
123495
123563
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
123496
123564
|
maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -123990,6 +124058,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
123990
124058
|
doNotPlace?: boolean | undefined;
|
|
123991
124059
|
obstructsWithinBounds?: boolean | undefined;
|
|
123992
124060
|
showAsTranslucentModel?: boolean | undefined;
|
|
124061
|
+
mfn?: string | undefined;
|
|
123993
124062
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
123994
124063
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
123995
124064
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -124489,6 +124558,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
124489
124558
|
doNotPlace?: boolean | undefined;
|
|
124490
124559
|
obstructsWithinBounds?: boolean | undefined;
|
|
124491
124560
|
showAsTranslucentModel?: boolean | undefined;
|
|
124561
|
+
mfn?: string | undefined;
|
|
124492
124562
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
124493
124563
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
124494
124564
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -127556,6 +127626,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
127556
127626
|
highlightColor?: string | undefined;
|
|
127557
127627
|
mustBeConnected?: boolean | undefined;
|
|
127558
127628
|
}>>>;
|
|
127629
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
127559
127630
|
} & {
|
|
127560
127631
|
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">]>>>;
|
|
127561
127632
|
variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
|
|
@@ -128060,6 +128131,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
128060
128131
|
doNotPlace?: boolean | undefined;
|
|
128061
128132
|
obstructsWithinBounds?: boolean | undefined;
|
|
128062
128133
|
showAsTranslucentModel?: boolean | undefined;
|
|
128134
|
+
mfn?: string | undefined;
|
|
128063
128135
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
128064
128136
|
standard?: boolean | undefined;
|
|
128065
128137
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -128563,6 +128635,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
128563
128635
|
doNotPlace?: boolean | undefined;
|
|
128564
128636
|
obstructsWithinBounds?: boolean | undefined;
|
|
128565
128637
|
showAsTranslucentModel?: boolean | undefined;
|
|
128638
|
+
mfn?: string | undefined;
|
|
128566
128639
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
128567
128640
|
standard?: boolean | undefined;
|
|
128568
128641
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -129066,6 +129139,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129066
129139
|
doNotPlace?: boolean | undefined;
|
|
129067
129140
|
obstructsWithinBounds?: boolean | undefined;
|
|
129068
129141
|
showAsTranslucentModel?: boolean | undefined;
|
|
129142
|
+
mfn?: string | undefined;
|
|
129069
129143
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
129070
129144
|
standard?: boolean | undefined;
|
|
129071
129145
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -129569,6 +129643,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129569
129643
|
doNotPlace?: boolean | undefined;
|
|
129570
129644
|
obstructsWithinBounds?: boolean | undefined;
|
|
129571
129645
|
showAsTranslucentModel?: boolean | undefined;
|
|
129646
|
+
mfn?: string | undefined;
|
|
129572
129647
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
129573
129648
|
standard?: boolean | undefined;
|
|
129574
129649
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -130078,6 +130153,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130078
130153
|
doNotPlace?: boolean | undefined;
|
|
130079
130154
|
obstructsWithinBounds?: boolean | undefined;
|
|
130080
130155
|
showAsTranslucentModel?: boolean | undefined;
|
|
130156
|
+
mfn?: string | undefined;
|
|
130081
130157
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
130082
130158
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
130083
130159
|
}, {
|
|
@@ -130575,6 +130651,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130575
130651
|
doNotPlace?: boolean | undefined;
|
|
130576
130652
|
obstructsWithinBounds?: boolean | undefined;
|
|
130577
130653
|
showAsTranslucentModel?: boolean | undefined;
|
|
130654
|
+
mfn?: string | undefined;
|
|
130578
130655
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
130579
130656
|
standard?: boolean | undefined;
|
|
130580
130657
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -133670,6 +133747,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
133670
133747
|
highlightColor?: string | undefined;
|
|
133671
133748
|
mustBeConnected?: boolean | undefined;
|
|
133672
133749
|
}>>>;
|
|
133750
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
133673
133751
|
} & {
|
|
133674
133752
|
color: z.ZodOptional<z.ZodString>;
|
|
133675
133753
|
wavelength: z.ZodOptional<z.ZodString>;
|
|
@@ -134170,6 +134248,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
134170
134248
|
doNotPlace?: boolean | undefined;
|
|
134171
134249
|
obstructsWithinBounds?: boolean | undefined;
|
|
134172
134250
|
showAsTranslucentModel?: boolean | undefined;
|
|
134251
|
+
mfn?: string | undefined;
|
|
134173
134252
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
134174
134253
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
134175
134254
|
color?: string | undefined;
|
|
@@ -134671,6 +134750,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
134671
134750
|
doNotPlace?: boolean | undefined;
|
|
134672
134751
|
obstructsWithinBounds?: boolean | undefined;
|
|
134673
134752
|
showAsTranslucentModel?: boolean | undefined;
|
|
134753
|
+
mfn?: string | undefined;
|
|
134674
134754
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
134675
134755
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
134676
134756
|
color?: string | undefined;
|
|
@@ -137757,6 +137837,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
137757
137837
|
highlightColor?: string | undefined;
|
|
137758
137838
|
mustBeConnected?: boolean | undefined;
|
|
137759
137839
|
}>>>;
|
|
137840
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
137760
137841
|
} & {
|
|
137761
137842
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
137762
137843
|
isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -138265,6 +138346,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
138265
138346
|
doNotPlace?: boolean | undefined;
|
|
138266
138347
|
obstructsWithinBounds?: boolean | undefined;
|
|
138267
138348
|
showAsTranslucentModel?: boolean | undefined;
|
|
138349
|
+
mfn?: string | undefined;
|
|
138268
138350
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
138269
138351
|
spst?: boolean | undefined;
|
|
138270
138352
|
spdt?: boolean | undefined;
|
|
@@ -138771,6 +138853,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
138771
138853
|
doNotPlace?: boolean | undefined;
|
|
138772
138854
|
obstructsWithinBounds?: boolean | undefined;
|
|
138773
138855
|
showAsTranslucentModel?: boolean | undefined;
|
|
138856
|
+
mfn?: string | undefined;
|
|
138774
138857
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
138775
138858
|
spst?: boolean | undefined;
|
|
138776
138859
|
spdt?: boolean | undefined;
|
|
@@ -139278,6 +139361,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
139278
139361
|
doNotPlace?: boolean | undefined;
|
|
139279
139362
|
obstructsWithinBounds?: boolean | undefined;
|
|
139280
139363
|
showAsTranslucentModel?: boolean | undefined;
|
|
139364
|
+
mfn?: string | undefined;
|
|
139281
139365
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
139282
139366
|
spst?: boolean | undefined;
|
|
139283
139367
|
spdt?: boolean | undefined;
|
|
@@ -143346,6 +143430,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
143346
143430
|
highlightColor?: string | undefined;
|
|
143347
143431
|
mustBeConnected?: boolean | undefined;
|
|
143348
143432
|
}>>>;
|
|
143433
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
143349
143434
|
} & {
|
|
143350
143435
|
connections: z.ZodOptional<z.ZodObject<{
|
|
143351
143436
|
pin1: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>;
|
|
@@ -143854,6 +143939,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
143854
143939
|
doNotPlace?: boolean | undefined;
|
|
143855
143940
|
obstructsWithinBounds?: boolean | undefined;
|
|
143856
143941
|
showAsTranslucentModel?: boolean | undefined;
|
|
143942
|
+
mfn?: string | undefined;
|
|
143857
143943
|
width?: number | undefined;
|
|
143858
143944
|
height?: number | undefined;
|
|
143859
143945
|
connections?: {
|
|
@@ -144357,6 +144443,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
144357
144443
|
doNotPlace?: boolean | undefined;
|
|
144358
144444
|
obstructsWithinBounds?: boolean | undefined;
|
|
144359
144445
|
showAsTranslucentModel?: boolean | undefined;
|
|
144446
|
+
mfn?: string | undefined;
|
|
144360
144447
|
width?: string | number | undefined;
|
|
144361
144448
|
height?: string | number | undefined;
|
|
144362
144449
|
connections?: {
|
|
@@ -144860,6 +144947,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
144860
144947
|
doNotPlace?: boolean | undefined;
|
|
144861
144948
|
obstructsWithinBounds?: boolean | undefined;
|
|
144862
144949
|
showAsTranslucentModel?: boolean | undefined;
|
|
144950
|
+
mfn?: string | undefined;
|
|
144863
144951
|
width?: number | undefined;
|
|
144864
144952
|
height?: number | undefined;
|
|
144865
144953
|
connections?: {
|
|
@@ -145363,6 +145451,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
145363
145451
|
doNotPlace?: boolean | undefined;
|
|
145364
145452
|
obstructsWithinBounds?: boolean | undefined;
|
|
145365
145453
|
showAsTranslucentModel?: boolean | undefined;
|
|
145454
|
+
mfn?: string | undefined;
|
|
145366
145455
|
width?: string | number | undefined;
|
|
145367
145456
|
height?: string | number | undefined;
|
|
145368
145457
|
connections?: {
|
|
@@ -149370,6 +149459,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
149370
149459
|
highlightColor?: string | undefined;
|
|
149371
149460
|
mustBeConnected?: boolean | undefined;
|
|
149372
149461
|
}>>>;
|
|
149462
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
149373
149463
|
} & {
|
|
149374
149464
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
149375
149465
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -149866,6 +149956,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
149866
149956
|
doNotPlace?: boolean | undefined;
|
|
149867
149957
|
obstructsWithinBounds?: boolean | undefined;
|
|
149868
149958
|
showAsTranslucentModel?: boolean | undefined;
|
|
149959
|
+
mfn?: string | undefined;
|
|
149869
149960
|
}, {
|
|
149870
149961
|
name: string;
|
|
149871
149962
|
voltage: string | number;
|
|
@@ -150362,6 +150453,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
150362
150453
|
doNotPlace?: boolean | undefined;
|
|
150363
150454
|
obstructsWithinBounds?: boolean | undefined;
|
|
150364
150455
|
showAsTranslucentModel?: boolean | undefined;
|
|
150456
|
+
mfn?: string | undefined;
|
|
150365
150457
|
}>;
|
|
150366
150458
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
150367
150459
|
|
|
@@ -153439,6 +153531,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
153439
153531
|
highlightColor?: string | undefined;
|
|
153440
153532
|
mustBeConnected?: boolean | undefined;
|
|
153441
153533
|
}>>>;
|
|
153534
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
153442
153535
|
} & {
|
|
153443
153536
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
153444
153537
|
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -153940,6 +154033,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
153940
154033
|
doNotPlace?: boolean | undefined;
|
|
153941
154034
|
obstructsWithinBounds?: boolean | undefined;
|
|
153942
154035
|
showAsTranslucentModel?: boolean | undefined;
|
|
154036
|
+
mfn?: string | undefined;
|
|
153943
154037
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
153944
154038
|
frequency?: number | undefined;
|
|
153945
154039
|
voltage?: number | undefined;
|
|
@@ -154442,6 +154536,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
154442
154536
|
doNotPlace?: boolean | undefined;
|
|
154443
154537
|
obstructsWithinBounds?: boolean | undefined;
|
|
154444
154538
|
showAsTranslucentModel?: boolean | undefined;
|
|
154539
|
+
mfn?: string | undefined;
|
|
154445
154540
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
154446
154541
|
frequency?: string | number | undefined;
|
|
154447
154542
|
voltage?: string | number | undefined;
|
|
@@ -157525,6 +157620,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
157525
157620
|
highlightColor?: string | undefined;
|
|
157526
157621
|
mustBeConnected?: boolean | undefined;
|
|
157527
157622
|
}>>>;
|
|
157623
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
157528
157624
|
} & {
|
|
157529
157625
|
current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
157530
157626
|
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -158026,6 +158122,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
158026
158122
|
doNotPlace?: boolean | undefined;
|
|
158027
158123
|
obstructsWithinBounds?: boolean | undefined;
|
|
158028
158124
|
showAsTranslucentModel?: boolean | undefined;
|
|
158125
|
+
mfn?: string | undefined;
|
|
158029
158126
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158030
158127
|
frequency?: number | undefined;
|
|
158031
158128
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -158528,6 +158625,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
158528
158625
|
doNotPlace?: boolean | undefined;
|
|
158529
158626
|
obstructsWithinBounds?: boolean | undefined;
|
|
158530
158627
|
showAsTranslucentModel?: boolean | undefined;
|
|
158628
|
+
mfn?: string | undefined;
|
|
158531
158629
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158532
158630
|
frequency?: string | number | undefined;
|
|
158533
158631
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -161606,6 +161704,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
161606
161704
|
highlightColor?: string | undefined;
|
|
161607
161705
|
mustBeConnected?: boolean | undefined;
|
|
161608
161706
|
}>>>;
|
|
161707
|
+
mfn: z.ZodOptional<z.ZodString>;
|
|
161609
161708
|
}, "name"> & {
|
|
161610
161709
|
name: z.ZodOptional<z.ZodString>;
|
|
161611
161710
|
connectsTo: z.ZodString;
|
|
@@ -162105,6 +162204,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
162105
162204
|
doNotPlace?: boolean | undefined;
|
|
162106
162205
|
obstructsWithinBounds?: boolean | undefined;
|
|
162107
162206
|
showAsTranslucentModel?: boolean | undefined;
|
|
162207
|
+
mfn?: string | undefined;
|
|
162108
162208
|
color?: string | undefined;
|
|
162109
162209
|
referenceTo?: string | undefined;
|
|
162110
162210
|
}, {
|
|
@@ -162603,6 +162703,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
162603
162703
|
doNotPlace?: boolean | undefined;
|
|
162604
162704
|
obstructsWithinBounds?: boolean | undefined;
|
|
162605
162705
|
showAsTranslucentModel?: boolean | undefined;
|
|
162706
|
+
mfn?: string | undefined;
|
|
162606
162707
|
color?: string | undefined;
|
|
162607
162708
|
referenceTo?: string | undefined;
|
|
162608
162709
|
}>;
|