@tscircuit/core 0.0.871 → 0.0.872
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 +233 -4
- package/dist/index.js +56 -23
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -4409,6 +4409,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4409
4409
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
4410
4410
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
4411
4411
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
4412
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
4412
4413
|
}, "strip", zod.ZodTypeAny, {
|
|
4413
4414
|
providesPower?: boolean | undefined;
|
|
4414
4415
|
requiresPower?: boolean | undefined;
|
|
@@ -4419,6 +4420,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4419
4420
|
doNotConnect?: boolean | undefined;
|
|
4420
4421
|
includeInBoardPinout?: boolean | undefined;
|
|
4421
4422
|
highlightColor?: string | undefined;
|
|
4423
|
+
mustBeConnected?: boolean | undefined;
|
|
4422
4424
|
}, {
|
|
4423
4425
|
providesPower?: boolean | undefined;
|
|
4424
4426
|
requiresPower?: boolean | undefined;
|
|
@@ -4429,6 +4431,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4429
4431
|
doNotConnect?: boolean | undefined;
|
|
4430
4432
|
includeInBoardPinout?: boolean | undefined;
|
|
4431
4433
|
highlightColor?: string | undefined;
|
|
4434
|
+
mustBeConnected?: boolean | undefined;
|
|
4432
4435
|
}>>>;
|
|
4433
4436
|
} & {
|
|
4434
4437
|
capacitance: zod.ZodEffects<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4495,6 +4498,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4495
4498
|
doNotConnect?: boolean | undefined;
|
|
4496
4499
|
includeInBoardPinout?: boolean | undefined;
|
|
4497
4500
|
highlightColor?: string | undefined;
|
|
4501
|
+
mustBeConnected?: boolean | undefined;
|
|
4498
4502
|
}> | undefined;
|
|
4499
4503
|
cadModel?: string | {
|
|
4500
4504
|
stlUrl: string;
|
|
@@ -4696,6 +4700,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4696
4700
|
doNotConnect?: boolean | undefined;
|
|
4697
4701
|
includeInBoardPinout?: boolean | undefined;
|
|
4698
4702
|
highlightColor?: string | undefined;
|
|
4703
|
+
mustBeConnected?: boolean | undefined;
|
|
4699
4704
|
}> | undefined;
|
|
4700
4705
|
cadModel?: string | {
|
|
4701
4706
|
stlUrl: string;
|
|
@@ -5523,6 +5528,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5523
5528
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
5524
5529
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
5525
5530
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
5531
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
5526
5532
|
}, "strip", z.ZodTypeAny, {
|
|
5527
5533
|
providesPower?: boolean | undefined;
|
|
5528
5534
|
requiresPower?: boolean | undefined;
|
|
@@ -5533,6 +5539,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5533
5539
|
doNotConnect?: boolean | undefined;
|
|
5534
5540
|
includeInBoardPinout?: boolean | undefined;
|
|
5535
5541
|
highlightColor?: string | undefined;
|
|
5542
|
+
mustBeConnected?: boolean | undefined;
|
|
5536
5543
|
}, {
|
|
5537
5544
|
providesPower?: boolean | undefined;
|
|
5538
5545
|
requiresPower?: boolean | undefined;
|
|
@@ -5543,6 +5550,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5543
5550
|
doNotConnect?: boolean | undefined;
|
|
5544
5551
|
includeInBoardPinout?: boolean | undefined;
|
|
5545
5552
|
highlightColor?: string | undefined;
|
|
5553
|
+
mustBeConnected?: boolean | undefined;
|
|
5546
5554
|
}>>>;
|
|
5547
5555
|
} & {
|
|
5548
5556
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -5844,6 +5852,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5844
5852
|
doNotConnect?: boolean | undefined;
|
|
5845
5853
|
includeInBoardPinout?: boolean | undefined;
|
|
5846
5854
|
highlightColor?: string | undefined;
|
|
5855
|
+
mustBeConnected?: boolean | undefined;
|
|
5847
5856
|
}> | undefined;
|
|
5848
5857
|
cadModel?: string | {
|
|
5849
5858
|
stlUrl: string;
|
|
@@ -6113,6 +6122,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
6113
6122
|
doNotConnect?: boolean | undefined;
|
|
6114
6123
|
includeInBoardPinout?: boolean | undefined;
|
|
6115
6124
|
highlightColor?: string | undefined;
|
|
6125
|
+
mustBeConnected?: boolean | undefined;
|
|
6116
6126
|
}> | undefined;
|
|
6117
6127
|
cadModel?: string | {
|
|
6118
6128
|
stlUrl: string;
|
|
@@ -7007,6 +7017,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7007
7017
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
7008
7018
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
7009
7019
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
7020
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
7010
7021
|
}, "strip", z.ZodTypeAny, {
|
|
7011
7022
|
providesPower?: boolean | undefined;
|
|
7012
7023
|
requiresPower?: boolean | undefined;
|
|
@@ -7017,6 +7028,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7017
7028
|
doNotConnect?: boolean | undefined;
|
|
7018
7029
|
includeInBoardPinout?: boolean | undefined;
|
|
7019
7030
|
highlightColor?: string | undefined;
|
|
7031
|
+
mustBeConnected?: boolean | undefined;
|
|
7020
7032
|
}, {
|
|
7021
7033
|
providesPower?: boolean | undefined;
|
|
7022
7034
|
requiresPower?: boolean | undefined;
|
|
@@ -7027,6 +7039,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7027
7039
|
doNotConnect?: boolean | undefined;
|
|
7028
7040
|
includeInBoardPinout?: boolean | undefined;
|
|
7029
7041
|
highlightColor?: string | undefined;
|
|
7042
|
+
mustBeConnected?: boolean | undefined;
|
|
7030
7043
|
}>>>;
|
|
7031
7044
|
} & {
|
|
7032
7045
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -7328,6 +7341,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7328
7341
|
doNotConnect?: boolean | undefined;
|
|
7329
7342
|
includeInBoardPinout?: boolean | undefined;
|
|
7330
7343
|
highlightColor?: string | undefined;
|
|
7344
|
+
mustBeConnected?: boolean | undefined;
|
|
7331
7345
|
}> | undefined;
|
|
7332
7346
|
cadModel?: string | {
|
|
7333
7347
|
stlUrl: string;
|
|
@@ -7597,6 +7611,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7597
7611
|
doNotConnect?: boolean | undefined;
|
|
7598
7612
|
includeInBoardPinout?: boolean | undefined;
|
|
7599
7613
|
highlightColor?: string | undefined;
|
|
7614
|
+
mustBeConnected?: boolean | undefined;
|
|
7600
7615
|
}> | undefined;
|
|
7601
7616
|
cadModel?: string | {
|
|
7602
7617
|
stlUrl: string;
|
|
@@ -8486,6 +8501,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8486
8501
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
8487
8502
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
8488
8503
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
8504
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
8489
8505
|
}, "strip", zod.ZodTypeAny, {
|
|
8490
8506
|
providesPower?: boolean | undefined;
|
|
8491
8507
|
requiresPower?: boolean | undefined;
|
|
@@ -8496,6 +8512,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8496
8512
|
doNotConnect?: boolean | undefined;
|
|
8497
8513
|
includeInBoardPinout?: boolean | undefined;
|
|
8498
8514
|
highlightColor?: string | undefined;
|
|
8515
|
+
mustBeConnected?: boolean | undefined;
|
|
8499
8516
|
}, {
|
|
8500
8517
|
providesPower?: boolean | undefined;
|
|
8501
8518
|
requiresPower?: boolean | undefined;
|
|
@@ -8506,6 +8523,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8506
8523
|
doNotConnect?: boolean | undefined;
|
|
8507
8524
|
includeInBoardPinout?: boolean | undefined;
|
|
8508
8525
|
highlightColor?: string | undefined;
|
|
8526
|
+
mustBeConnected?: boolean | undefined;
|
|
8509
8527
|
}>>>;
|
|
8510
8528
|
} & {
|
|
8511
8529
|
connections: zod.ZodOptional<zod.ZodRecord<zod.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, zod.ZodUnion<[zod.ZodUnion<[zod.ZodString, zod.ZodReadonly<zod.ZodArray<zod.ZodString, "many">>]>, zod.ZodArray<zod.ZodString, "many">]>>>;
|
|
@@ -8568,6 +8586,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8568
8586
|
doNotConnect?: boolean | undefined;
|
|
8569
8587
|
includeInBoardPinout?: boolean | undefined;
|
|
8570
8588
|
highlightColor?: string | undefined;
|
|
8589
|
+
mustBeConnected?: boolean | undefined;
|
|
8571
8590
|
}> | undefined;
|
|
8572
8591
|
cadModel?: string | {
|
|
8573
8592
|
stlUrl: string;
|
|
@@ -8768,6 +8787,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8768
8787
|
doNotConnect?: boolean | undefined;
|
|
8769
8788
|
includeInBoardPinout?: boolean | undefined;
|
|
8770
8789
|
highlightColor?: string | undefined;
|
|
8790
|
+
mustBeConnected?: boolean | undefined;
|
|
8771
8791
|
}> | undefined;
|
|
8772
8792
|
cadModel?: string | {
|
|
8773
8793
|
stlUrl: string;
|
|
@@ -8968,6 +8988,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8968
8988
|
doNotConnect?: boolean | undefined;
|
|
8969
8989
|
includeInBoardPinout?: boolean | undefined;
|
|
8970
8990
|
highlightColor?: string | undefined;
|
|
8991
|
+
mustBeConnected?: boolean | undefined;
|
|
8971
8992
|
}> | undefined;
|
|
8972
8993
|
cadModel?: string | {
|
|
8973
8994
|
stlUrl: string;
|
|
@@ -9168,6 +9189,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9168
9189
|
doNotConnect?: boolean | undefined;
|
|
9169
9190
|
includeInBoardPinout?: boolean | undefined;
|
|
9170
9191
|
highlightColor?: string | undefined;
|
|
9192
|
+
mustBeConnected?: boolean | undefined;
|
|
9171
9193
|
}> | undefined;
|
|
9172
9194
|
cadModel?: string | {
|
|
9173
9195
|
stlUrl: string;
|
|
@@ -9374,6 +9396,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9374
9396
|
doNotConnect?: boolean | undefined;
|
|
9375
9397
|
includeInBoardPinout?: boolean | undefined;
|
|
9376
9398
|
highlightColor?: string | undefined;
|
|
9399
|
+
mustBeConnected?: boolean | undefined;
|
|
9377
9400
|
}> | undefined;
|
|
9378
9401
|
cadModel?: string | {
|
|
9379
9402
|
stlUrl: string;
|
|
@@ -9568,6 +9591,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9568
9591
|
doNotConnect?: boolean | undefined;
|
|
9569
9592
|
includeInBoardPinout?: boolean | undefined;
|
|
9570
9593
|
highlightColor?: string | undefined;
|
|
9594
|
+
mustBeConnected?: boolean | undefined;
|
|
9571
9595
|
}> | undefined;
|
|
9572
9596
|
cadModel?: string | {
|
|
9573
9597
|
stlUrl: string;
|
|
@@ -10394,6 +10418,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10394
10418
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
10395
10419
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
10396
10420
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
10421
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
10397
10422
|
}, "strip", zod.ZodTypeAny, {
|
|
10398
10423
|
providesPower?: boolean | undefined;
|
|
10399
10424
|
requiresPower?: boolean | undefined;
|
|
@@ -10404,6 +10429,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10404
10429
|
doNotConnect?: boolean | undefined;
|
|
10405
10430
|
includeInBoardPinout?: boolean | undefined;
|
|
10406
10431
|
highlightColor?: string | undefined;
|
|
10432
|
+
mustBeConnected?: boolean | undefined;
|
|
10407
10433
|
}, {
|
|
10408
10434
|
providesPower?: boolean | undefined;
|
|
10409
10435
|
requiresPower?: boolean | undefined;
|
|
@@ -10414,6 +10440,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10414
10440
|
doNotConnect?: boolean | undefined;
|
|
10415
10441
|
includeInBoardPinout?: boolean | undefined;
|
|
10416
10442
|
highlightColor?: string | undefined;
|
|
10443
|
+
mustBeConnected?: boolean | undefined;
|
|
10417
10444
|
}>>>;
|
|
10418
10445
|
} & {
|
|
10419
10446
|
currentRating: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10472,6 +10499,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10472
10499
|
doNotConnect?: boolean | undefined;
|
|
10473
10500
|
includeInBoardPinout?: boolean | undefined;
|
|
10474
10501
|
highlightColor?: string | undefined;
|
|
10502
|
+
mustBeConnected?: boolean | undefined;
|
|
10475
10503
|
}> | undefined;
|
|
10476
10504
|
cadModel?: string | {
|
|
10477
10505
|
stlUrl: string;
|
|
@@ -10669,6 +10697,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10669
10697
|
doNotConnect?: boolean | undefined;
|
|
10670
10698
|
includeInBoardPinout?: boolean | undefined;
|
|
10671
10699
|
highlightColor?: string | undefined;
|
|
10700
|
+
mustBeConnected?: boolean | undefined;
|
|
10672
10701
|
}> | undefined;
|
|
10673
10702
|
cadModel?: string | {
|
|
10674
10703
|
stlUrl: string;
|
|
@@ -11487,6 +11516,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11487
11516
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
11488
11517
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
11489
11518
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
11519
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
11490
11520
|
}, "strip", zod.ZodTypeAny, {
|
|
11491
11521
|
providesPower?: boolean | undefined;
|
|
11492
11522
|
requiresPower?: boolean | undefined;
|
|
@@ -11497,6 +11527,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11497
11527
|
doNotConnect?: boolean | undefined;
|
|
11498
11528
|
includeInBoardPinout?: boolean | undefined;
|
|
11499
11529
|
highlightColor?: string | undefined;
|
|
11530
|
+
mustBeConnected?: boolean | undefined;
|
|
11500
11531
|
}, {
|
|
11501
11532
|
providesPower?: boolean | undefined;
|
|
11502
11533
|
requiresPower?: boolean | undefined;
|
|
@@ -11507,6 +11538,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11507
11538
|
doNotConnect?: boolean | undefined;
|
|
11508
11539
|
includeInBoardPinout?: boolean | undefined;
|
|
11509
11540
|
highlightColor?: string | undefined;
|
|
11541
|
+
mustBeConnected?: boolean | undefined;
|
|
11510
11542
|
}>>>;
|
|
11511
11543
|
} & {
|
|
11512
11544
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -11797,6 +11829,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11797
11829
|
doNotConnect?: boolean | undefined;
|
|
11798
11830
|
includeInBoardPinout?: boolean | undefined;
|
|
11799
11831
|
highlightColor?: string | undefined;
|
|
11832
|
+
mustBeConnected?: boolean | undefined;
|
|
11800
11833
|
}> | undefined;
|
|
11801
11834
|
cadModel?: string | {
|
|
11802
11835
|
stlUrl: string;
|
|
@@ -12061,6 +12094,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
12061
12094
|
doNotConnect?: boolean | undefined;
|
|
12062
12095
|
includeInBoardPinout?: boolean | undefined;
|
|
12063
12096
|
highlightColor?: string | undefined;
|
|
12097
|
+
mustBeConnected?: boolean | undefined;
|
|
12064
12098
|
}> | undefined;
|
|
12065
12099
|
cadModel?: string | {
|
|
12066
12100
|
stlUrl: string;
|
|
@@ -12951,6 +12985,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12951
12985
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
12952
12986
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
12953
12987
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
12988
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
12954
12989
|
}, "strip", zod.ZodTypeAny, {
|
|
12955
12990
|
providesPower?: boolean | undefined;
|
|
12956
12991
|
requiresPower?: boolean | undefined;
|
|
@@ -12961,6 +12996,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12961
12996
|
doNotConnect?: boolean | undefined;
|
|
12962
12997
|
includeInBoardPinout?: boolean | undefined;
|
|
12963
12998
|
highlightColor?: string | undefined;
|
|
12999
|
+
mustBeConnected?: boolean | undefined;
|
|
12964
13000
|
}, {
|
|
12965
13001
|
providesPower?: boolean | undefined;
|
|
12966
13002
|
requiresPower?: boolean | undefined;
|
|
@@ -12971,6 +13007,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12971
13007
|
doNotConnect?: boolean | undefined;
|
|
12972
13008
|
includeInBoardPinout?: boolean | undefined;
|
|
12973
13009
|
highlightColor?: string | undefined;
|
|
13010
|
+
mustBeConnected?: boolean | undefined;
|
|
12974
13011
|
}>>>;
|
|
12975
13012
|
} & {
|
|
12976
13013
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -13264,6 +13301,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
13264
13301
|
doNotConnect?: boolean | undefined;
|
|
13265
13302
|
includeInBoardPinout?: boolean | undefined;
|
|
13266
13303
|
highlightColor?: string | undefined;
|
|
13304
|
+
mustBeConnected?: boolean | undefined;
|
|
13267
13305
|
}> | undefined;
|
|
13268
13306
|
cadModel?: string | {
|
|
13269
13307
|
stlUrl: string;
|
|
@@ -13530,6 +13568,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
13530
13568
|
doNotConnect?: boolean | undefined;
|
|
13531
13569
|
includeInBoardPinout?: boolean | undefined;
|
|
13532
13570
|
highlightColor?: string | undefined;
|
|
13571
|
+
mustBeConnected?: boolean | undefined;
|
|
13533
13572
|
}> | undefined;
|
|
13534
13573
|
cadModel?: string | {
|
|
13535
13574
|
stlUrl: string;
|
|
@@ -14419,6 +14458,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14419
14458
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
14420
14459
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
14421
14460
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
14461
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
14422
14462
|
}, "strip", zod.ZodTypeAny, {
|
|
14423
14463
|
providesPower?: boolean | undefined;
|
|
14424
14464
|
requiresPower?: boolean | undefined;
|
|
@@ -14429,6 +14469,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14429
14469
|
doNotConnect?: boolean | undefined;
|
|
14430
14470
|
includeInBoardPinout?: boolean | undefined;
|
|
14431
14471
|
highlightColor?: string | undefined;
|
|
14472
|
+
mustBeConnected?: boolean | undefined;
|
|
14432
14473
|
}, {
|
|
14433
14474
|
providesPower?: boolean | undefined;
|
|
14434
14475
|
requiresPower?: boolean | undefined;
|
|
@@ -14439,6 +14480,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14439
14480
|
doNotConnect?: boolean | undefined;
|
|
14440
14481
|
includeInBoardPinout?: boolean | undefined;
|
|
14441
14482
|
highlightColor?: string | undefined;
|
|
14483
|
+
mustBeConnected?: boolean | undefined;
|
|
14442
14484
|
}>>>;
|
|
14443
14485
|
} & {
|
|
14444
14486
|
color: zod.ZodOptional<zod.ZodString>;
|
|
@@ -14497,6 +14539,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14497
14539
|
doNotConnect?: boolean | undefined;
|
|
14498
14540
|
includeInBoardPinout?: boolean | undefined;
|
|
14499
14541
|
highlightColor?: string | undefined;
|
|
14542
|
+
mustBeConnected?: boolean | undefined;
|
|
14500
14543
|
}> | undefined;
|
|
14501
14544
|
cadModel?: string | {
|
|
14502
14545
|
stlUrl: string;
|
|
@@ -14695,6 +14738,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14695
14738
|
doNotConnect?: boolean | undefined;
|
|
14696
14739
|
includeInBoardPinout?: boolean | undefined;
|
|
14697
14740
|
highlightColor?: string | undefined;
|
|
14741
|
+
mustBeConnected?: boolean | undefined;
|
|
14698
14742
|
}> | undefined;
|
|
14699
14743
|
cadModel?: string | {
|
|
14700
14744
|
stlUrl: string;
|
|
@@ -15520,6 +15564,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15520
15564
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
15521
15565
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
15522
15566
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
15567
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
15523
15568
|
}, "strip", zod.ZodTypeAny, {
|
|
15524
15569
|
providesPower?: boolean | undefined;
|
|
15525
15570
|
requiresPower?: boolean | undefined;
|
|
@@ -15530,6 +15575,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15530
15575
|
doNotConnect?: boolean | undefined;
|
|
15531
15576
|
includeInBoardPinout?: boolean | undefined;
|
|
15532
15577
|
highlightColor?: string | undefined;
|
|
15578
|
+
mustBeConnected?: boolean | undefined;
|
|
15533
15579
|
}, {
|
|
15534
15580
|
providesPower?: boolean | undefined;
|
|
15535
15581
|
requiresPower?: boolean | undefined;
|
|
@@ -15540,6 +15586,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15540
15586
|
doNotConnect?: boolean | undefined;
|
|
15541
15587
|
includeInBoardPinout?: boolean | undefined;
|
|
15542
15588
|
highlightColor?: string | undefined;
|
|
15589
|
+
mustBeConnected?: boolean | undefined;
|
|
15543
15590
|
}>>>;
|
|
15544
15591
|
} & {
|
|
15545
15592
|
voltage: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -15594,6 +15641,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15594
15641
|
doNotConnect?: boolean | undefined;
|
|
15595
15642
|
includeInBoardPinout?: boolean | undefined;
|
|
15596
15643
|
highlightColor?: string | undefined;
|
|
15644
|
+
mustBeConnected?: boolean | undefined;
|
|
15597
15645
|
}> | undefined;
|
|
15598
15646
|
cadModel?: string | {
|
|
15599
15647
|
stlUrl: string;
|
|
@@ -15787,6 +15835,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15787
15835
|
doNotConnect?: boolean | undefined;
|
|
15788
15836
|
includeInBoardPinout?: boolean | undefined;
|
|
15789
15837
|
highlightColor?: string | undefined;
|
|
15838
|
+
mustBeConnected?: boolean | undefined;
|
|
15790
15839
|
}> | undefined;
|
|
15791
15840
|
cadModel?: string | {
|
|
15792
15841
|
stlUrl: string;
|
|
@@ -16609,6 +16658,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16609
16658
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16610
16659
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
16611
16660
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
16661
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
16612
16662
|
}, "strip", z.ZodTypeAny, {
|
|
16613
16663
|
providesPower?: boolean | undefined;
|
|
16614
16664
|
requiresPower?: boolean | undefined;
|
|
@@ -16619,6 +16669,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16619
16669
|
doNotConnect?: boolean | undefined;
|
|
16620
16670
|
includeInBoardPinout?: boolean | undefined;
|
|
16621
16671
|
highlightColor?: string | undefined;
|
|
16672
|
+
mustBeConnected?: boolean | undefined;
|
|
16622
16673
|
}, {
|
|
16623
16674
|
providesPower?: boolean | undefined;
|
|
16624
16675
|
requiresPower?: boolean | undefined;
|
|
@@ -16629,6 +16680,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16629
16680
|
doNotConnect?: boolean | undefined;
|
|
16630
16681
|
includeInBoardPinout?: boolean | undefined;
|
|
16631
16682
|
highlightColor?: string | undefined;
|
|
16683
|
+
mustBeConnected?: boolean | undefined;
|
|
16632
16684
|
}>>>;
|
|
16633
16685
|
} & {
|
|
16634
16686
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16827,6 +16879,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16827
16879
|
doNotConnect?: boolean | undefined;
|
|
16828
16880
|
includeInBoardPinout?: boolean | undefined;
|
|
16829
16881
|
highlightColor?: string | undefined;
|
|
16882
|
+
mustBeConnected?: boolean | undefined;
|
|
16830
16883
|
}> | undefined;
|
|
16831
16884
|
voltage?: number | undefined;
|
|
16832
16885
|
frequency?: number | undefined;
|
|
@@ -17025,6 +17078,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
17025
17078
|
doNotConnect?: boolean | undefined;
|
|
17026
17079
|
includeInBoardPinout?: boolean | undefined;
|
|
17027
17080
|
highlightColor?: string | undefined;
|
|
17081
|
+
mustBeConnected?: boolean | undefined;
|
|
17028
17082
|
}> | undefined;
|
|
17029
17083
|
voltage?: string | number | undefined;
|
|
17030
17084
|
frequency?: string | number | undefined;
|
|
@@ -17698,6 +17752,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17698
17752
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
17699
17753
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
17700
17754
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
17755
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
17701
17756
|
}, "strip", z.ZodTypeAny, {
|
|
17702
17757
|
providesPower?: boolean | undefined;
|
|
17703
17758
|
requiresPower?: boolean | undefined;
|
|
@@ -17708,6 +17763,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17708
17763
|
doNotConnect?: boolean | undefined;
|
|
17709
17764
|
includeInBoardPinout?: boolean | undefined;
|
|
17710
17765
|
highlightColor?: string | undefined;
|
|
17766
|
+
mustBeConnected?: boolean | undefined;
|
|
17711
17767
|
}, {
|
|
17712
17768
|
providesPower?: boolean | undefined;
|
|
17713
17769
|
requiresPower?: boolean | undefined;
|
|
@@ -17718,6 +17774,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17718
17774
|
doNotConnect?: boolean | undefined;
|
|
17719
17775
|
includeInBoardPinout?: boolean | undefined;
|
|
17720
17776
|
highlightColor?: string | undefined;
|
|
17777
|
+
mustBeConnected?: boolean | undefined;
|
|
17721
17778
|
}>>>;
|
|
17722
17779
|
} & {
|
|
17723
17780
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17916,6 +17973,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17916
17973
|
doNotConnect?: boolean | undefined;
|
|
17917
17974
|
includeInBoardPinout?: boolean | undefined;
|
|
17918
17975
|
highlightColor?: string | undefined;
|
|
17976
|
+
mustBeConnected?: boolean | undefined;
|
|
17919
17977
|
}> | undefined;
|
|
17920
17978
|
voltage?: number | undefined;
|
|
17921
17979
|
frequency?: number | undefined;
|
|
@@ -18114,6 +18172,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
18114
18172
|
doNotConnect?: boolean | undefined;
|
|
18115
18173
|
includeInBoardPinout?: boolean | undefined;
|
|
18116
18174
|
highlightColor?: string | undefined;
|
|
18175
|
+
mustBeConnected?: boolean | undefined;
|
|
18117
18176
|
}> | undefined;
|
|
18118
18177
|
voltage?: string | number | undefined;
|
|
18119
18178
|
frequency?: string | number | undefined;
|
|
@@ -18799,6 +18858,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18799
18858
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
18800
18859
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
18801
18860
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
18861
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
18802
18862
|
}, "strip", zod.ZodTypeAny, {
|
|
18803
18863
|
providesPower?: boolean | undefined;
|
|
18804
18864
|
requiresPower?: boolean | undefined;
|
|
@@ -18809,6 +18869,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18809
18869
|
doNotConnect?: boolean | undefined;
|
|
18810
18870
|
includeInBoardPinout?: boolean | undefined;
|
|
18811
18871
|
highlightColor?: string | undefined;
|
|
18872
|
+
mustBeConnected?: boolean | undefined;
|
|
18812
18873
|
}, {
|
|
18813
18874
|
providesPower?: boolean | undefined;
|
|
18814
18875
|
requiresPower?: boolean | undefined;
|
|
@@ -18819,6 +18880,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18819
18880
|
doNotConnect?: boolean | undefined;
|
|
18820
18881
|
includeInBoardPinout?: boolean | undefined;
|
|
18821
18882
|
highlightColor?: string | undefined;
|
|
18883
|
+
mustBeConnected?: boolean | undefined;
|
|
18822
18884
|
}>>>;
|
|
18823
18885
|
} & {
|
|
18824
18886
|
resistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -18879,6 +18941,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18879
18941
|
doNotConnect?: boolean | undefined;
|
|
18880
18942
|
includeInBoardPinout?: boolean | undefined;
|
|
18881
18943
|
highlightColor?: string | undefined;
|
|
18944
|
+
mustBeConnected?: boolean | undefined;
|
|
18882
18945
|
}> | undefined;
|
|
18883
18946
|
cadModel?: string | {
|
|
18884
18947
|
stlUrl: string;
|
|
@@ -19078,6 +19141,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
19078
19141
|
doNotConnect?: boolean | undefined;
|
|
19079
19142
|
includeInBoardPinout?: boolean | undefined;
|
|
19080
19143
|
highlightColor?: string | undefined;
|
|
19144
|
+
mustBeConnected?: boolean | undefined;
|
|
19081
19145
|
}> | undefined;
|
|
19082
19146
|
cadModel?: string | {
|
|
19083
19147
|
stlUrl: string;
|
|
@@ -20929,6 +20993,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20929
20993
|
shape: zod.ZodOptional<zod.ZodLiteral<"circle">>;
|
|
20930
20994
|
diameter: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20931
20995
|
radius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20996
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20997
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
20932
20998
|
}, "strip", zod.ZodTypeAny, {
|
|
20933
20999
|
pcbX?: number | undefined;
|
|
20934
21000
|
pcbY?: number | undefined;
|
|
@@ -20956,6 +21022,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20956
21022
|
relative?: boolean | undefined;
|
|
20957
21023
|
name?: string | undefined;
|
|
20958
21024
|
shape?: "circle" | undefined;
|
|
21025
|
+
solderMaskMargin?: number | undefined;
|
|
21026
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
20959
21027
|
radius?: number | undefined;
|
|
20960
21028
|
diameter?: number | undefined;
|
|
20961
21029
|
}, {
|
|
@@ -20987,6 +21055,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20987
21055
|
relative?: boolean | undefined;
|
|
20988
21056
|
name?: string | undefined;
|
|
20989
21057
|
shape?: "circle" | undefined;
|
|
21058
|
+
solderMaskMargin?: string | number | undefined;
|
|
21059
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
20990
21060
|
radius?: string | number | undefined;
|
|
20991
21061
|
diameter?: string | number | undefined;
|
|
20992
21062
|
}>, {
|
|
@@ -21018,6 +21088,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21018
21088
|
relative?: boolean | undefined;
|
|
21019
21089
|
name?: string | undefined;
|
|
21020
21090
|
shape?: "circle" | undefined;
|
|
21091
|
+
solderMaskMargin?: number | undefined;
|
|
21092
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21021
21093
|
}, {
|
|
21022
21094
|
pcbX?: string | number | undefined;
|
|
21023
21095
|
pcbY?: string | number | undefined;
|
|
@@ -21047,6 +21119,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21047
21119
|
relative?: boolean | undefined;
|
|
21048
21120
|
name?: string | undefined;
|
|
21049
21121
|
shape?: "circle" | undefined;
|
|
21122
|
+
solderMaskMargin?: string | number | undefined;
|
|
21123
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21050
21124
|
radius?: string | number | undefined;
|
|
21051
21125
|
diameter?: string | number | undefined;
|
|
21052
21126
|
}>, zod.ZodObject<{
|
|
@@ -21107,6 +21181,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21107
21181
|
shape: zod.ZodLiteral<"pill">;
|
|
21108
21182
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21109
21183
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21184
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21185
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21110
21186
|
}, "strip", zod.ZodTypeAny, {
|
|
21111
21187
|
shape: "pill";
|
|
21112
21188
|
width: number;
|
|
@@ -21136,6 +21212,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21136
21212
|
pcbRelative?: boolean | undefined;
|
|
21137
21213
|
relative?: boolean | undefined;
|
|
21138
21214
|
name?: string | undefined;
|
|
21215
|
+
solderMaskMargin?: number | undefined;
|
|
21216
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21139
21217
|
}, {
|
|
21140
21218
|
shape: "pill";
|
|
21141
21219
|
width: string | number;
|
|
@@ -21167,6 +21245,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21167
21245
|
pcbRelative?: boolean | undefined;
|
|
21168
21246
|
relative?: boolean | undefined;
|
|
21169
21247
|
name?: string | undefined;
|
|
21248
|
+
solderMaskMargin?: string | number | undefined;
|
|
21249
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21170
21250
|
}>, zod.ZodObject<{
|
|
21171
21251
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21172
21252
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -21225,6 +21305,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21225
21305
|
shape: zod.ZodLiteral<"rect">;
|
|
21226
21306
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21227
21307
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21308
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21309
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21228
21310
|
}, "strip", zod.ZodTypeAny, {
|
|
21229
21311
|
shape: "rect";
|
|
21230
21312
|
width: number;
|
|
@@ -21254,6 +21336,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21254
21336
|
pcbRelative?: boolean | undefined;
|
|
21255
21337
|
relative?: boolean | undefined;
|
|
21256
21338
|
name?: string | undefined;
|
|
21339
|
+
solderMaskMargin?: number | undefined;
|
|
21340
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21257
21341
|
}, {
|
|
21258
21342
|
shape: "rect";
|
|
21259
21343
|
width: string | number;
|
|
@@ -21285,6 +21369,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21285
21369
|
pcbRelative?: boolean | undefined;
|
|
21286
21370
|
relative?: boolean | undefined;
|
|
21287
21371
|
name?: string | undefined;
|
|
21372
|
+
solderMaskMargin?: string | number | undefined;
|
|
21373
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21288
21374
|
}>]>;
|
|
21289
21375
|
};
|
|
21290
21376
|
getPcbSize(): {
|
|
@@ -21792,6 +21878,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21792
21878
|
holeDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21793
21879
|
outerDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21794
21880
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
21881
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21882
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21795
21883
|
}, "strip", zod.ZodTypeAny, {
|
|
21796
21884
|
shape: "circle";
|
|
21797
21885
|
holeDiameter: number;
|
|
@@ -21821,6 +21909,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21821
21909
|
name?: string | undefined;
|
|
21822
21910
|
connectsTo?: string | string[] | undefined;
|
|
21823
21911
|
portHints?: (string | number)[] | undefined;
|
|
21912
|
+
solderMaskMargin?: number | undefined;
|
|
21913
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21824
21914
|
}, {
|
|
21825
21915
|
shape: "circle";
|
|
21826
21916
|
holeDiameter: string | number;
|
|
@@ -21850,6 +21940,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21850
21940
|
name?: string | undefined;
|
|
21851
21941
|
connectsTo?: string | string[] | undefined;
|
|
21852
21942
|
portHints?: (string | number)[] | undefined;
|
|
21943
|
+
solderMaskMargin?: string | number | undefined;
|
|
21944
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21853
21945
|
}>, zod.ZodObject<Omit<{
|
|
21854
21946
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21855
21947
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -21914,6 +22006,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21914
22006
|
innerWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21915
22007
|
innerHeight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21916
22008
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22009
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22010
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21917
22011
|
}, "strip", zod.ZodTypeAny, {
|
|
21918
22012
|
shape: "oval";
|
|
21919
22013
|
outerWidth: number;
|
|
@@ -21944,6 +22038,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21944
22038
|
name?: string | undefined;
|
|
21945
22039
|
connectsTo?: string | string[] | undefined;
|
|
21946
22040
|
portHints?: (string | number)[] | undefined;
|
|
22041
|
+
solderMaskMargin?: number | undefined;
|
|
22042
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21947
22043
|
holeWidth?: number | undefined;
|
|
21948
22044
|
holeHeight?: number | undefined;
|
|
21949
22045
|
innerWidth?: number | undefined;
|
|
@@ -21980,6 +22076,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21980
22076
|
name?: string | undefined;
|
|
21981
22077
|
connectsTo?: string | string[] | undefined;
|
|
21982
22078
|
portHints?: (string | number)[] | undefined;
|
|
22079
|
+
solderMaskMargin?: string | number | undefined;
|
|
22080
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21983
22081
|
innerWidth?: string | number | undefined;
|
|
21984
22082
|
innerHeight?: string | number | undefined;
|
|
21985
22083
|
}>, zod.ZodObject<Omit<{
|
|
@@ -22049,6 +22147,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22049
22147
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22050
22148
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22051
22149
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22150
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22151
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22052
22152
|
}, "strip", zod.ZodTypeAny, {
|
|
22053
22153
|
shape: "pill";
|
|
22054
22154
|
outerWidth: number;
|
|
@@ -22079,6 +22179,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22079
22179
|
name?: string | undefined;
|
|
22080
22180
|
connectsTo?: string | string[] | undefined;
|
|
22081
22181
|
portHints?: (string | number)[] | undefined;
|
|
22182
|
+
solderMaskMargin?: number | undefined;
|
|
22183
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22082
22184
|
holeWidth?: number | undefined;
|
|
22083
22185
|
holeHeight?: number | undefined;
|
|
22084
22186
|
innerWidth?: number | undefined;
|
|
@@ -22118,6 +22220,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22118
22220
|
name?: string | undefined;
|
|
22119
22221
|
connectsTo?: string | string[] | undefined;
|
|
22120
22222
|
portHints?: (string | number)[] | undefined;
|
|
22223
|
+
solderMaskMargin?: string | number | undefined;
|
|
22224
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22121
22225
|
innerWidth?: string | number | undefined;
|
|
22122
22226
|
innerHeight?: string | number | undefined;
|
|
22123
22227
|
rectPad?: boolean | undefined;
|
|
@@ -22189,6 +22293,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22189
22293
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22190
22294
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22191
22295
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22296
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22297
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22192
22298
|
}, "strip", zod.ZodTypeAny, {
|
|
22193
22299
|
shape: "circular_hole_with_rect_pad";
|
|
22194
22300
|
holeDiameter: number;
|
|
@@ -22219,6 +22325,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22219
22325
|
name?: string | undefined;
|
|
22220
22326
|
connectsTo?: string | string[] | undefined;
|
|
22221
22327
|
portHints?: (string | number)[] | undefined;
|
|
22328
|
+
solderMaskMargin?: number | undefined;
|
|
22329
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22222
22330
|
holeOffsetX?: number | undefined;
|
|
22223
22331
|
holeOffsetY?: number | undefined;
|
|
22224
22332
|
rectBorderRadius?: number | undefined;
|
|
@@ -22254,6 +22362,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22254
22362
|
name?: string | undefined;
|
|
22255
22363
|
connectsTo?: string | string[] | undefined;
|
|
22256
22364
|
portHints?: (string | number)[] | undefined;
|
|
22365
|
+
solderMaskMargin?: string | number | undefined;
|
|
22366
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22257
22367
|
holeOffsetX?: string | number | undefined;
|
|
22258
22368
|
holeOffsetY?: string | number | undefined;
|
|
22259
22369
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -22325,6 +22435,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22325
22435
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22326
22436
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22327
22437
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22438
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22439
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22328
22440
|
}, "strip", zod.ZodTypeAny, {
|
|
22329
22441
|
shape: "pill_hole_with_rect_pad";
|
|
22330
22442
|
holeWidth: number;
|
|
@@ -22358,6 +22470,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22358
22470
|
name?: string | undefined;
|
|
22359
22471
|
connectsTo?: string | string[] | undefined;
|
|
22360
22472
|
portHints?: (string | number)[] | undefined;
|
|
22473
|
+
solderMaskMargin?: number | undefined;
|
|
22474
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22361
22475
|
holeOffsetX?: number | undefined;
|
|
22362
22476
|
holeOffsetY?: number | undefined;
|
|
22363
22477
|
}, {
|
|
@@ -22393,6 +22507,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22393
22507
|
name?: string | undefined;
|
|
22394
22508
|
connectsTo?: string | string[] | undefined;
|
|
22395
22509
|
portHints?: (string | number)[] | undefined;
|
|
22510
|
+
solderMaskMargin?: string | number | undefined;
|
|
22511
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22396
22512
|
holeOffsetX?: string | number | undefined;
|
|
22397
22513
|
holeOffsetY?: string | number | undefined;
|
|
22398
22514
|
}>, zod.ZodObject<Omit<{
|
|
@@ -22469,6 +22585,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22469
22585
|
holeOffsetX: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
22470
22586
|
holeOffsetY: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
22471
22587
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22588
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22589
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22472
22590
|
}, "strip", zod.ZodTypeAny, {
|
|
22473
22591
|
shape: "hole_with_polygon_pad";
|
|
22474
22592
|
holeOffsetX: number;
|
|
@@ -22504,6 +22622,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22504
22622
|
connectsTo?: string | string[] | undefined;
|
|
22505
22623
|
holeDiameter?: number | undefined;
|
|
22506
22624
|
portHints?: (string | number)[] | undefined;
|
|
22625
|
+
solderMaskMargin?: number | undefined;
|
|
22626
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22507
22627
|
holeWidth?: number | undefined;
|
|
22508
22628
|
holeHeight?: number | undefined;
|
|
22509
22629
|
}, {
|
|
@@ -22541,6 +22661,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22541
22661
|
connectsTo?: string | string[] | undefined;
|
|
22542
22662
|
holeDiameter?: string | number | undefined;
|
|
22543
22663
|
portHints?: (string | number)[] | undefined;
|
|
22664
|
+
solderMaskMargin?: string | number | undefined;
|
|
22665
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22544
22666
|
holeWidth?: string | number | undefined;
|
|
22545
22667
|
holeHeight?: string | number | undefined;
|
|
22546
22668
|
}>]>, {
|
|
@@ -22572,6 +22694,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22572
22694
|
name?: string | undefined;
|
|
22573
22695
|
connectsTo?: string | string[] | undefined;
|
|
22574
22696
|
portHints?: (string | number)[] | undefined;
|
|
22697
|
+
solderMaskMargin?: number | undefined;
|
|
22698
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22575
22699
|
} | {
|
|
22576
22700
|
shape: "oval";
|
|
22577
22701
|
outerWidth: number;
|
|
@@ -22602,6 +22726,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22602
22726
|
name?: string | undefined;
|
|
22603
22727
|
connectsTo?: string | string[] | undefined;
|
|
22604
22728
|
portHints?: (string | number)[] | undefined;
|
|
22729
|
+
solderMaskMargin?: number | undefined;
|
|
22730
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22605
22731
|
holeWidth?: number | undefined;
|
|
22606
22732
|
holeHeight?: number | undefined;
|
|
22607
22733
|
innerWidth?: number | undefined;
|
|
@@ -22636,6 +22762,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22636
22762
|
name?: string | undefined;
|
|
22637
22763
|
connectsTo?: string | string[] | undefined;
|
|
22638
22764
|
portHints?: (string | number)[] | undefined;
|
|
22765
|
+
solderMaskMargin?: number | undefined;
|
|
22766
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22639
22767
|
holeWidth?: number | undefined;
|
|
22640
22768
|
holeHeight?: number | undefined;
|
|
22641
22769
|
innerWidth?: number | undefined;
|
|
@@ -22673,6 +22801,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22673
22801
|
name?: string | undefined;
|
|
22674
22802
|
connectsTo?: string | string[] | undefined;
|
|
22675
22803
|
portHints?: (string | number)[] | undefined;
|
|
22804
|
+
solderMaskMargin?: number | undefined;
|
|
22805
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22676
22806
|
holeOffsetX?: number | undefined;
|
|
22677
22807
|
holeOffsetY?: number | undefined;
|
|
22678
22808
|
rectBorderRadius?: number | undefined;
|
|
@@ -22711,6 +22841,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22711
22841
|
name?: string | undefined;
|
|
22712
22842
|
connectsTo?: string | string[] | undefined;
|
|
22713
22843
|
portHints?: (string | number)[] | undefined;
|
|
22844
|
+
solderMaskMargin?: number | undefined;
|
|
22845
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22714
22846
|
holeOffsetX?: number | undefined;
|
|
22715
22847
|
holeOffsetY?: number | undefined;
|
|
22716
22848
|
} | {
|
|
@@ -22748,6 +22880,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22748
22880
|
connectsTo?: string | string[] | undefined;
|
|
22749
22881
|
holeDiameter?: number | undefined;
|
|
22750
22882
|
portHints?: (string | number)[] | undefined;
|
|
22883
|
+
solderMaskMargin?: number | undefined;
|
|
22884
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22751
22885
|
holeWidth?: number | undefined;
|
|
22752
22886
|
holeHeight?: number | undefined;
|
|
22753
22887
|
}, {
|
|
@@ -22779,6 +22913,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22779
22913
|
name?: string | undefined;
|
|
22780
22914
|
connectsTo?: string | string[] | undefined;
|
|
22781
22915
|
portHints?: (string | number)[] | undefined;
|
|
22916
|
+
solderMaskMargin?: string | number | undefined;
|
|
22917
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22782
22918
|
} | {
|
|
22783
22919
|
shape: "oval";
|
|
22784
22920
|
outerWidth: string | number;
|
|
@@ -22811,6 +22947,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22811
22947
|
name?: string | undefined;
|
|
22812
22948
|
connectsTo?: string | string[] | undefined;
|
|
22813
22949
|
portHints?: (string | number)[] | undefined;
|
|
22950
|
+
solderMaskMargin?: string | number | undefined;
|
|
22951
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22814
22952
|
innerWidth?: string | number | undefined;
|
|
22815
22953
|
innerHeight?: string | number | undefined;
|
|
22816
22954
|
} | {
|
|
@@ -22845,6 +22983,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22845
22983
|
name?: string | undefined;
|
|
22846
22984
|
connectsTo?: string | string[] | undefined;
|
|
22847
22985
|
portHints?: (string | number)[] | undefined;
|
|
22986
|
+
solderMaskMargin?: string | number | undefined;
|
|
22987
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22848
22988
|
innerWidth?: string | number | undefined;
|
|
22849
22989
|
innerHeight?: string | number | undefined;
|
|
22850
22990
|
rectPad?: boolean | undefined;
|
|
@@ -22880,6 +23020,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22880
23020
|
name?: string | undefined;
|
|
22881
23021
|
connectsTo?: string | string[] | undefined;
|
|
22882
23022
|
portHints?: (string | number)[] | undefined;
|
|
23023
|
+
solderMaskMargin?: string | number | undefined;
|
|
23024
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22883
23025
|
holeOffsetX?: string | number | undefined;
|
|
22884
23026
|
holeOffsetY?: string | number | undefined;
|
|
22885
23027
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -22918,6 +23060,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22918
23060
|
name?: string | undefined;
|
|
22919
23061
|
connectsTo?: string | string[] | undefined;
|
|
22920
23062
|
portHints?: (string | number)[] | undefined;
|
|
23063
|
+
solderMaskMargin?: string | number | undefined;
|
|
23064
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22921
23065
|
holeOffsetX?: string | number | undefined;
|
|
22922
23066
|
holeOffsetY?: string | number | undefined;
|
|
22923
23067
|
} | {
|
|
@@ -22955,6 +23099,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22955
23099
|
connectsTo?: string | string[] | undefined;
|
|
22956
23100
|
holeDiameter?: string | number | undefined;
|
|
22957
23101
|
portHints?: (string | number)[] | undefined;
|
|
23102
|
+
solderMaskMargin?: string | number | undefined;
|
|
23103
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22958
23104
|
holeWidth?: string | number | undefined;
|
|
22959
23105
|
holeHeight?: string | number | undefined;
|
|
22960
23106
|
}>;
|
|
@@ -23767,6 +23913,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23767
23913
|
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
23768
23914
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
23769
23915
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
23916
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23770
23917
|
}, "strip", zod.ZodTypeAny, {
|
|
23771
23918
|
shape: "circle";
|
|
23772
23919
|
radius: number;
|
|
@@ -23795,6 +23942,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23795
23942
|
relative?: boolean | undefined;
|
|
23796
23943
|
name?: string | undefined;
|
|
23797
23944
|
portHints?: (string | number)[] | undefined;
|
|
23945
|
+
solderMaskMargin?: number | undefined;
|
|
23798
23946
|
coveredWithSolderMask?: boolean | undefined;
|
|
23799
23947
|
}, {
|
|
23800
23948
|
shape: "circle";
|
|
@@ -23826,6 +23974,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23826
23974
|
relative?: boolean | undefined;
|
|
23827
23975
|
name?: string | undefined;
|
|
23828
23976
|
portHints?: (string | number)[] | undefined;
|
|
23977
|
+
solderMaskMargin?: string | number | undefined;
|
|
23829
23978
|
coveredWithSolderMask?: boolean | undefined;
|
|
23830
23979
|
}>, zod.ZodObject<Omit<{
|
|
23831
23980
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -23889,6 +24038,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23889
24038
|
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23890
24039
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
23891
24040
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24041
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23892
24042
|
}, "strip", zod.ZodTypeAny, {
|
|
23893
24043
|
shape: "rect";
|
|
23894
24044
|
width: number;
|
|
@@ -23918,9 +24068,10 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23918
24068
|
relative?: boolean | undefined;
|
|
23919
24069
|
name?: string | undefined;
|
|
23920
24070
|
portHints?: (string | number)[] | undefined;
|
|
24071
|
+
solderMaskMargin?: number | undefined;
|
|
24072
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
23921
24073
|
rectBorderRadius?: number | undefined;
|
|
23922
24074
|
cornerRadius?: number | undefined;
|
|
23923
|
-
coveredWithSolderMask?: boolean | undefined;
|
|
23924
24075
|
}, {
|
|
23925
24076
|
shape: "rect";
|
|
23926
24077
|
width: string | number;
|
|
@@ -23952,9 +24103,10 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23952
24103
|
relative?: boolean | undefined;
|
|
23953
24104
|
name?: string | undefined;
|
|
23954
24105
|
portHints?: (string | number)[] | undefined;
|
|
24106
|
+
solderMaskMargin?: string | number | undefined;
|
|
24107
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
23955
24108
|
rectBorderRadius?: string | number | undefined;
|
|
23956
24109
|
cornerRadius?: string | number | undefined;
|
|
23957
|
-
coveredWithSolderMask?: boolean | undefined;
|
|
23958
24110
|
}>, zod.ZodObject<Omit<{
|
|
23959
24111
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23960
24112
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24017,6 +24169,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24017
24169
|
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24018
24170
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24019
24171
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24172
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24020
24173
|
}, "strip", zod.ZodTypeAny, {
|
|
24021
24174
|
shape: "rotated_rect";
|
|
24022
24175
|
width: number;
|
|
@@ -24047,8 +24200,9 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24047
24200
|
relative?: boolean | undefined;
|
|
24048
24201
|
name?: string | undefined;
|
|
24049
24202
|
portHints?: (string | number)[] | undefined;
|
|
24050
|
-
|
|
24203
|
+
solderMaskMargin?: number | undefined;
|
|
24051
24204
|
coveredWithSolderMask?: boolean | undefined;
|
|
24205
|
+
cornerRadius?: number | undefined;
|
|
24052
24206
|
}, {
|
|
24053
24207
|
shape: "rotated_rect";
|
|
24054
24208
|
width: string | number;
|
|
@@ -24081,8 +24235,9 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24081
24235
|
relative?: boolean | undefined;
|
|
24082
24236
|
name?: string | undefined;
|
|
24083
24237
|
portHints?: (string | number)[] | undefined;
|
|
24084
|
-
|
|
24238
|
+
solderMaskMargin?: string | number | undefined;
|
|
24085
24239
|
coveredWithSolderMask?: boolean | undefined;
|
|
24240
|
+
cornerRadius?: string | number | undefined;
|
|
24086
24241
|
}>, zod.ZodObject<Omit<{
|
|
24087
24242
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24088
24243
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24144,6 +24299,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24144
24299
|
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
24145
24300
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24146
24301
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24302
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24147
24303
|
}, "strip", zod.ZodTypeAny, {
|
|
24148
24304
|
shape: "pill";
|
|
24149
24305
|
width: number;
|
|
@@ -24174,6 +24330,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24174
24330
|
relative?: boolean | undefined;
|
|
24175
24331
|
name?: string | undefined;
|
|
24176
24332
|
portHints?: (string | number)[] | undefined;
|
|
24333
|
+
solderMaskMargin?: number | undefined;
|
|
24177
24334
|
coveredWithSolderMask?: boolean | undefined;
|
|
24178
24335
|
}, {
|
|
24179
24336
|
shape: "pill";
|
|
@@ -24207,6 +24364,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24207
24364
|
relative?: boolean | undefined;
|
|
24208
24365
|
name?: string | undefined;
|
|
24209
24366
|
portHints?: (string | number)[] | undefined;
|
|
24367
|
+
solderMaskMargin?: string | number | undefined;
|
|
24210
24368
|
coveredWithSolderMask?: boolean | undefined;
|
|
24211
24369
|
}>, zod.ZodObject<Omit<{
|
|
24212
24370
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24276,6 +24434,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24276
24434
|
}>, "many">;
|
|
24277
24435
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24278
24436
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24437
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24279
24438
|
}, "strip", zod.ZodTypeAny, {
|
|
24280
24439
|
shape: "polygon";
|
|
24281
24440
|
points: {
|
|
@@ -24307,6 +24466,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24307
24466
|
relative?: boolean | undefined;
|
|
24308
24467
|
name?: string | undefined;
|
|
24309
24468
|
portHints?: (string | number)[] | undefined;
|
|
24469
|
+
solderMaskMargin?: number | undefined;
|
|
24310
24470
|
coveredWithSolderMask?: boolean | undefined;
|
|
24311
24471
|
}, {
|
|
24312
24472
|
shape: "polygon";
|
|
@@ -24341,6 +24501,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24341
24501
|
relative?: boolean | undefined;
|
|
24342
24502
|
name?: string | undefined;
|
|
24343
24503
|
portHints?: (string | number)[] | undefined;
|
|
24504
|
+
solderMaskMargin?: string | number | undefined;
|
|
24344
24505
|
coveredWithSolderMask?: boolean | undefined;
|
|
24345
24506
|
}>]>;
|
|
24346
24507
|
};
|
|
@@ -26100,6 +26261,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26100
26261
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
26101
26262
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
26102
26263
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
26264
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
26103
26265
|
}, "strip", zod.ZodTypeAny, {
|
|
26104
26266
|
providesPower?: boolean | undefined;
|
|
26105
26267
|
requiresPower?: boolean | undefined;
|
|
@@ -26110,6 +26272,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26110
26272
|
doNotConnect?: boolean | undefined;
|
|
26111
26273
|
includeInBoardPinout?: boolean | undefined;
|
|
26112
26274
|
highlightColor?: string | undefined;
|
|
26275
|
+
mustBeConnected?: boolean | undefined;
|
|
26113
26276
|
}, {
|
|
26114
26277
|
providesPower?: boolean | undefined;
|
|
26115
26278
|
requiresPower?: boolean | undefined;
|
|
@@ -26120,6 +26283,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26120
26283
|
doNotConnect?: boolean | undefined;
|
|
26121
26284
|
includeInBoardPinout?: boolean | undefined;
|
|
26122
26285
|
highlightColor?: string | undefined;
|
|
26286
|
+
mustBeConnected?: boolean | undefined;
|
|
26123
26287
|
}>>>;
|
|
26124
26288
|
} & {
|
|
26125
26289
|
capacity: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, number, string | number>>;
|
|
@@ -26176,6 +26340,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26176
26340
|
doNotConnect?: boolean | undefined;
|
|
26177
26341
|
includeInBoardPinout?: boolean | undefined;
|
|
26178
26342
|
highlightColor?: string | undefined;
|
|
26343
|
+
mustBeConnected?: boolean | undefined;
|
|
26179
26344
|
}> | undefined;
|
|
26180
26345
|
cadModel?: string | {
|
|
26181
26346
|
stlUrl: string;
|
|
@@ -26372,6 +26537,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26372
26537
|
doNotConnect?: boolean | undefined;
|
|
26373
26538
|
includeInBoardPinout?: boolean | undefined;
|
|
26374
26539
|
highlightColor?: string | undefined;
|
|
26540
|
+
mustBeConnected?: boolean | undefined;
|
|
26375
26541
|
}> | undefined;
|
|
26376
26542
|
cadModel?: string | {
|
|
26377
26543
|
stlUrl: string;
|
|
@@ -27189,6 +27355,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27189
27355
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
27190
27356
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
27191
27357
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
27358
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
27192
27359
|
}, "strip", zod.ZodTypeAny, {
|
|
27193
27360
|
providesPower?: boolean | undefined;
|
|
27194
27361
|
requiresPower?: boolean | undefined;
|
|
@@ -27199,6 +27366,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27199
27366
|
doNotConnect?: boolean | undefined;
|
|
27200
27367
|
includeInBoardPinout?: boolean | undefined;
|
|
27201
27368
|
highlightColor?: string | undefined;
|
|
27369
|
+
mustBeConnected?: boolean | undefined;
|
|
27202
27370
|
}, {
|
|
27203
27371
|
providesPower?: boolean | undefined;
|
|
27204
27372
|
requiresPower?: boolean | undefined;
|
|
@@ -27209,6 +27377,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27209
27377
|
doNotConnect?: boolean | undefined;
|
|
27210
27378
|
includeInBoardPinout?: boolean | undefined;
|
|
27211
27379
|
highlightColor?: string | undefined;
|
|
27380
|
+
mustBeConnected?: boolean | undefined;
|
|
27212
27381
|
}>>>;
|
|
27213
27382
|
} & {
|
|
27214
27383
|
pinCount: zod.ZodNumber;
|
|
@@ -27408,6 +27577,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27408
27577
|
doNotConnect?: boolean | undefined;
|
|
27409
27578
|
includeInBoardPinout?: boolean | undefined;
|
|
27410
27579
|
highlightColor?: string | undefined;
|
|
27580
|
+
mustBeConnected?: boolean | undefined;
|
|
27411
27581
|
}> | undefined;
|
|
27412
27582
|
cadModel?: string | {
|
|
27413
27583
|
stlUrl: string;
|
|
@@ -27652,6 +27822,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27652
27822
|
doNotConnect?: boolean | undefined;
|
|
27653
27823
|
includeInBoardPinout?: boolean | undefined;
|
|
27654
27824
|
highlightColor?: string | undefined;
|
|
27825
|
+
mustBeConnected?: boolean | undefined;
|
|
27655
27826
|
}> | undefined;
|
|
27656
27827
|
cadModel?: string | {
|
|
27657
27828
|
stlUrl: string;
|
|
@@ -28519,6 +28690,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28519
28690
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
28520
28691
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
28521
28692
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
28693
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
28522
28694
|
}, "strip", zod.ZodTypeAny, {
|
|
28523
28695
|
providesPower?: boolean | undefined;
|
|
28524
28696
|
requiresPower?: boolean | undefined;
|
|
@@ -28529,6 +28701,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28529
28701
|
doNotConnect?: boolean | undefined;
|
|
28530
28702
|
includeInBoardPinout?: boolean | undefined;
|
|
28531
28703
|
highlightColor?: string | undefined;
|
|
28704
|
+
mustBeConnected?: boolean | undefined;
|
|
28532
28705
|
}, {
|
|
28533
28706
|
providesPower?: boolean | undefined;
|
|
28534
28707
|
requiresPower?: boolean | undefined;
|
|
@@ -28539,6 +28712,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28539
28712
|
doNotConnect?: boolean | undefined;
|
|
28540
28713
|
includeInBoardPinout?: boolean | undefined;
|
|
28541
28714
|
highlightColor?: string | undefined;
|
|
28715
|
+
mustBeConnected?: boolean | undefined;
|
|
28542
28716
|
}>>>;
|
|
28543
28717
|
} & {
|
|
28544
28718
|
frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -28596,6 +28770,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28596
28770
|
doNotConnect?: boolean | undefined;
|
|
28597
28771
|
includeInBoardPinout?: boolean | undefined;
|
|
28598
28772
|
highlightColor?: string | undefined;
|
|
28773
|
+
mustBeConnected?: boolean | undefined;
|
|
28599
28774
|
}> | undefined;
|
|
28600
28775
|
cadModel?: string | {
|
|
28601
28776
|
stlUrl: string;
|
|
@@ -28791,6 +28966,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28791
28966
|
doNotConnect?: boolean | undefined;
|
|
28792
28967
|
includeInBoardPinout?: boolean | undefined;
|
|
28793
28968
|
highlightColor?: string | undefined;
|
|
28969
|
+
mustBeConnected?: boolean | undefined;
|
|
28794
28970
|
}> | undefined;
|
|
28795
28971
|
cadModel?: string | {
|
|
28796
28972
|
stlUrl: string;
|
|
@@ -29606,6 +29782,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29606
29782
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
29607
29783
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
29608
29784
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
29785
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
29609
29786
|
}, "strip", zod.ZodTypeAny, {
|
|
29610
29787
|
providesPower?: boolean | undefined;
|
|
29611
29788
|
requiresPower?: boolean | undefined;
|
|
@@ -29616,6 +29793,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29616
29793
|
doNotConnect?: boolean | undefined;
|
|
29617
29794
|
includeInBoardPinout?: boolean | undefined;
|
|
29618
29795
|
highlightColor?: string | undefined;
|
|
29796
|
+
mustBeConnected?: boolean | undefined;
|
|
29619
29797
|
}, {
|
|
29620
29798
|
providesPower?: boolean | undefined;
|
|
29621
29799
|
requiresPower?: boolean | undefined;
|
|
@@ -29626,6 +29804,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29626
29804
|
doNotConnect?: boolean | undefined;
|
|
29627
29805
|
includeInBoardPinout?: boolean | undefined;
|
|
29628
29806
|
highlightColor?: string | undefined;
|
|
29807
|
+
mustBeConnected?: boolean | undefined;
|
|
29629
29808
|
}>>>;
|
|
29630
29809
|
} & {
|
|
29631
29810
|
inductance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -29683,6 +29862,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29683
29862
|
doNotConnect?: boolean | undefined;
|
|
29684
29863
|
includeInBoardPinout?: boolean | undefined;
|
|
29685
29864
|
highlightColor?: string | undefined;
|
|
29865
|
+
mustBeConnected?: boolean | undefined;
|
|
29686
29866
|
}> | undefined;
|
|
29687
29867
|
cadModel?: string | {
|
|
29688
29868
|
stlUrl: string;
|
|
@@ -29879,6 +30059,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29879
30059
|
doNotConnect?: boolean | undefined;
|
|
29880
30060
|
includeInBoardPinout?: boolean | undefined;
|
|
29881
30061
|
highlightColor?: string | undefined;
|
|
30062
|
+
mustBeConnected?: boolean | undefined;
|
|
29882
30063
|
}> | undefined;
|
|
29883
30064
|
cadModel?: string | {
|
|
29884
30065
|
stlUrl: string;
|
|
@@ -30696,6 +30877,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30696
30877
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
30697
30878
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
30698
30879
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
30880
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
30699
30881
|
}, "strip", zod.ZodTypeAny, {
|
|
30700
30882
|
providesPower?: boolean | undefined;
|
|
30701
30883
|
requiresPower?: boolean | undefined;
|
|
@@ -30706,6 +30888,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30706
30888
|
doNotConnect?: boolean | undefined;
|
|
30707
30889
|
includeInBoardPinout?: boolean | undefined;
|
|
30708
30890
|
highlightColor?: string | undefined;
|
|
30891
|
+
mustBeConnected?: boolean | undefined;
|
|
30709
30892
|
}, {
|
|
30710
30893
|
providesPower?: boolean | undefined;
|
|
30711
30894
|
requiresPower?: boolean | undefined;
|
|
@@ -30716,6 +30899,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30716
30899
|
doNotConnect?: boolean | undefined;
|
|
30717
30900
|
includeInBoardPinout?: boolean | undefined;
|
|
30718
30901
|
highlightColor?: string | undefined;
|
|
30902
|
+
mustBeConnected?: boolean | undefined;
|
|
30719
30903
|
}>>>;
|
|
30720
30904
|
} & {
|
|
30721
30905
|
maxResistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -30771,6 +30955,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30771
30955
|
doNotConnect?: boolean | undefined;
|
|
30772
30956
|
includeInBoardPinout?: boolean | undefined;
|
|
30773
30957
|
highlightColor?: string | undefined;
|
|
30958
|
+
mustBeConnected?: boolean | undefined;
|
|
30774
30959
|
}> | undefined;
|
|
30775
30960
|
cadModel?: string | {
|
|
30776
30961
|
stlUrl: string;
|
|
@@ -30965,6 +31150,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30965
31150
|
doNotConnect?: boolean | undefined;
|
|
30966
31151
|
includeInBoardPinout?: boolean | undefined;
|
|
30967
31152
|
highlightColor?: string | undefined;
|
|
31153
|
+
mustBeConnected?: boolean | undefined;
|
|
30968
31154
|
}> | undefined;
|
|
30969
31155
|
cadModel?: string | {
|
|
30970
31156
|
stlUrl: string;
|
|
@@ -31779,6 +31965,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31779
31965
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
31780
31966
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
31781
31967
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
31968
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
31782
31969
|
}, "strip", zod.ZodTypeAny, {
|
|
31783
31970
|
providesPower?: boolean | undefined;
|
|
31784
31971
|
requiresPower?: boolean | undefined;
|
|
@@ -31789,6 +31976,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31789
31976
|
doNotConnect?: boolean | undefined;
|
|
31790
31977
|
includeInBoardPinout?: boolean | undefined;
|
|
31791
31978
|
highlightColor?: string | undefined;
|
|
31979
|
+
mustBeConnected?: boolean | undefined;
|
|
31792
31980
|
}, {
|
|
31793
31981
|
providesPower?: boolean | undefined;
|
|
31794
31982
|
requiresPower?: boolean | undefined;
|
|
@@ -31799,6 +31987,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31799
31987
|
doNotConnect?: boolean | undefined;
|
|
31800
31988
|
includeInBoardPinout?: boolean | undefined;
|
|
31801
31989
|
highlightColor?: string | undefined;
|
|
31990
|
+
mustBeConnected?: boolean | undefined;
|
|
31802
31991
|
}>>>;
|
|
31803
31992
|
} & {
|
|
31804
31993
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -32100,6 +32289,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
32100
32289
|
doNotConnect?: boolean | undefined;
|
|
32101
32290
|
includeInBoardPinout?: boolean | undefined;
|
|
32102
32291
|
highlightColor?: string | undefined;
|
|
32292
|
+
mustBeConnected?: boolean | undefined;
|
|
32103
32293
|
}> | undefined;
|
|
32104
32294
|
cadModel?: string | {
|
|
32105
32295
|
stlUrl: string;
|
|
@@ -32369,6 +32559,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
32369
32559
|
doNotConnect?: boolean | undefined;
|
|
32370
32560
|
includeInBoardPinout?: boolean | undefined;
|
|
32371
32561
|
highlightColor?: string | undefined;
|
|
32562
|
+
mustBeConnected?: boolean | undefined;
|
|
32372
32563
|
}> | undefined;
|
|
32373
32564
|
cadModel?: string | {
|
|
32374
32565
|
stlUrl: string;
|
|
@@ -33260,6 +33451,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33260
33451
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
33261
33452
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
33262
33453
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
33454
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
33263
33455
|
}, "strip", zod.ZodTypeAny, {
|
|
33264
33456
|
providesPower?: boolean | undefined;
|
|
33265
33457
|
requiresPower?: boolean | undefined;
|
|
@@ -33270,6 +33462,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33270
33462
|
doNotConnect?: boolean | undefined;
|
|
33271
33463
|
includeInBoardPinout?: boolean | undefined;
|
|
33272
33464
|
highlightColor?: string | undefined;
|
|
33465
|
+
mustBeConnected?: boolean | undefined;
|
|
33273
33466
|
}, {
|
|
33274
33467
|
providesPower?: boolean | undefined;
|
|
33275
33468
|
requiresPower?: boolean | undefined;
|
|
@@ -33280,6 +33473,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33280
33473
|
doNotConnect?: boolean | undefined;
|
|
33281
33474
|
includeInBoardPinout?: boolean | undefined;
|
|
33282
33475
|
highlightColor?: string | undefined;
|
|
33476
|
+
mustBeConnected?: boolean | undefined;
|
|
33283
33477
|
}>>>;
|
|
33284
33478
|
} & {
|
|
33285
33479
|
frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -33341,6 +33535,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33341
33535
|
doNotConnect?: boolean | undefined;
|
|
33342
33536
|
includeInBoardPinout?: boolean | undefined;
|
|
33343
33537
|
highlightColor?: string | undefined;
|
|
33538
|
+
mustBeConnected?: boolean | undefined;
|
|
33344
33539
|
}> | undefined;
|
|
33345
33540
|
cadModel?: string | {
|
|
33346
33541
|
stlUrl: string;
|
|
@@ -33540,6 +33735,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33540
33735
|
doNotConnect?: boolean | undefined;
|
|
33541
33736
|
includeInBoardPinout?: boolean | undefined;
|
|
33542
33737
|
highlightColor?: string | undefined;
|
|
33738
|
+
mustBeConnected?: boolean | undefined;
|
|
33543
33739
|
}> | undefined;
|
|
33544
33740
|
cadModel?: string | {
|
|
33545
33741
|
stlUrl: string;
|
|
@@ -34359,6 +34555,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34359
34555
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
34360
34556
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
34361
34557
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
34558
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
34362
34559
|
}, "strip", zod.ZodTypeAny, {
|
|
34363
34560
|
providesPower?: boolean | undefined;
|
|
34364
34561
|
requiresPower?: boolean | undefined;
|
|
@@ -34369,6 +34566,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34369
34566
|
doNotConnect?: boolean | undefined;
|
|
34370
34567
|
includeInBoardPinout?: boolean | undefined;
|
|
34371
34568
|
highlightColor?: string | undefined;
|
|
34569
|
+
mustBeConnected?: boolean | undefined;
|
|
34372
34570
|
}, {
|
|
34373
34571
|
providesPower?: boolean | undefined;
|
|
34374
34572
|
requiresPower?: boolean | undefined;
|
|
@@ -34379,6 +34577,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34379
34577
|
doNotConnect?: boolean | undefined;
|
|
34380
34578
|
includeInBoardPinout?: boolean | undefined;
|
|
34381
34579
|
highlightColor?: string | undefined;
|
|
34580
|
+
mustBeConnected?: boolean | undefined;
|
|
34382
34581
|
}>>>;
|
|
34383
34582
|
} & {
|
|
34384
34583
|
type: zod.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -34434,6 +34633,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34434
34633
|
doNotConnect?: boolean | undefined;
|
|
34435
34634
|
includeInBoardPinout?: boolean | undefined;
|
|
34436
34635
|
highlightColor?: string | undefined;
|
|
34636
|
+
mustBeConnected?: boolean | undefined;
|
|
34437
34637
|
}> | undefined;
|
|
34438
34638
|
cadModel?: string | {
|
|
34439
34639
|
stlUrl: string;
|
|
@@ -34628,6 +34828,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34628
34828
|
doNotConnect?: boolean | undefined;
|
|
34629
34829
|
includeInBoardPinout?: boolean | undefined;
|
|
34630
34830
|
highlightColor?: string | undefined;
|
|
34831
|
+
mustBeConnected?: boolean | undefined;
|
|
34631
34832
|
}> | undefined;
|
|
34632
34833
|
cadModel?: string | {
|
|
34633
34834
|
stlUrl: string;
|
|
@@ -35448,6 +35649,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35448
35649
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
35449
35650
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
35450
35651
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
35652
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
35451
35653
|
}, "strip", zod.ZodTypeAny, {
|
|
35452
35654
|
providesPower?: boolean | undefined;
|
|
35453
35655
|
requiresPower?: boolean | undefined;
|
|
@@ -35458,6 +35660,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35458
35660
|
doNotConnect?: boolean | undefined;
|
|
35459
35661
|
includeInBoardPinout?: boolean | undefined;
|
|
35460
35662
|
highlightColor?: string | undefined;
|
|
35663
|
+
mustBeConnected?: boolean | undefined;
|
|
35461
35664
|
}, {
|
|
35462
35665
|
providesPower?: boolean | undefined;
|
|
35463
35666
|
requiresPower?: boolean | undefined;
|
|
@@ -35468,6 +35671,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35468
35671
|
doNotConnect?: boolean | undefined;
|
|
35469
35672
|
includeInBoardPinout?: boolean | undefined;
|
|
35470
35673
|
highlightColor?: string | undefined;
|
|
35674
|
+
mustBeConnected?: boolean | undefined;
|
|
35471
35675
|
}>>>;
|
|
35472
35676
|
} & {
|
|
35473
35677
|
channelType: zod.ZodEnum<["n", "p"]>;
|
|
@@ -35524,6 +35728,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35524
35728
|
doNotConnect?: boolean | undefined;
|
|
35525
35729
|
includeInBoardPinout?: boolean | undefined;
|
|
35526
35730
|
highlightColor?: string | undefined;
|
|
35731
|
+
mustBeConnected?: boolean | undefined;
|
|
35527
35732
|
}> | undefined;
|
|
35528
35733
|
cadModel?: string | {
|
|
35529
35734
|
stlUrl: string;
|
|
@@ -35718,6 +35923,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35718
35923
|
doNotConnect?: boolean | undefined;
|
|
35719
35924
|
includeInBoardPinout?: boolean | undefined;
|
|
35720
35925
|
highlightColor?: string | undefined;
|
|
35926
|
+
mustBeConnected?: boolean | undefined;
|
|
35721
35927
|
}> | undefined;
|
|
35722
35928
|
cadModel?: string | {
|
|
35723
35929
|
stlUrl: string;
|
|
@@ -36531,6 +36737,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36531
36737
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
36532
36738
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
36533
36739
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
36740
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
36534
36741
|
}, "strip", zod.ZodTypeAny, {
|
|
36535
36742
|
providesPower?: boolean | undefined;
|
|
36536
36743
|
requiresPower?: boolean | undefined;
|
|
@@ -36541,6 +36748,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36541
36748
|
doNotConnect?: boolean | undefined;
|
|
36542
36749
|
includeInBoardPinout?: boolean | undefined;
|
|
36543
36750
|
highlightColor?: string | undefined;
|
|
36751
|
+
mustBeConnected?: boolean | undefined;
|
|
36544
36752
|
}, {
|
|
36545
36753
|
providesPower?: boolean | undefined;
|
|
36546
36754
|
requiresPower?: boolean | undefined;
|
|
@@ -36551,6 +36759,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36551
36759
|
doNotConnect?: boolean | undefined;
|
|
36552
36760
|
includeInBoardPinout?: boolean | undefined;
|
|
36553
36761
|
highlightColor?: string | undefined;
|
|
36762
|
+
mustBeConnected?: boolean | undefined;
|
|
36554
36763
|
}>>>;
|
|
36555
36764
|
} & {
|
|
36556
36765
|
type: zod.ZodOptional<zod.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -36617,6 +36826,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36617
36826
|
doNotConnect?: boolean | undefined;
|
|
36618
36827
|
includeInBoardPinout?: boolean | undefined;
|
|
36619
36828
|
highlightColor?: string | undefined;
|
|
36829
|
+
mustBeConnected?: boolean | undefined;
|
|
36620
36830
|
}> | undefined;
|
|
36621
36831
|
cadModel?: string | {
|
|
36622
36832
|
stlUrl: string;
|
|
@@ -36820,6 +37030,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36820
37030
|
doNotConnect?: boolean | undefined;
|
|
36821
37031
|
includeInBoardPinout?: boolean | undefined;
|
|
36822
37032
|
highlightColor?: string | undefined;
|
|
37033
|
+
mustBeConnected?: boolean | undefined;
|
|
36823
37034
|
}> | undefined;
|
|
36824
37035
|
cadModel?: string | {
|
|
36825
37036
|
stlUrl: string;
|
|
@@ -37024,6 +37235,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
37024
37235
|
doNotConnect?: boolean | undefined;
|
|
37025
37236
|
includeInBoardPinout?: boolean | undefined;
|
|
37026
37237
|
highlightColor?: string | undefined;
|
|
37238
|
+
mustBeConnected?: boolean | undefined;
|
|
37027
37239
|
}> | undefined;
|
|
37028
37240
|
cadModel?: string | {
|
|
37029
37241
|
stlUrl: string;
|
|
@@ -37848,6 +38060,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37848
38060
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
37849
38061
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
37850
38062
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
38063
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
37851
38064
|
}, "strip", zod.ZodTypeAny, {
|
|
37852
38065
|
providesPower?: boolean | undefined;
|
|
37853
38066
|
requiresPower?: boolean | undefined;
|
|
@@ -37858,6 +38071,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37858
38071
|
doNotConnect?: boolean | undefined;
|
|
37859
38072
|
includeInBoardPinout?: boolean | undefined;
|
|
37860
38073
|
highlightColor?: string | undefined;
|
|
38074
|
+
mustBeConnected?: boolean | undefined;
|
|
37861
38075
|
}, {
|
|
37862
38076
|
providesPower?: boolean | undefined;
|
|
37863
38077
|
requiresPower?: boolean | undefined;
|
|
@@ -37868,6 +38082,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37868
38082
|
doNotConnect?: boolean | undefined;
|
|
37869
38083
|
includeInBoardPinout?: boolean | undefined;
|
|
37870
38084
|
highlightColor?: string | undefined;
|
|
38085
|
+
mustBeConnected?: boolean | undefined;
|
|
37871
38086
|
}>>>;
|
|
37872
38087
|
} & {
|
|
37873
38088
|
connections: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -37934,6 +38149,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37934
38149
|
doNotConnect?: boolean | undefined;
|
|
37935
38150
|
includeInBoardPinout?: boolean | undefined;
|
|
37936
38151
|
highlightColor?: string | undefined;
|
|
38152
|
+
mustBeConnected?: boolean | undefined;
|
|
37937
38153
|
}> | undefined;
|
|
37938
38154
|
cadModel?: string | {
|
|
37939
38155
|
stlUrl: string;
|
|
@@ -38134,6 +38350,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38134
38350
|
doNotConnect?: boolean | undefined;
|
|
38135
38351
|
includeInBoardPinout?: boolean | undefined;
|
|
38136
38352
|
highlightColor?: string | undefined;
|
|
38353
|
+
mustBeConnected?: boolean | undefined;
|
|
38137
38354
|
}> | undefined;
|
|
38138
38355
|
cadModel?: string | {
|
|
38139
38356
|
stlUrl: string;
|
|
@@ -38334,6 +38551,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38334
38551
|
doNotConnect?: boolean | undefined;
|
|
38335
38552
|
includeInBoardPinout?: boolean | undefined;
|
|
38336
38553
|
highlightColor?: string | undefined;
|
|
38554
|
+
mustBeConnected?: boolean | undefined;
|
|
38337
38555
|
}> | undefined;
|
|
38338
38556
|
cadModel?: string | {
|
|
38339
38557
|
stlUrl: string;
|
|
@@ -38534,6 +38752,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38534
38752
|
doNotConnect?: boolean | undefined;
|
|
38535
38753
|
includeInBoardPinout?: boolean | undefined;
|
|
38536
38754
|
highlightColor?: string | undefined;
|
|
38755
|
+
mustBeConnected?: boolean | undefined;
|
|
38537
38756
|
}> | undefined;
|
|
38538
38757
|
cadModel?: string | {
|
|
38539
38758
|
stlUrl: string;
|
|
@@ -39827,6 +40046,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39827
40046
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39828
40047
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
39829
40048
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
40049
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
39830
40050
|
}, "strip", z.ZodTypeAny, {
|
|
39831
40051
|
providesPower?: boolean | undefined;
|
|
39832
40052
|
requiresPower?: boolean | undefined;
|
|
@@ -39837,6 +40057,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39837
40057
|
doNotConnect?: boolean | undefined;
|
|
39838
40058
|
includeInBoardPinout?: boolean | undefined;
|
|
39839
40059
|
highlightColor?: string | undefined;
|
|
40060
|
+
mustBeConnected?: boolean | undefined;
|
|
39840
40061
|
}, {
|
|
39841
40062
|
providesPower?: boolean | undefined;
|
|
39842
40063
|
requiresPower?: boolean | undefined;
|
|
@@ -39847,10 +40068,12 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39847
40068
|
doNotConnect?: boolean | undefined;
|
|
39848
40069
|
includeInBoardPinout?: boolean | undefined;
|
|
39849
40070
|
highlightColor?: string | undefined;
|
|
40071
|
+
mustBeConnected?: boolean | undefined;
|
|
39850
40072
|
}>>>;
|
|
39851
40073
|
}, "name"> & {
|
|
39852
40074
|
name: z.ZodOptional<z.ZodString>;
|
|
39853
40075
|
connectsTo: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
40076
|
+
color: z.ZodOptional<z.ZodString>;
|
|
39854
40077
|
}, "strip", z.ZodTypeAny, {
|
|
39855
40078
|
connectsTo: string | string[];
|
|
39856
40079
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -39902,6 +40125,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39902
40125
|
doNotConnect?: boolean | undefined;
|
|
39903
40126
|
includeInBoardPinout?: boolean | undefined;
|
|
39904
40127
|
highlightColor?: string | undefined;
|
|
40128
|
+
mustBeConnected?: boolean | undefined;
|
|
39905
40129
|
}> | undefined;
|
|
39906
40130
|
cadModel?: string | {
|
|
39907
40131
|
stlUrl: string;
|
|
@@ -40042,6 +40266,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40042
40266
|
symbolName?: string | undefined;
|
|
40043
40267
|
doNotPlace?: boolean | undefined;
|
|
40044
40268
|
obstructsWithinBounds?: boolean | undefined;
|
|
40269
|
+
color?: string | undefined;
|
|
40045
40270
|
}, {
|
|
40046
40271
|
connectsTo: string | string[];
|
|
40047
40272
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -40095,6 +40320,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40095
40320
|
doNotConnect?: boolean | undefined;
|
|
40096
40321
|
includeInBoardPinout?: boolean | undefined;
|
|
40097
40322
|
highlightColor?: string | undefined;
|
|
40323
|
+
mustBeConnected?: boolean | undefined;
|
|
40098
40324
|
}> | undefined;
|
|
40099
40325
|
cadModel?: string | {
|
|
40100
40326
|
stlUrl: string;
|
|
@@ -40235,6 +40461,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40235
40461
|
symbolName?: string | undefined;
|
|
40236
40462
|
doNotPlace?: boolean | undefined;
|
|
40237
40463
|
obstructsWithinBounds?: boolean | undefined;
|
|
40464
|
+
color?: string | undefined;
|
|
40238
40465
|
}>;
|
|
40239
40466
|
};
|
|
40240
40467
|
doInitialSimulationRender(): void;
|
|
@@ -40316,6 +40543,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
40316
40543
|
doNotConnect?: boolean | undefined;
|
|
40317
40544
|
includeInBoardPinout?: boolean | undefined;
|
|
40318
40545
|
highlightColor?: string | undefined;
|
|
40546
|
+
mustBeConnected?: boolean | undefined;
|
|
40319
40547
|
}> | undefined;
|
|
40320
40548
|
cadModel?: string | {
|
|
40321
40549
|
stlUrl: string;
|
|
@@ -40514,6 +40742,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
40514
40742
|
doNotConnect?: boolean | undefined;
|
|
40515
40743
|
includeInBoardPinout?: boolean | undefined;
|
|
40516
40744
|
highlightColor?: string | undefined;
|
|
40745
|
+
mustBeConnected?: boolean | undefined;
|
|
40517
40746
|
}> | undefined;
|
|
40518
40747
|
cadModel?: string | {
|
|
40519
40748
|
stlUrl: string;
|