@tscircuit/core 0.0.871 → 0.0.873
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 +248 -4
- package/dist/index.js +155 -87
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -3240,6 +3240,11 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3240
3240
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
3241
3241
|
children: zod.ZodOptional<zod.ZodAny>;
|
|
3242
3242
|
noSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
3243
|
+
panelizationMethod: zod.ZodOptional<zod.ZodEnum<["tab-routing", "none"]>>;
|
|
3244
|
+
boardGap: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3245
|
+
tabWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3246
|
+
tabLength: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3247
|
+
mouseBites: zod.ZodOptional<zod.ZodBoolean>;
|
|
3243
3248
|
}, "strip", zod.ZodTypeAny, {
|
|
3244
3249
|
width: number;
|
|
3245
3250
|
height: number;
|
|
@@ -3484,6 +3489,11 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3484
3489
|
schPack?: boolean | undefined;
|
|
3485
3490
|
schMatchAdapt?: boolean | undefined;
|
|
3486
3491
|
noSolderMask?: boolean | undefined;
|
|
3492
|
+
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
3493
|
+
boardGap?: number | undefined;
|
|
3494
|
+
tabWidth?: number | undefined;
|
|
3495
|
+
tabLength?: number | undefined;
|
|
3496
|
+
mouseBites?: boolean | undefined;
|
|
3487
3497
|
}, {
|
|
3488
3498
|
width: string | number;
|
|
3489
3499
|
height: string | number;
|
|
@@ -3730,6 +3740,11 @@ declare class Panel extends Group<typeof panelProps> {
|
|
|
3730
3740
|
schPack?: boolean | undefined;
|
|
3731
3741
|
schMatchAdapt?: boolean | undefined;
|
|
3732
3742
|
noSolderMask?: boolean | undefined;
|
|
3743
|
+
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
3744
|
+
boardGap?: string | number | undefined;
|
|
3745
|
+
tabWidth?: string | number | undefined;
|
|
3746
|
+
tabLength?: string | number | undefined;
|
|
3747
|
+
mouseBites?: boolean | undefined;
|
|
3733
3748
|
}>;
|
|
3734
3749
|
};
|
|
3735
3750
|
get isGroup(): boolean;
|
|
@@ -4409,6 +4424,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4409
4424
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
4410
4425
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
4411
4426
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
4427
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
4412
4428
|
}, "strip", zod.ZodTypeAny, {
|
|
4413
4429
|
providesPower?: boolean | undefined;
|
|
4414
4430
|
requiresPower?: boolean | undefined;
|
|
@@ -4419,6 +4435,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4419
4435
|
doNotConnect?: boolean | undefined;
|
|
4420
4436
|
includeInBoardPinout?: boolean | undefined;
|
|
4421
4437
|
highlightColor?: string | undefined;
|
|
4438
|
+
mustBeConnected?: boolean | undefined;
|
|
4422
4439
|
}, {
|
|
4423
4440
|
providesPower?: boolean | undefined;
|
|
4424
4441
|
requiresPower?: boolean | undefined;
|
|
@@ -4429,6 +4446,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4429
4446
|
doNotConnect?: boolean | undefined;
|
|
4430
4447
|
includeInBoardPinout?: boolean | undefined;
|
|
4431
4448
|
highlightColor?: string | undefined;
|
|
4449
|
+
mustBeConnected?: boolean | undefined;
|
|
4432
4450
|
}>>>;
|
|
4433
4451
|
} & {
|
|
4434
4452
|
capacitance: zod.ZodEffects<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4495,6 +4513,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4495
4513
|
doNotConnect?: boolean | undefined;
|
|
4496
4514
|
includeInBoardPinout?: boolean | undefined;
|
|
4497
4515
|
highlightColor?: string | undefined;
|
|
4516
|
+
mustBeConnected?: boolean | undefined;
|
|
4498
4517
|
}> | undefined;
|
|
4499
4518
|
cadModel?: string | {
|
|
4500
4519
|
stlUrl: string;
|
|
@@ -4696,6 +4715,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
4696
4715
|
doNotConnect?: boolean | undefined;
|
|
4697
4716
|
includeInBoardPinout?: boolean | undefined;
|
|
4698
4717
|
highlightColor?: string | undefined;
|
|
4718
|
+
mustBeConnected?: boolean | undefined;
|
|
4699
4719
|
}> | undefined;
|
|
4700
4720
|
cadModel?: string | {
|
|
4701
4721
|
stlUrl: string;
|
|
@@ -5523,6 +5543,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5523
5543
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
5524
5544
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
5525
5545
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
5546
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
5526
5547
|
}, "strip", z.ZodTypeAny, {
|
|
5527
5548
|
providesPower?: boolean | undefined;
|
|
5528
5549
|
requiresPower?: boolean | undefined;
|
|
@@ -5533,6 +5554,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5533
5554
|
doNotConnect?: boolean | undefined;
|
|
5534
5555
|
includeInBoardPinout?: boolean | undefined;
|
|
5535
5556
|
highlightColor?: string | undefined;
|
|
5557
|
+
mustBeConnected?: boolean | undefined;
|
|
5536
5558
|
}, {
|
|
5537
5559
|
providesPower?: boolean | undefined;
|
|
5538
5560
|
requiresPower?: boolean | undefined;
|
|
@@ -5543,6 +5565,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5543
5565
|
doNotConnect?: boolean | undefined;
|
|
5544
5566
|
includeInBoardPinout?: boolean | undefined;
|
|
5545
5567
|
highlightColor?: string | undefined;
|
|
5568
|
+
mustBeConnected?: boolean | undefined;
|
|
5546
5569
|
}>>>;
|
|
5547
5570
|
} & {
|
|
5548
5571
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -5844,6 +5867,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
5844
5867
|
doNotConnect?: boolean | undefined;
|
|
5845
5868
|
includeInBoardPinout?: boolean | undefined;
|
|
5846
5869
|
highlightColor?: string | undefined;
|
|
5870
|
+
mustBeConnected?: boolean | undefined;
|
|
5847
5871
|
}> | undefined;
|
|
5848
5872
|
cadModel?: string | {
|
|
5849
5873
|
stlUrl: string;
|
|
@@ -6113,6 +6137,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
6113
6137
|
doNotConnect?: boolean | undefined;
|
|
6114
6138
|
includeInBoardPinout?: boolean | undefined;
|
|
6115
6139
|
highlightColor?: string | undefined;
|
|
6140
|
+
mustBeConnected?: boolean | undefined;
|
|
6116
6141
|
}> | undefined;
|
|
6117
6142
|
cadModel?: string | {
|
|
6118
6143
|
stlUrl: string;
|
|
@@ -7007,6 +7032,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7007
7032
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
7008
7033
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
7009
7034
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
7035
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
7010
7036
|
}, "strip", z.ZodTypeAny, {
|
|
7011
7037
|
providesPower?: boolean | undefined;
|
|
7012
7038
|
requiresPower?: boolean | undefined;
|
|
@@ -7017,6 +7043,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7017
7043
|
doNotConnect?: boolean | undefined;
|
|
7018
7044
|
includeInBoardPinout?: boolean | undefined;
|
|
7019
7045
|
highlightColor?: string | undefined;
|
|
7046
|
+
mustBeConnected?: boolean | undefined;
|
|
7020
7047
|
}, {
|
|
7021
7048
|
providesPower?: boolean | undefined;
|
|
7022
7049
|
requiresPower?: boolean | undefined;
|
|
@@ -7027,6 +7054,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7027
7054
|
doNotConnect?: boolean | undefined;
|
|
7028
7055
|
includeInBoardPinout?: boolean | undefined;
|
|
7029
7056
|
highlightColor?: string | undefined;
|
|
7057
|
+
mustBeConnected?: boolean | undefined;
|
|
7030
7058
|
}>>>;
|
|
7031
7059
|
} & {
|
|
7032
7060
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -7328,6 +7356,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7328
7356
|
doNotConnect?: boolean | undefined;
|
|
7329
7357
|
includeInBoardPinout?: boolean | undefined;
|
|
7330
7358
|
highlightColor?: string | undefined;
|
|
7359
|
+
mustBeConnected?: boolean | undefined;
|
|
7331
7360
|
}> | undefined;
|
|
7332
7361
|
cadModel?: string | {
|
|
7333
7362
|
stlUrl: string;
|
|
@@ -7597,6 +7626,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
7597
7626
|
doNotConnect?: boolean | undefined;
|
|
7598
7627
|
includeInBoardPinout?: boolean | undefined;
|
|
7599
7628
|
highlightColor?: string | undefined;
|
|
7629
|
+
mustBeConnected?: boolean | undefined;
|
|
7600
7630
|
}> | undefined;
|
|
7601
7631
|
cadModel?: string | {
|
|
7602
7632
|
stlUrl: string;
|
|
@@ -8486,6 +8516,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8486
8516
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
8487
8517
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
8488
8518
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
8519
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
8489
8520
|
}, "strip", zod.ZodTypeAny, {
|
|
8490
8521
|
providesPower?: boolean | undefined;
|
|
8491
8522
|
requiresPower?: boolean | undefined;
|
|
@@ -8496,6 +8527,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8496
8527
|
doNotConnect?: boolean | undefined;
|
|
8497
8528
|
includeInBoardPinout?: boolean | undefined;
|
|
8498
8529
|
highlightColor?: string | undefined;
|
|
8530
|
+
mustBeConnected?: boolean | undefined;
|
|
8499
8531
|
}, {
|
|
8500
8532
|
providesPower?: boolean | undefined;
|
|
8501
8533
|
requiresPower?: boolean | undefined;
|
|
@@ -8506,6 +8538,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8506
8538
|
doNotConnect?: boolean | undefined;
|
|
8507
8539
|
includeInBoardPinout?: boolean | undefined;
|
|
8508
8540
|
highlightColor?: string | undefined;
|
|
8541
|
+
mustBeConnected?: boolean | undefined;
|
|
8509
8542
|
}>>>;
|
|
8510
8543
|
} & {
|
|
8511
8544
|
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 +8601,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8568
8601
|
doNotConnect?: boolean | undefined;
|
|
8569
8602
|
includeInBoardPinout?: boolean | undefined;
|
|
8570
8603
|
highlightColor?: string | undefined;
|
|
8604
|
+
mustBeConnected?: boolean | undefined;
|
|
8571
8605
|
}> | undefined;
|
|
8572
8606
|
cadModel?: string | {
|
|
8573
8607
|
stlUrl: string;
|
|
@@ -8768,6 +8802,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8768
8802
|
doNotConnect?: boolean | undefined;
|
|
8769
8803
|
includeInBoardPinout?: boolean | undefined;
|
|
8770
8804
|
highlightColor?: string | undefined;
|
|
8805
|
+
mustBeConnected?: boolean | undefined;
|
|
8771
8806
|
}> | undefined;
|
|
8772
8807
|
cadModel?: string | {
|
|
8773
8808
|
stlUrl: string;
|
|
@@ -8968,6 +9003,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
8968
9003
|
doNotConnect?: boolean | undefined;
|
|
8969
9004
|
includeInBoardPinout?: boolean | undefined;
|
|
8970
9005
|
highlightColor?: string | undefined;
|
|
9006
|
+
mustBeConnected?: boolean | undefined;
|
|
8971
9007
|
}> | undefined;
|
|
8972
9008
|
cadModel?: string | {
|
|
8973
9009
|
stlUrl: string;
|
|
@@ -9168,6 +9204,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9168
9204
|
doNotConnect?: boolean | undefined;
|
|
9169
9205
|
includeInBoardPinout?: boolean | undefined;
|
|
9170
9206
|
highlightColor?: string | undefined;
|
|
9207
|
+
mustBeConnected?: boolean | undefined;
|
|
9171
9208
|
}> | undefined;
|
|
9172
9209
|
cadModel?: string | {
|
|
9173
9210
|
stlUrl: string;
|
|
@@ -9374,6 +9411,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9374
9411
|
doNotConnect?: boolean | undefined;
|
|
9375
9412
|
includeInBoardPinout?: boolean | undefined;
|
|
9376
9413
|
highlightColor?: string | undefined;
|
|
9414
|
+
mustBeConnected?: boolean | undefined;
|
|
9377
9415
|
}> | undefined;
|
|
9378
9416
|
cadModel?: string | {
|
|
9379
9417
|
stlUrl: string;
|
|
@@ -9568,6 +9606,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
9568
9606
|
doNotConnect?: boolean | undefined;
|
|
9569
9607
|
includeInBoardPinout?: boolean | undefined;
|
|
9570
9608
|
highlightColor?: string | undefined;
|
|
9609
|
+
mustBeConnected?: boolean | undefined;
|
|
9571
9610
|
}> | undefined;
|
|
9572
9611
|
cadModel?: string | {
|
|
9573
9612
|
stlUrl: string;
|
|
@@ -10394,6 +10433,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10394
10433
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
10395
10434
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
10396
10435
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
10436
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
10397
10437
|
}, "strip", zod.ZodTypeAny, {
|
|
10398
10438
|
providesPower?: boolean | undefined;
|
|
10399
10439
|
requiresPower?: boolean | undefined;
|
|
@@ -10404,6 +10444,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10404
10444
|
doNotConnect?: boolean | undefined;
|
|
10405
10445
|
includeInBoardPinout?: boolean | undefined;
|
|
10406
10446
|
highlightColor?: string | undefined;
|
|
10447
|
+
mustBeConnected?: boolean | undefined;
|
|
10407
10448
|
}, {
|
|
10408
10449
|
providesPower?: boolean | undefined;
|
|
10409
10450
|
requiresPower?: boolean | undefined;
|
|
@@ -10414,6 +10455,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10414
10455
|
doNotConnect?: boolean | undefined;
|
|
10415
10456
|
includeInBoardPinout?: boolean | undefined;
|
|
10416
10457
|
highlightColor?: string | undefined;
|
|
10458
|
+
mustBeConnected?: boolean | undefined;
|
|
10417
10459
|
}>>>;
|
|
10418
10460
|
} & {
|
|
10419
10461
|
currentRating: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
|
|
@@ -10472,6 +10514,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10472
10514
|
doNotConnect?: boolean | undefined;
|
|
10473
10515
|
includeInBoardPinout?: boolean | undefined;
|
|
10474
10516
|
highlightColor?: string | undefined;
|
|
10517
|
+
mustBeConnected?: boolean | undefined;
|
|
10475
10518
|
}> | undefined;
|
|
10476
10519
|
cadModel?: string | {
|
|
10477
10520
|
stlUrl: string;
|
|
@@ -10669,6 +10712,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
10669
10712
|
doNotConnect?: boolean | undefined;
|
|
10670
10713
|
includeInBoardPinout?: boolean | undefined;
|
|
10671
10714
|
highlightColor?: string | undefined;
|
|
10715
|
+
mustBeConnected?: boolean | undefined;
|
|
10672
10716
|
}> | undefined;
|
|
10673
10717
|
cadModel?: string | {
|
|
10674
10718
|
stlUrl: string;
|
|
@@ -11487,6 +11531,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11487
11531
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
11488
11532
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
11489
11533
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
11534
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
11490
11535
|
}, "strip", zod.ZodTypeAny, {
|
|
11491
11536
|
providesPower?: boolean | undefined;
|
|
11492
11537
|
requiresPower?: boolean | undefined;
|
|
@@ -11497,6 +11542,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11497
11542
|
doNotConnect?: boolean | undefined;
|
|
11498
11543
|
includeInBoardPinout?: boolean | undefined;
|
|
11499
11544
|
highlightColor?: string | undefined;
|
|
11545
|
+
mustBeConnected?: boolean | undefined;
|
|
11500
11546
|
}, {
|
|
11501
11547
|
providesPower?: boolean | undefined;
|
|
11502
11548
|
requiresPower?: boolean | undefined;
|
|
@@ -11507,6 +11553,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11507
11553
|
doNotConnect?: boolean | undefined;
|
|
11508
11554
|
includeInBoardPinout?: boolean | undefined;
|
|
11509
11555
|
highlightColor?: string | undefined;
|
|
11556
|
+
mustBeConnected?: boolean | undefined;
|
|
11510
11557
|
}>>>;
|
|
11511
11558
|
} & {
|
|
11512
11559
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -11797,6 +11844,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
11797
11844
|
doNotConnect?: boolean | undefined;
|
|
11798
11845
|
includeInBoardPinout?: boolean | undefined;
|
|
11799
11846
|
highlightColor?: string | undefined;
|
|
11847
|
+
mustBeConnected?: boolean | undefined;
|
|
11800
11848
|
}> | undefined;
|
|
11801
11849
|
cadModel?: string | {
|
|
11802
11850
|
stlUrl: string;
|
|
@@ -12061,6 +12109,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
12061
12109
|
doNotConnect?: boolean | undefined;
|
|
12062
12110
|
includeInBoardPinout?: boolean | undefined;
|
|
12063
12111
|
highlightColor?: string | undefined;
|
|
12112
|
+
mustBeConnected?: boolean | undefined;
|
|
12064
12113
|
}> | undefined;
|
|
12065
12114
|
cadModel?: string | {
|
|
12066
12115
|
stlUrl: string;
|
|
@@ -12951,6 +13000,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12951
13000
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
12952
13001
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
12953
13002
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
13003
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
12954
13004
|
}, "strip", zod.ZodTypeAny, {
|
|
12955
13005
|
providesPower?: boolean | undefined;
|
|
12956
13006
|
requiresPower?: boolean | undefined;
|
|
@@ -12961,6 +13011,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12961
13011
|
doNotConnect?: boolean | undefined;
|
|
12962
13012
|
includeInBoardPinout?: boolean | undefined;
|
|
12963
13013
|
highlightColor?: string | undefined;
|
|
13014
|
+
mustBeConnected?: boolean | undefined;
|
|
12964
13015
|
}, {
|
|
12965
13016
|
providesPower?: boolean | undefined;
|
|
12966
13017
|
requiresPower?: boolean | undefined;
|
|
@@ -12971,6 +13022,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
12971
13022
|
doNotConnect?: boolean | undefined;
|
|
12972
13023
|
includeInBoardPinout?: boolean | undefined;
|
|
12973
13024
|
highlightColor?: string | undefined;
|
|
13025
|
+
mustBeConnected?: boolean | undefined;
|
|
12974
13026
|
}>>>;
|
|
12975
13027
|
} & {
|
|
12976
13028
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -13264,6 +13316,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
13264
13316
|
doNotConnect?: boolean | undefined;
|
|
13265
13317
|
includeInBoardPinout?: boolean | undefined;
|
|
13266
13318
|
highlightColor?: string | undefined;
|
|
13319
|
+
mustBeConnected?: boolean | undefined;
|
|
13267
13320
|
}> | undefined;
|
|
13268
13321
|
cadModel?: string | {
|
|
13269
13322
|
stlUrl: string;
|
|
@@ -13530,6 +13583,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
13530
13583
|
doNotConnect?: boolean | undefined;
|
|
13531
13584
|
includeInBoardPinout?: boolean | undefined;
|
|
13532
13585
|
highlightColor?: string | undefined;
|
|
13586
|
+
mustBeConnected?: boolean | undefined;
|
|
13533
13587
|
}> | undefined;
|
|
13534
13588
|
cadModel?: string | {
|
|
13535
13589
|
stlUrl: string;
|
|
@@ -14419,6 +14473,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14419
14473
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
14420
14474
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
14421
14475
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
14476
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
14422
14477
|
}, "strip", zod.ZodTypeAny, {
|
|
14423
14478
|
providesPower?: boolean | undefined;
|
|
14424
14479
|
requiresPower?: boolean | undefined;
|
|
@@ -14429,6 +14484,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14429
14484
|
doNotConnect?: boolean | undefined;
|
|
14430
14485
|
includeInBoardPinout?: boolean | undefined;
|
|
14431
14486
|
highlightColor?: string | undefined;
|
|
14487
|
+
mustBeConnected?: boolean | undefined;
|
|
14432
14488
|
}, {
|
|
14433
14489
|
providesPower?: boolean | undefined;
|
|
14434
14490
|
requiresPower?: boolean | undefined;
|
|
@@ -14439,6 +14495,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14439
14495
|
doNotConnect?: boolean | undefined;
|
|
14440
14496
|
includeInBoardPinout?: boolean | undefined;
|
|
14441
14497
|
highlightColor?: string | undefined;
|
|
14498
|
+
mustBeConnected?: boolean | undefined;
|
|
14442
14499
|
}>>>;
|
|
14443
14500
|
} & {
|
|
14444
14501
|
color: zod.ZodOptional<zod.ZodString>;
|
|
@@ -14497,6 +14554,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14497
14554
|
doNotConnect?: boolean | undefined;
|
|
14498
14555
|
includeInBoardPinout?: boolean | undefined;
|
|
14499
14556
|
highlightColor?: string | undefined;
|
|
14557
|
+
mustBeConnected?: boolean | undefined;
|
|
14500
14558
|
}> | undefined;
|
|
14501
14559
|
cadModel?: string | {
|
|
14502
14560
|
stlUrl: string;
|
|
@@ -14695,6 +14753,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
14695
14753
|
doNotConnect?: boolean | undefined;
|
|
14696
14754
|
includeInBoardPinout?: boolean | undefined;
|
|
14697
14755
|
highlightColor?: string | undefined;
|
|
14756
|
+
mustBeConnected?: boolean | undefined;
|
|
14698
14757
|
}> | undefined;
|
|
14699
14758
|
cadModel?: string | {
|
|
14700
14759
|
stlUrl: string;
|
|
@@ -15520,6 +15579,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15520
15579
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
15521
15580
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
15522
15581
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
15582
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
15523
15583
|
}, "strip", zod.ZodTypeAny, {
|
|
15524
15584
|
providesPower?: boolean | undefined;
|
|
15525
15585
|
requiresPower?: boolean | undefined;
|
|
@@ -15530,6 +15590,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15530
15590
|
doNotConnect?: boolean | undefined;
|
|
15531
15591
|
includeInBoardPinout?: boolean | undefined;
|
|
15532
15592
|
highlightColor?: string | undefined;
|
|
15593
|
+
mustBeConnected?: boolean | undefined;
|
|
15533
15594
|
}, {
|
|
15534
15595
|
providesPower?: boolean | undefined;
|
|
15535
15596
|
requiresPower?: boolean | undefined;
|
|
@@ -15540,6 +15601,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15540
15601
|
doNotConnect?: boolean | undefined;
|
|
15541
15602
|
includeInBoardPinout?: boolean | undefined;
|
|
15542
15603
|
highlightColor?: string | undefined;
|
|
15604
|
+
mustBeConnected?: boolean | undefined;
|
|
15543
15605
|
}>>>;
|
|
15544
15606
|
} & {
|
|
15545
15607
|
voltage: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -15594,6 +15656,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15594
15656
|
doNotConnect?: boolean | undefined;
|
|
15595
15657
|
includeInBoardPinout?: boolean | undefined;
|
|
15596
15658
|
highlightColor?: string | undefined;
|
|
15659
|
+
mustBeConnected?: boolean | undefined;
|
|
15597
15660
|
}> | undefined;
|
|
15598
15661
|
cadModel?: string | {
|
|
15599
15662
|
stlUrl: string;
|
|
@@ -15787,6 +15850,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
15787
15850
|
doNotConnect?: boolean | undefined;
|
|
15788
15851
|
includeInBoardPinout?: boolean | undefined;
|
|
15789
15852
|
highlightColor?: string | undefined;
|
|
15853
|
+
mustBeConnected?: boolean | undefined;
|
|
15790
15854
|
}> | undefined;
|
|
15791
15855
|
cadModel?: string | {
|
|
15792
15856
|
stlUrl: string;
|
|
@@ -16609,6 +16673,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16609
16673
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16610
16674
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
16611
16675
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
16676
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
16612
16677
|
}, "strip", z.ZodTypeAny, {
|
|
16613
16678
|
providesPower?: boolean | undefined;
|
|
16614
16679
|
requiresPower?: boolean | undefined;
|
|
@@ -16619,6 +16684,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16619
16684
|
doNotConnect?: boolean | undefined;
|
|
16620
16685
|
includeInBoardPinout?: boolean | undefined;
|
|
16621
16686
|
highlightColor?: string | undefined;
|
|
16687
|
+
mustBeConnected?: boolean | undefined;
|
|
16622
16688
|
}, {
|
|
16623
16689
|
providesPower?: boolean | undefined;
|
|
16624
16690
|
requiresPower?: boolean | undefined;
|
|
@@ -16629,6 +16695,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16629
16695
|
doNotConnect?: boolean | undefined;
|
|
16630
16696
|
includeInBoardPinout?: boolean | undefined;
|
|
16631
16697
|
highlightColor?: string | undefined;
|
|
16698
|
+
mustBeConnected?: boolean | undefined;
|
|
16632
16699
|
}>>>;
|
|
16633
16700
|
} & {
|
|
16634
16701
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -16827,6 +16894,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
16827
16894
|
doNotConnect?: boolean | undefined;
|
|
16828
16895
|
includeInBoardPinout?: boolean | undefined;
|
|
16829
16896
|
highlightColor?: string | undefined;
|
|
16897
|
+
mustBeConnected?: boolean | undefined;
|
|
16830
16898
|
}> | undefined;
|
|
16831
16899
|
voltage?: number | undefined;
|
|
16832
16900
|
frequency?: number | undefined;
|
|
@@ -17025,6 +17093,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
17025
17093
|
doNotConnect?: boolean | undefined;
|
|
17026
17094
|
includeInBoardPinout?: boolean | undefined;
|
|
17027
17095
|
highlightColor?: string | undefined;
|
|
17096
|
+
mustBeConnected?: boolean | undefined;
|
|
17028
17097
|
}> | undefined;
|
|
17029
17098
|
voltage?: string | number | undefined;
|
|
17030
17099
|
frequency?: string | number | undefined;
|
|
@@ -17698,6 +17767,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17698
17767
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
17699
17768
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
17700
17769
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
17770
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
17701
17771
|
}, "strip", z.ZodTypeAny, {
|
|
17702
17772
|
providesPower?: boolean | undefined;
|
|
17703
17773
|
requiresPower?: boolean | undefined;
|
|
@@ -17708,6 +17778,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17708
17778
|
doNotConnect?: boolean | undefined;
|
|
17709
17779
|
includeInBoardPinout?: boolean | undefined;
|
|
17710
17780
|
highlightColor?: string | undefined;
|
|
17781
|
+
mustBeConnected?: boolean | undefined;
|
|
17711
17782
|
}, {
|
|
17712
17783
|
providesPower?: boolean | undefined;
|
|
17713
17784
|
requiresPower?: boolean | undefined;
|
|
@@ -17718,6 +17789,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17718
17789
|
doNotConnect?: boolean | undefined;
|
|
17719
17790
|
includeInBoardPinout?: boolean | undefined;
|
|
17720
17791
|
highlightColor?: string | undefined;
|
|
17792
|
+
mustBeConnected?: boolean | undefined;
|
|
17721
17793
|
}>>>;
|
|
17722
17794
|
} & {
|
|
17723
17795
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17916,6 +17988,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
17916
17988
|
doNotConnect?: boolean | undefined;
|
|
17917
17989
|
includeInBoardPinout?: boolean | undefined;
|
|
17918
17990
|
highlightColor?: string | undefined;
|
|
17991
|
+
mustBeConnected?: boolean | undefined;
|
|
17919
17992
|
}> | undefined;
|
|
17920
17993
|
voltage?: number | undefined;
|
|
17921
17994
|
frequency?: number | undefined;
|
|
@@ -18114,6 +18187,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
18114
18187
|
doNotConnect?: boolean | undefined;
|
|
18115
18188
|
includeInBoardPinout?: boolean | undefined;
|
|
18116
18189
|
highlightColor?: string | undefined;
|
|
18190
|
+
mustBeConnected?: boolean | undefined;
|
|
18117
18191
|
}> | undefined;
|
|
18118
18192
|
voltage?: string | number | undefined;
|
|
18119
18193
|
frequency?: string | number | undefined;
|
|
@@ -18799,6 +18873,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18799
18873
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
18800
18874
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
18801
18875
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
18876
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
18802
18877
|
}, "strip", zod.ZodTypeAny, {
|
|
18803
18878
|
providesPower?: boolean | undefined;
|
|
18804
18879
|
requiresPower?: boolean | undefined;
|
|
@@ -18809,6 +18884,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18809
18884
|
doNotConnect?: boolean | undefined;
|
|
18810
18885
|
includeInBoardPinout?: boolean | undefined;
|
|
18811
18886
|
highlightColor?: string | undefined;
|
|
18887
|
+
mustBeConnected?: boolean | undefined;
|
|
18812
18888
|
}, {
|
|
18813
18889
|
providesPower?: boolean | undefined;
|
|
18814
18890
|
requiresPower?: boolean | undefined;
|
|
@@ -18819,6 +18895,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18819
18895
|
doNotConnect?: boolean | undefined;
|
|
18820
18896
|
includeInBoardPinout?: boolean | undefined;
|
|
18821
18897
|
highlightColor?: string | undefined;
|
|
18898
|
+
mustBeConnected?: boolean | undefined;
|
|
18822
18899
|
}>>>;
|
|
18823
18900
|
} & {
|
|
18824
18901
|
resistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -18879,6 +18956,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
18879
18956
|
doNotConnect?: boolean | undefined;
|
|
18880
18957
|
includeInBoardPinout?: boolean | undefined;
|
|
18881
18958
|
highlightColor?: string | undefined;
|
|
18959
|
+
mustBeConnected?: boolean | undefined;
|
|
18882
18960
|
}> | undefined;
|
|
18883
18961
|
cadModel?: string | {
|
|
18884
18962
|
stlUrl: string;
|
|
@@ -19078,6 +19156,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
19078
19156
|
doNotConnect?: boolean | undefined;
|
|
19079
19157
|
includeInBoardPinout?: boolean | undefined;
|
|
19080
19158
|
highlightColor?: string | undefined;
|
|
19159
|
+
mustBeConnected?: boolean | undefined;
|
|
19081
19160
|
}> | undefined;
|
|
19082
19161
|
cadModel?: string | {
|
|
19083
19162
|
stlUrl: string;
|
|
@@ -20929,6 +21008,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20929
21008
|
shape: zod.ZodOptional<zod.ZodLiteral<"circle">>;
|
|
20930
21009
|
diameter: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
20931
21010
|
radius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21011
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21012
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
20932
21013
|
}, "strip", zod.ZodTypeAny, {
|
|
20933
21014
|
pcbX?: number | undefined;
|
|
20934
21015
|
pcbY?: number | undefined;
|
|
@@ -20956,6 +21037,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20956
21037
|
relative?: boolean | undefined;
|
|
20957
21038
|
name?: string | undefined;
|
|
20958
21039
|
shape?: "circle" | undefined;
|
|
21040
|
+
solderMaskMargin?: number | undefined;
|
|
21041
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
20959
21042
|
radius?: number | undefined;
|
|
20960
21043
|
diameter?: number | undefined;
|
|
20961
21044
|
}, {
|
|
@@ -20987,6 +21070,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
20987
21070
|
relative?: boolean | undefined;
|
|
20988
21071
|
name?: string | undefined;
|
|
20989
21072
|
shape?: "circle" | undefined;
|
|
21073
|
+
solderMaskMargin?: string | number | undefined;
|
|
21074
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
20990
21075
|
radius?: string | number | undefined;
|
|
20991
21076
|
diameter?: string | number | undefined;
|
|
20992
21077
|
}>, {
|
|
@@ -21018,6 +21103,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21018
21103
|
relative?: boolean | undefined;
|
|
21019
21104
|
name?: string | undefined;
|
|
21020
21105
|
shape?: "circle" | undefined;
|
|
21106
|
+
solderMaskMargin?: number | undefined;
|
|
21107
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21021
21108
|
}, {
|
|
21022
21109
|
pcbX?: string | number | undefined;
|
|
21023
21110
|
pcbY?: string | number | undefined;
|
|
@@ -21047,6 +21134,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21047
21134
|
relative?: boolean | undefined;
|
|
21048
21135
|
name?: string | undefined;
|
|
21049
21136
|
shape?: "circle" | undefined;
|
|
21137
|
+
solderMaskMargin?: string | number | undefined;
|
|
21138
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21050
21139
|
radius?: string | number | undefined;
|
|
21051
21140
|
diameter?: string | number | undefined;
|
|
21052
21141
|
}>, zod.ZodObject<{
|
|
@@ -21107,6 +21196,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21107
21196
|
shape: zod.ZodLiteral<"pill">;
|
|
21108
21197
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21109
21198
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21199
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21200
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21110
21201
|
}, "strip", zod.ZodTypeAny, {
|
|
21111
21202
|
shape: "pill";
|
|
21112
21203
|
width: number;
|
|
@@ -21136,6 +21227,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21136
21227
|
pcbRelative?: boolean | undefined;
|
|
21137
21228
|
relative?: boolean | undefined;
|
|
21138
21229
|
name?: string | undefined;
|
|
21230
|
+
solderMaskMargin?: number | undefined;
|
|
21231
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21139
21232
|
}, {
|
|
21140
21233
|
shape: "pill";
|
|
21141
21234
|
width: string | number;
|
|
@@ -21167,6 +21260,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21167
21260
|
pcbRelative?: boolean | undefined;
|
|
21168
21261
|
relative?: boolean | undefined;
|
|
21169
21262
|
name?: string | undefined;
|
|
21263
|
+
solderMaskMargin?: string | number | undefined;
|
|
21264
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21170
21265
|
}>, zod.ZodObject<{
|
|
21171
21266
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21172
21267
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -21225,6 +21320,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21225
21320
|
shape: zod.ZodLiteral<"rect">;
|
|
21226
21321
|
width: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21227
21322
|
height: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21323
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21324
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21228
21325
|
}, "strip", zod.ZodTypeAny, {
|
|
21229
21326
|
shape: "rect";
|
|
21230
21327
|
width: number;
|
|
@@ -21254,6 +21351,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21254
21351
|
pcbRelative?: boolean | undefined;
|
|
21255
21352
|
relative?: boolean | undefined;
|
|
21256
21353
|
name?: string | undefined;
|
|
21354
|
+
solderMaskMargin?: number | undefined;
|
|
21355
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21257
21356
|
}, {
|
|
21258
21357
|
shape: "rect";
|
|
21259
21358
|
width: string | number;
|
|
@@ -21285,6 +21384,8 @@ declare class Hole extends PrimitiveComponent<typeof holeProps> {
|
|
|
21285
21384
|
pcbRelative?: boolean | undefined;
|
|
21286
21385
|
relative?: boolean | undefined;
|
|
21287
21386
|
name?: string | undefined;
|
|
21387
|
+
solderMaskMargin?: string | number | undefined;
|
|
21388
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21288
21389
|
}>]>;
|
|
21289
21390
|
};
|
|
21290
21391
|
getPcbSize(): {
|
|
@@ -21792,6 +21893,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21792
21893
|
holeDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21793
21894
|
outerDiameter: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
21794
21895
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
21896
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21897
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21795
21898
|
}, "strip", zod.ZodTypeAny, {
|
|
21796
21899
|
shape: "circle";
|
|
21797
21900
|
holeDiameter: number;
|
|
@@ -21821,6 +21924,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21821
21924
|
name?: string | undefined;
|
|
21822
21925
|
connectsTo?: string | string[] | undefined;
|
|
21823
21926
|
portHints?: (string | number)[] | undefined;
|
|
21927
|
+
solderMaskMargin?: number | undefined;
|
|
21928
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21824
21929
|
}, {
|
|
21825
21930
|
shape: "circle";
|
|
21826
21931
|
holeDiameter: string | number;
|
|
@@ -21850,6 +21955,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21850
21955
|
name?: string | undefined;
|
|
21851
21956
|
connectsTo?: string | string[] | undefined;
|
|
21852
21957
|
portHints?: (string | number)[] | undefined;
|
|
21958
|
+
solderMaskMargin?: string | number | undefined;
|
|
21959
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21853
21960
|
}>, zod.ZodObject<Omit<{
|
|
21854
21961
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21855
21962
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -21914,6 +22021,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21914
22021
|
innerWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21915
22022
|
innerHeight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
21916
22023
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22024
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22025
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
21917
22026
|
}, "strip", zod.ZodTypeAny, {
|
|
21918
22027
|
shape: "oval";
|
|
21919
22028
|
outerWidth: number;
|
|
@@ -21944,6 +22053,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21944
22053
|
name?: string | undefined;
|
|
21945
22054
|
connectsTo?: string | string[] | undefined;
|
|
21946
22055
|
portHints?: (string | number)[] | undefined;
|
|
22056
|
+
solderMaskMargin?: number | undefined;
|
|
22057
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21947
22058
|
holeWidth?: number | undefined;
|
|
21948
22059
|
holeHeight?: number | undefined;
|
|
21949
22060
|
innerWidth?: number | undefined;
|
|
@@ -21980,6 +22091,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
21980
22091
|
name?: string | undefined;
|
|
21981
22092
|
connectsTo?: string | string[] | undefined;
|
|
21982
22093
|
portHints?: (string | number)[] | undefined;
|
|
22094
|
+
solderMaskMargin?: string | number | undefined;
|
|
22095
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
21983
22096
|
innerWidth?: string | number | undefined;
|
|
21984
22097
|
innerHeight?: string | number | undefined;
|
|
21985
22098
|
}>, zod.ZodObject<Omit<{
|
|
@@ -22049,6 +22162,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22049
22162
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22050
22163
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22051
22164
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22165
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22166
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22052
22167
|
}, "strip", zod.ZodTypeAny, {
|
|
22053
22168
|
shape: "pill";
|
|
22054
22169
|
outerWidth: number;
|
|
@@ -22079,6 +22194,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22079
22194
|
name?: string | undefined;
|
|
22080
22195
|
connectsTo?: string | string[] | undefined;
|
|
22081
22196
|
portHints?: (string | number)[] | undefined;
|
|
22197
|
+
solderMaskMargin?: number | undefined;
|
|
22198
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22082
22199
|
holeWidth?: number | undefined;
|
|
22083
22200
|
holeHeight?: number | undefined;
|
|
22084
22201
|
innerWidth?: number | undefined;
|
|
@@ -22118,6 +22235,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22118
22235
|
name?: string | undefined;
|
|
22119
22236
|
connectsTo?: string | string[] | undefined;
|
|
22120
22237
|
portHints?: (string | number)[] | undefined;
|
|
22238
|
+
solderMaskMargin?: string | number | undefined;
|
|
22239
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22121
22240
|
innerWidth?: string | number | undefined;
|
|
22122
22241
|
innerHeight?: string | number | undefined;
|
|
22123
22242
|
rectPad?: boolean | undefined;
|
|
@@ -22189,6 +22308,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22189
22308
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22190
22309
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22191
22310
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22311
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22312
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22192
22313
|
}, "strip", zod.ZodTypeAny, {
|
|
22193
22314
|
shape: "circular_hole_with_rect_pad";
|
|
22194
22315
|
holeDiameter: number;
|
|
@@ -22219,6 +22340,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22219
22340
|
name?: string | undefined;
|
|
22220
22341
|
connectsTo?: string | string[] | undefined;
|
|
22221
22342
|
portHints?: (string | number)[] | undefined;
|
|
22343
|
+
solderMaskMargin?: number | undefined;
|
|
22344
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22222
22345
|
holeOffsetX?: number | undefined;
|
|
22223
22346
|
holeOffsetY?: number | undefined;
|
|
22224
22347
|
rectBorderRadius?: number | undefined;
|
|
@@ -22254,6 +22377,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22254
22377
|
name?: string | undefined;
|
|
22255
22378
|
connectsTo?: string | string[] | undefined;
|
|
22256
22379
|
portHints?: (string | number)[] | undefined;
|
|
22380
|
+
solderMaskMargin?: string | number | undefined;
|
|
22381
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22257
22382
|
holeOffsetX?: string | number | undefined;
|
|
22258
22383
|
holeOffsetY?: string | number | undefined;
|
|
22259
22384
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -22325,6 +22450,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22325
22450
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22326
22451
|
holeOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22327
22452
|
holeOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22453
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22454
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22328
22455
|
}, "strip", zod.ZodTypeAny, {
|
|
22329
22456
|
shape: "pill_hole_with_rect_pad";
|
|
22330
22457
|
holeWidth: number;
|
|
@@ -22358,6 +22485,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22358
22485
|
name?: string | undefined;
|
|
22359
22486
|
connectsTo?: string | string[] | undefined;
|
|
22360
22487
|
portHints?: (string | number)[] | undefined;
|
|
22488
|
+
solderMaskMargin?: number | undefined;
|
|
22489
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22361
22490
|
holeOffsetX?: number | undefined;
|
|
22362
22491
|
holeOffsetY?: number | undefined;
|
|
22363
22492
|
}, {
|
|
@@ -22393,6 +22522,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22393
22522
|
name?: string | undefined;
|
|
22394
22523
|
connectsTo?: string | string[] | undefined;
|
|
22395
22524
|
portHints?: (string | number)[] | undefined;
|
|
22525
|
+
solderMaskMargin?: string | number | undefined;
|
|
22526
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22396
22527
|
holeOffsetX?: string | number | undefined;
|
|
22397
22528
|
holeOffsetY?: string | number | undefined;
|
|
22398
22529
|
}>, zod.ZodObject<Omit<{
|
|
@@ -22469,6 +22600,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22469
22600
|
holeOffsetX: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
22470
22601
|
holeOffsetY: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
22471
22602
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
22603
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
22604
|
+
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
22472
22605
|
}, "strip", zod.ZodTypeAny, {
|
|
22473
22606
|
shape: "hole_with_polygon_pad";
|
|
22474
22607
|
holeOffsetX: number;
|
|
@@ -22504,6 +22637,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22504
22637
|
connectsTo?: string | string[] | undefined;
|
|
22505
22638
|
holeDiameter?: number | undefined;
|
|
22506
22639
|
portHints?: (string | number)[] | undefined;
|
|
22640
|
+
solderMaskMargin?: number | undefined;
|
|
22641
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22507
22642
|
holeWidth?: number | undefined;
|
|
22508
22643
|
holeHeight?: number | undefined;
|
|
22509
22644
|
}, {
|
|
@@ -22541,6 +22676,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22541
22676
|
connectsTo?: string | string[] | undefined;
|
|
22542
22677
|
holeDiameter?: string | number | undefined;
|
|
22543
22678
|
portHints?: (string | number)[] | undefined;
|
|
22679
|
+
solderMaskMargin?: string | number | undefined;
|
|
22680
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22544
22681
|
holeWidth?: string | number | undefined;
|
|
22545
22682
|
holeHeight?: string | number | undefined;
|
|
22546
22683
|
}>]>, {
|
|
@@ -22572,6 +22709,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22572
22709
|
name?: string | undefined;
|
|
22573
22710
|
connectsTo?: string | string[] | undefined;
|
|
22574
22711
|
portHints?: (string | number)[] | undefined;
|
|
22712
|
+
solderMaskMargin?: number | undefined;
|
|
22713
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22575
22714
|
} | {
|
|
22576
22715
|
shape: "oval";
|
|
22577
22716
|
outerWidth: number;
|
|
@@ -22602,6 +22741,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22602
22741
|
name?: string | undefined;
|
|
22603
22742
|
connectsTo?: string | string[] | undefined;
|
|
22604
22743
|
portHints?: (string | number)[] | undefined;
|
|
22744
|
+
solderMaskMargin?: number | undefined;
|
|
22745
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22605
22746
|
holeWidth?: number | undefined;
|
|
22606
22747
|
holeHeight?: number | undefined;
|
|
22607
22748
|
innerWidth?: number | undefined;
|
|
@@ -22636,6 +22777,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22636
22777
|
name?: string | undefined;
|
|
22637
22778
|
connectsTo?: string | string[] | undefined;
|
|
22638
22779
|
portHints?: (string | number)[] | undefined;
|
|
22780
|
+
solderMaskMargin?: number | undefined;
|
|
22781
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22639
22782
|
holeWidth?: number | undefined;
|
|
22640
22783
|
holeHeight?: number | undefined;
|
|
22641
22784
|
innerWidth?: number | undefined;
|
|
@@ -22673,6 +22816,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22673
22816
|
name?: string | undefined;
|
|
22674
22817
|
connectsTo?: string | string[] | undefined;
|
|
22675
22818
|
portHints?: (string | number)[] | undefined;
|
|
22819
|
+
solderMaskMargin?: number | undefined;
|
|
22820
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22676
22821
|
holeOffsetX?: number | undefined;
|
|
22677
22822
|
holeOffsetY?: number | undefined;
|
|
22678
22823
|
rectBorderRadius?: number | undefined;
|
|
@@ -22711,6 +22856,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22711
22856
|
name?: string | undefined;
|
|
22712
22857
|
connectsTo?: string | string[] | undefined;
|
|
22713
22858
|
portHints?: (string | number)[] | undefined;
|
|
22859
|
+
solderMaskMargin?: number | undefined;
|
|
22860
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22714
22861
|
holeOffsetX?: number | undefined;
|
|
22715
22862
|
holeOffsetY?: number | undefined;
|
|
22716
22863
|
} | {
|
|
@@ -22748,6 +22895,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22748
22895
|
connectsTo?: string | string[] | undefined;
|
|
22749
22896
|
holeDiameter?: number | undefined;
|
|
22750
22897
|
portHints?: (string | number)[] | undefined;
|
|
22898
|
+
solderMaskMargin?: number | undefined;
|
|
22899
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22751
22900
|
holeWidth?: number | undefined;
|
|
22752
22901
|
holeHeight?: number | undefined;
|
|
22753
22902
|
}, {
|
|
@@ -22779,6 +22928,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22779
22928
|
name?: string | undefined;
|
|
22780
22929
|
connectsTo?: string | string[] | undefined;
|
|
22781
22930
|
portHints?: (string | number)[] | undefined;
|
|
22931
|
+
solderMaskMargin?: string | number | undefined;
|
|
22932
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22782
22933
|
} | {
|
|
22783
22934
|
shape: "oval";
|
|
22784
22935
|
outerWidth: string | number;
|
|
@@ -22811,6 +22962,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22811
22962
|
name?: string | undefined;
|
|
22812
22963
|
connectsTo?: string | string[] | undefined;
|
|
22813
22964
|
portHints?: (string | number)[] | undefined;
|
|
22965
|
+
solderMaskMargin?: string | number | undefined;
|
|
22966
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22814
22967
|
innerWidth?: string | number | undefined;
|
|
22815
22968
|
innerHeight?: string | number | undefined;
|
|
22816
22969
|
} | {
|
|
@@ -22845,6 +22998,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22845
22998
|
name?: string | undefined;
|
|
22846
22999
|
connectsTo?: string | string[] | undefined;
|
|
22847
23000
|
portHints?: (string | number)[] | undefined;
|
|
23001
|
+
solderMaskMargin?: string | number | undefined;
|
|
23002
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22848
23003
|
innerWidth?: string | number | undefined;
|
|
22849
23004
|
innerHeight?: string | number | undefined;
|
|
22850
23005
|
rectPad?: boolean | undefined;
|
|
@@ -22880,6 +23035,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22880
23035
|
name?: string | undefined;
|
|
22881
23036
|
connectsTo?: string | string[] | undefined;
|
|
22882
23037
|
portHints?: (string | number)[] | undefined;
|
|
23038
|
+
solderMaskMargin?: string | number | undefined;
|
|
23039
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22883
23040
|
holeOffsetX?: string | number | undefined;
|
|
22884
23041
|
holeOffsetY?: string | number | undefined;
|
|
22885
23042
|
rectBorderRadius?: string | number | undefined;
|
|
@@ -22918,6 +23075,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22918
23075
|
name?: string | undefined;
|
|
22919
23076
|
connectsTo?: string | string[] | undefined;
|
|
22920
23077
|
portHints?: (string | number)[] | undefined;
|
|
23078
|
+
solderMaskMargin?: string | number | undefined;
|
|
23079
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22921
23080
|
holeOffsetX?: string | number | undefined;
|
|
22922
23081
|
holeOffsetY?: string | number | undefined;
|
|
22923
23082
|
} | {
|
|
@@ -22955,6 +23114,8 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
22955
23114
|
connectsTo?: string | string[] | undefined;
|
|
22956
23115
|
holeDiameter?: string | number | undefined;
|
|
22957
23116
|
portHints?: (string | number)[] | undefined;
|
|
23117
|
+
solderMaskMargin?: string | number | undefined;
|
|
23118
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
22958
23119
|
holeWidth?: string | number | undefined;
|
|
22959
23120
|
holeHeight?: string | number | undefined;
|
|
22960
23121
|
}>;
|
|
@@ -23767,6 +23928,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23767
23928
|
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
23768
23929
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
23769
23930
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
23931
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23770
23932
|
}, "strip", zod.ZodTypeAny, {
|
|
23771
23933
|
shape: "circle";
|
|
23772
23934
|
radius: number;
|
|
@@ -23795,6 +23957,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23795
23957
|
relative?: boolean | undefined;
|
|
23796
23958
|
name?: string | undefined;
|
|
23797
23959
|
portHints?: (string | number)[] | undefined;
|
|
23960
|
+
solderMaskMargin?: number | undefined;
|
|
23798
23961
|
coveredWithSolderMask?: boolean | undefined;
|
|
23799
23962
|
}, {
|
|
23800
23963
|
shape: "circle";
|
|
@@ -23826,6 +23989,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23826
23989
|
relative?: boolean | undefined;
|
|
23827
23990
|
name?: string | undefined;
|
|
23828
23991
|
portHints?: (string | number)[] | undefined;
|
|
23992
|
+
solderMaskMargin?: string | number | undefined;
|
|
23829
23993
|
coveredWithSolderMask?: boolean | undefined;
|
|
23830
23994
|
}>, zod.ZodObject<Omit<{
|
|
23831
23995
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -23889,6 +24053,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23889
24053
|
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23890
24054
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
23891
24055
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24056
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23892
24057
|
}, "strip", zod.ZodTypeAny, {
|
|
23893
24058
|
shape: "rect";
|
|
23894
24059
|
width: number;
|
|
@@ -23918,9 +24083,10 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23918
24083
|
relative?: boolean | undefined;
|
|
23919
24084
|
name?: string | undefined;
|
|
23920
24085
|
portHints?: (string | number)[] | undefined;
|
|
24086
|
+
solderMaskMargin?: number | undefined;
|
|
24087
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
23921
24088
|
rectBorderRadius?: number | undefined;
|
|
23922
24089
|
cornerRadius?: number | undefined;
|
|
23923
|
-
coveredWithSolderMask?: boolean | undefined;
|
|
23924
24090
|
}, {
|
|
23925
24091
|
shape: "rect";
|
|
23926
24092
|
width: string | number;
|
|
@@ -23952,9 +24118,10 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
23952
24118
|
relative?: boolean | undefined;
|
|
23953
24119
|
name?: string | undefined;
|
|
23954
24120
|
portHints?: (string | number)[] | undefined;
|
|
24121
|
+
solderMaskMargin?: string | number | undefined;
|
|
24122
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
23955
24123
|
rectBorderRadius?: string | number | undefined;
|
|
23956
24124
|
cornerRadius?: string | number | undefined;
|
|
23957
|
-
coveredWithSolderMask?: boolean | undefined;
|
|
23958
24125
|
}>, zod.ZodObject<Omit<{
|
|
23959
24126
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
23960
24127
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24017,6 +24184,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24017
24184
|
cornerRadius: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24018
24185
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24019
24186
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24187
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24020
24188
|
}, "strip", zod.ZodTypeAny, {
|
|
24021
24189
|
shape: "rotated_rect";
|
|
24022
24190
|
width: number;
|
|
@@ -24047,8 +24215,9 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24047
24215
|
relative?: boolean | undefined;
|
|
24048
24216
|
name?: string | undefined;
|
|
24049
24217
|
portHints?: (string | number)[] | undefined;
|
|
24050
|
-
|
|
24218
|
+
solderMaskMargin?: number | undefined;
|
|
24051
24219
|
coveredWithSolderMask?: boolean | undefined;
|
|
24220
|
+
cornerRadius?: number | undefined;
|
|
24052
24221
|
}, {
|
|
24053
24222
|
shape: "rotated_rect";
|
|
24054
24223
|
width: string | number;
|
|
@@ -24081,8 +24250,9 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24081
24250
|
relative?: boolean | undefined;
|
|
24082
24251
|
name?: string | undefined;
|
|
24083
24252
|
portHints?: (string | number)[] | undefined;
|
|
24084
|
-
|
|
24253
|
+
solderMaskMargin?: string | number | undefined;
|
|
24085
24254
|
coveredWithSolderMask?: boolean | undefined;
|
|
24255
|
+
cornerRadius?: string | number | undefined;
|
|
24086
24256
|
}>, zod.ZodObject<Omit<{
|
|
24087
24257
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24088
24258
|
pcbY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24144,6 +24314,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24144
24314
|
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
24145
24315
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24146
24316
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24317
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24147
24318
|
}, "strip", zod.ZodTypeAny, {
|
|
24148
24319
|
shape: "pill";
|
|
24149
24320
|
width: number;
|
|
@@ -24174,6 +24345,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24174
24345
|
relative?: boolean | undefined;
|
|
24175
24346
|
name?: string | undefined;
|
|
24176
24347
|
portHints?: (string | number)[] | undefined;
|
|
24348
|
+
solderMaskMargin?: number | undefined;
|
|
24177
24349
|
coveredWithSolderMask?: boolean | undefined;
|
|
24178
24350
|
}, {
|
|
24179
24351
|
shape: "pill";
|
|
@@ -24207,6 +24379,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24207
24379
|
relative?: boolean | undefined;
|
|
24208
24380
|
name?: string | undefined;
|
|
24209
24381
|
portHints?: (string | number)[] | undefined;
|
|
24382
|
+
solderMaskMargin?: string | number | undefined;
|
|
24210
24383
|
coveredWithSolderMask?: boolean | undefined;
|
|
24211
24384
|
}>, zod.ZodObject<Omit<{
|
|
24212
24385
|
pcbX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -24276,6 +24449,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24276
24449
|
}>, "many">;
|
|
24277
24450
|
portHints: zod.ZodOptional<zod.ZodArray<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, "many">>;
|
|
24278
24451
|
coveredWithSolderMask: zod.ZodOptional<zod.ZodBoolean>;
|
|
24452
|
+
solderMaskMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
24279
24453
|
}, "strip", zod.ZodTypeAny, {
|
|
24280
24454
|
shape: "polygon";
|
|
24281
24455
|
points: {
|
|
@@ -24307,6 +24481,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24307
24481
|
relative?: boolean | undefined;
|
|
24308
24482
|
name?: string | undefined;
|
|
24309
24483
|
portHints?: (string | number)[] | undefined;
|
|
24484
|
+
solderMaskMargin?: number | undefined;
|
|
24310
24485
|
coveredWithSolderMask?: boolean | undefined;
|
|
24311
24486
|
}, {
|
|
24312
24487
|
shape: "polygon";
|
|
@@ -24341,6 +24516,7 @@ declare class SmtPad extends PrimitiveComponent<typeof smtPadProps> {
|
|
|
24341
24516
|
relative?: boolean | undefined;
|
|
24342
24517
|
name?: string | undefined;
|
|
24343
24518
|
portHints?: (string | number)[] | undefined;
|
|
24519
|
+
solderMaskMargin?: string | number | undefined;
|
|
24344
24520
|
coveredWithSolderMask?: boolean | undefined;
|
|
24345
24521
|
}>]>;
|
|
24346
24522
|
};
|
|
@@ -26100,6 +26276,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26100
26276
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
26101
26277
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
26102
26278
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
26279
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
26103
26280
|
}, "strip", zod.ZodTypeAny, {
|
|
26104
26281
|
providesPower?: boolean | undefined;
|
|
26105
26282
|
requiresPower?: boolean | undefined;
|
|
@@ -26110,6 +26287,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26110
26287
|
doNotConnect?: boolean | undefined;
|
|
26111
26288
|
includeInBoardPinout?: boolean | undefined;
|
|
26112
26289
|
highlightColor?: string | undefined;
|
|
26290
|
+
mustBeConnected?: boolean | undefined;
|
|
26113
26291
|
}, {
|
|
26114
26292
|
providesPower?: boolean | undefined;
|
|
26115
26293
|
requiresPower?: boolean | undefined;
|
|
@@ -26120,6 +26298,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26120
26298
|
doNotConnect?: boolean | undefined;
|
|
26121
26299
|
includeInBoardPinout?: boolean | undefined;
|
|
26122
26300
|
highlightColor?: string | undefined;
|
|
26301
|
+
mustBeConnected?: boolean | undefined;
|
|
26123
26302
|
}>>>;
|
|
26124
26303
|
} & {
|
|
26125
26304
|
capacity: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, number, string | number>>;
|
|
@@ -26176,6 +26355,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26176
26355
|
doNotConnect?: boolean | undefined;
|
|
26177
26356
|
includeInBoardPinout?: boolean | undefined;
|
|
26178
26357
|
highlightColor?: string | undefined;
|
|
26358
|
+
mustBeConnected?: boolean | undefined;
|
|
26179
26359
|
}> | undefined;
|
|
26180
26360
|
cadModel?: string | {
|
|
26181
26361
|
stlUrl: string;
|
|
@@ -26372,6 +26552,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
26372
26552
|
doNotConnect?: boolean | undefined;
|
|
26373
26553
|
includeInBoardPinout?: boolean | undefined;
|
|
26374
26554
|
highlightColor?: string | undefined;
|
|
26555
|
+
mustBeConnected?: boolean | undefined;
|
|
26375
26556
|
}> | undefined;
|
|
26376
26557
|
cadModel?: string | {
|
|
26377
26558
|
stlUrl: string;
|
|
@@ -27189,6 +27370,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27189
27370
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
27190
27371
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
27191
27372
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
27373
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
27192
27374
|
}, "strip", zod.ZodTypeAny, {
|
|
27193
27375
|
providesPower?: boolean | undefined;
|
|
27194
27376
|
requiresPower?: boolean | undefined;
|
|
@@ -27199,6 +27381,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27199
27381
|
doNotConnect?: boolean | undefined;
|
|
27200
27382
|
includeInBoardPinout?: boolean | undefined;
|
|
27201
27383
|
highlightColor?: string | undefined;
|
|
27384
|
+
mustBeConnected?: boolean | undefined;
|
|
27202
27385
|
}, {
|
|
27203
27386
|
providesPower?: boolean | undefined;
|
|
27204
27387
|
requiresPower?: boolean | undefined;
|
|
@@ -27209,6 +27392,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27209
27392
|
doNotConnect?: boolean | undefined;
|
|
27210
27393
|
includeInBoardPinout?: boolean | undefined;
|
|
27211
27394
|
highlightColor?: string | undefined;
|
|
27395
|
+
mustBeConnected?: boolean | undefined;
|
|
27212
27396
|
}>>>;
|
|
27213
27397
|
} & {
|
|
27214
27398
|
pinCount: zod.ZodNumber;
|
|
@@ -27408,6 +27592,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27408
27592
|
doNotConnect?: boolean | undefined;
|
|
27409
27593
|
includeInBoardPinout?: boolean | undefined;
|
|
27410
27594
|
highlightColor?: string | undefined;
|
|
27595
|
+
mustBeConnected?: boolean | undefined;
|
|
27411
27596
|
}> | undefined;
|
|
27412
27597
|
cadModel?: string | {
|
|
27413
27598
|
stlUrl: string;
|
|
@@ -27652,6 +27837,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
27652
27837
|
doNotConnect?: boolean | undefined;
|
|
27653
27838
|
includeInBoardPinout?: boolean | undefined;
|
|
27654
27839
|
highlightColor?: string | undefined;
|
|
27840
|
+
mustBeConnected?: boolean | undefined;
|
|
27655
27841
|
}> | undefined;
|
|
27656
27842
|
cadModel?: string | {
|
|
27657
27843
|
stlUrl: string;
|
|
@@ -28519,6 +28705,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28519
28705
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
28520
28706
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
28521
28707
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
28708
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
28522
28709
|
}, "strip", zod.ZodTypeAny, {
|
|
28523
28710
|
providesPower?: boolean | undefined;
|
|
28524
28711
|
requiresPower?: boolean | undefined;
|
|
@@ -28529,6 +28716,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28529
28716
|
doNotConnect?: boolean | undefined;
|
|
28530
28717
|
includeInBoardPinout?: boolean | undefined;
|
|
28531
28718
|
highlightColor?: string | undefined;
|
|
28719
|
+
mustBeConnected?: boolean | undefined;
|
|
28532
28720
|
}, {
|
|
28533
28721
|
providesPower?: boolean | undefined;
|
|
28534
28722
|
requiresPower?: boolean | undefined;
|
|
@@ -28539,6 +28727,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28539
28727
|
doNotConnect?: boolean | undefined;
|
|
28540
28728
|
includeInBoardPinout?: boolean | undefined;
|
|
28541
28729
|
highlightColor?: string | undefined;
|
|
28730
|
+
mustBeConnected?: boolean | undefined;
|
|
28542
28731
|
}>>>;
|
|
28543
28732
|
} & {
|
|
28544
28733
|
frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -28596,6 +28785,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28596
28785
|
doNotConnect?: boolean | undefined;
|
|
28597
28786
|
includeInBoardPinout?: boolean | undefined;
|
|
28598
28787
|
highlightColor?: string | undefined;
|
|
28788
|
+
mustBeConnected?: boolean | undefined;
|
|
28599
28789
|
}> | undefined;
|
|
28600
28790
|
cadModel?: string | {
|
|
28601
28791
|
stlUrl: string;
|
|
@@ -28791,6 +28981,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
28791
28981
|
doNotConnect?: boolean | undefined;
|
|
28792
28982
|
includeInBoardPinout?: boolean | undefined;
|
|
28793
28983
|
highlightColor?: string | undefined;
|
|
28984
|
+
mustBeConnected?: boolean | undefined;
|
|
28794
28985
|
}> | undefined;
|
|
28795
28986
|
cadModel?: string | {
|
|
28796
28987
|
stlUrl: string;
|
|
@@ -29606,6 +29797,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29606
29797
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
29607
29798
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
29608
29799
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
29800
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
29609
29801
|
}, "strip", zod.ZodTypeAny, {
|
|
29610
29802
|
providesPower?: boolean | undefined;
|
|
29611
29803
|
requiresPower?: boolean | undefined;
|
|
@@ -29616,6 +29808,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29616
29808
|
doNotConnect?: boolean | undefined;
|
|
29617
29809
|
includeInBoardPinout?: boolean | undefined;
|
|
29618
29810
|
highlightColor?: string | undefined;
|
|
29811
|
+
mustBeConnected?: boolean | undefined;
|
|
29619
29812
|
}, {
|
|
29620
29813
|
providesPower?: boolean | undefined;
|
|
29621
29814
|
requiresPower?: boolean | undefined;
|
|
@@ -29626,6 +29819,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29626
29819
|
doNotConnect?: boolean | undefined;
|
|
29627
29820
|
includeInBoardPinout?: boolean | undefined;
|
|
29628
29821
|
highlightColor?: string | undefined;
|
|
29822
|
+
mustBeConnected?: boolean | undefined;
|
|
29629
29823
|
}>>>;
|
|
29630
29824
|
} & {
|
|
29631
29825
|
inductance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -29683,6 +29877,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29683
29877
|
doNotConnect?: boolean | undefined;
|
|
29684
29878
|
includeInBoardPinout?: boolean | undefined;
|
|
29685
29879
|
highlightColor?: string | undefined;
|
|
29880
|
+
mustBeConnected?: boolean | undefined;
|
|
29686
29881
|
}> | undefined;
|
|
29687
29882
|
cadModel?: string | {
|
|
29688
29883
|
stlUrl: string;
|
|
@@ -29879,6 +30074,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
29879
30074
|
doNotConnect?: boolean | undefined;
|
|
29880
30075
|
includeInBoardPinout?: boolean | undefined;
|
|
29881
30076
|
highlightColor?: string | undefined;
|
|
30077
|
+
mustBeConnected?: boolean | undefined;
|
|
29882
30078
|
}> | undefined;
|
|
29883
30079
|
cadModel?: string | {
|
|
29884
30080
|
stlUrl: string;
|
|
@@ -30696,6 +30892,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30696
30892
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
30697
30893
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
30698
30894
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
30895
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
30699
30896
|
}, "strip", zod.ZodTypeAny, {
|
|
30700
30897
|
providesPower?: boolean | undefined;
|
|
30701
30898
|
requiresPower?: boolean | undefined;
|
|
@@ -30706,6 +30903,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30706
30903
|
doNotConnect?: boolean | undefined;
|
|
30707
30904
|
includeInBoardPinout?: boolean | undefined;
|
|
30708
30905
|
highlightColor?: string | undefined;
|
|
30906
|
+
mustBeConnected?: boolean | undefined;
|
|
30709
30907
|
}, {
|
|
30710
30908
|
providesPower?: boolean | undefined;
|
|
30711
30909
|
requiresPower?: boolean | undefined;
|
|
@@ -30716,6 +30914,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30716
30914
|
doNotConnect?: boolean | undefined;
|
|
30717
30915
|
includeInBoardPinout?: boolean | undefined;
|
|
30718
30916
|
highlightColor?: string | undefined;
|
|
30917
|
+
mustBeConnected?: boolean | undefined;
|
|
30719
30918
|
}>>>;
|
|
30720
30919
|
} & {
|
|
30721
30920
|
maxResistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -30771,6 +30970,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30771
30970
|
doNotConnect?: boolean | undefined;
|
|
30772
30971
|
includeInBoardPinout?: boolean | undefined;
|
|
30773
30972
|
highlightColor?: string | undefined;
|
|
30973
|
+
mustBeConnected?: boolean | undefined;
|
|
30774
30974
|
}> | undefined;
|
|
30775
30975
|
cadModel?: string | {
|
|
30776
30976
|
stlUrl: string;
|
|
@@ -30965,6 +31165,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
30965
31165
|
doNotConnect?: boolean | undefined;
|
|
30966
31166
|
includeInBoardPinout?: boolean | undefined;
|
|
30967
31167
|
highlightColor?: string | undefined;
|
|
31168
|
+
mustBeConnected?: boolean | undefined;
|
|
30968
31169
|
}> | undefined;
|
|
30969
31170
|
cadModel?: string | {
|
|
30970
31171
|
stlUrl: string;
|
|
@@ -31779,6 +31980,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31779
31980
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
31780
31981
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
31781
31982
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
31983
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
31782
31984
|
}, "strip", zod.ZodTypeAny, {
|
|
31783
31985
|
providesPower?: boolean | undefined;
|
|
31784
31986
|
requiresPower?: boolean | undefined;
|
|
@@ -31789,6 +31991,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31789
31991
|
doNotConnect?: boolean | undefined;
|
|
31790
31992
|
includeInBoardPinout?: boolean | undefined;
|
|
31791
31993
|
highlightColor?: string | undefined;
|
|
31994
|
+
mustBeConnected?: boolean | undefined;
|
|
31792
31995
|
}, {
|
|
31793
31996
|
providesPower?: boolean | undefined;
|
|
31794
31997
|
requiresPower?: boolean | undefined;
|
|
@@ -31799,6 +32002,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
31799
32002
|
doNotConnect?: boolean | undefined;
|
|
31800
32003
|
includeInBoardPinout?: boolean | undefined;
|
|
31801
32004
|
highlightColor?: string | undefined;
|
|
32005
|
+
mustBeConnected?: boolean | undefined;
|
|
31802
32006
|
}>>>;
|
|
31803
32007
|
} & {
|
|
31804
32008
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
@@ -32100,6 +32304,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
32100
32304
|
doNotConnect?: boolean | undefined;
|
|
32101
32305
|
includeInBoardPinout?: boolean | undefined;
|
|
32102
32306
|
highlightColor?: string | undefined;
|
|
32307
|
+
mustBeConnected?: boolean | undefined;
|
|
32103
32308
|
}> | undefined;
|
|
32104
32309
|
cadModel?: string | {
|
|
32105
32310
|
stlUrl: string;
|
|
@@ -32369,6 +32574,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
32369
32574
|
doNotConnect?: boolean | undefined;
|
|
32370
32575
|
includeInBoardPinout?: boolean | undefined;
|
|
32371
32576
|
highlightColor?: string | undefined;
|
|
32577
|
+
mustBeConnected?: boolean | undefined;
|
|
32372
32578
|
}> | undefined;
|
|
32373
32579
|
cadModel?: string | {
|
|
32374
32580
|
stlUrl: string;
|
|
@@ -33260,6 +33466,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33260
33466
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
33261
33467
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
33262
33468
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
33469
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
33263
33470
|
}, "strip", zod.ZodTypeAny, {
|
|
33264
33471
|
providesPower?: boolean | undefined;
|
|
33265
33472
|
requiresPower?: boolean | undefined;
|
|
@@ -33270,6 +33477,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33270
33477
|
doNotConnect?: boolean | undefined;
|
|
33271
33478
|
includeInBoardPinout?: boolean | undefined;
|
|
33272
33479
|
highlightColor?: string | undefined;
|
|
33480
|
+
mustBeConnected?: boolean | undefined;
|
|
33273
33481
|
}, {
|
|
33274
33482
|
providesPower?: boolean | undefined;
|
|
33275
33483
|
requiresPower?: boolean | undefined;
|
|
@@ -33280,6 +33488,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33280
33488
|
doNotConnect?: boolean | undefined;
|
|
33281
33489
|
includeInBoardPinout?: boolean | undefined;
|
|
33282
33490
|
highlightColor?: string | undefined;
|
|
33491
|
+
mustBeConnected?: boolean | undefined;
|
|
33283
33492
|
}>>>;
|
|
33284
33493
|
} & {
|
|
33285
33494
|
frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
@@ -33341,6 +33550,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33341
33550
|
doNotConnect?: boolean | undefined;
|
|
33342
33551
|
includeInBoardPinout?: boolean | undefined;
|
|
33343
33552
|
highlightColor?: string | undefined;
|
|
33553
|
+
mustBeConnected?: boolean | undefined;
|
|
33344
33554
|
}> | undefined;
|
|
33345
33555
|
cadModel?: string | {
|
|
33346
33556
|
stlUrl: string;
|
|
@@ -33540,6 +33750,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
33540
33750
|
doNotConnect?: boolean | undefined;
|
|
33541
33751
|
includeInBoardPinout?: boolean | undefined;
|
|
33542
33752
|
highlightColor?: string | undefined;
|
|
33753
|
+
mustBeConnected?: boolean | undefined;
|
|
33543
33754
|
}> | undefined;
|
|
33544
33755
|
cadModel?: string | {
|
|
33545
33756
|
stlUrl: string;
|
|
@@ -34359,6 +34570,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34359
34570
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
34360
34571
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
34361
34572
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
34573
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
34362
34574
|
}, "strip", zod.ZodTypeAny, {
|
|
34363
34575
|
providesPower?: boolean | undefined;
|
|
34364
34576
|
requiresPower?: boolean | undefined;
|
|
@@ -34369,6 +34581,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34369
34581
|
doNotConnect?: boolean | undefined;
|
|
34370
34582
|
includeInBoardPinout?: boolean | undefined;
|
|
34371
34583
|
highlightColor?: string | undefined;
|
|
34584
|
+
mustBeConnected?: boolean | undefined;
|
|
34372
34585
|
}, {
|
|
34373
34586
|
providesPower?: boolean | undefined;
|
|
34374
34587
|
requiresPower?: boolean | undefined;
|
|
@@ -34379,6 +34592,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34379
34592
|
doNotConnect?: boolean | undefined;
|
|
34380
34593
|
includeInBoardPinout?: boolean | undefined;
|
|
34381
34594
|
highlightColor?: string | undefined;
|
|
34595
|
+
mustBeConnected?: boolean | undefined;
|
|
34382
34596
|
}>>>;
|
|
34383
34597
|
} & {
|
|
34384
34598
|
type: zod.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -34434,6 +34648,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34434
34648
|
doNotConnect?: boolean | undefined;
|
|
34435
34649
|
includeInBoardPinout?: boolean | undefined;
|
|
34436
34650
|
highlightColor?: string | undefined;
|
|
34651
|
+
mustBeConnected?: boolean | undefined;
|
|
34437
34652
|
}> | undefined;
|
|
34438
34653
|
cadModel?: string | {
|
|
34439
34654
|
stlUrl: string;
|
|
@@ -34628,6 +34843,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
34628
34843
|
doNotConnect?: boolean | undefined;
|
|
34629
34844
|
includeInBoardPinout?: boolean | undefined;
|
|
34630
34845
|
highlightColor?: string | undefined;
|
|
34846
|
+
mustBeConnected?: boolean | undefined;
|
|
34631
34847
|
}> | undefined;
|
|
34632
34848
|
cadModel?: string | {
|
|
34633
34849
|
stlUrl: string;
|
|
@@ -35448,6 +35664,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35448
35664
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
35449
35665
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
35450
35666
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
35667
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
35451
35668
|
}, "strip", zod.ZodTypeAny, {
|
|
35452
35669
|
providesPower?: boolean | undefined;
|
|
35453
35670
|
requiresPower?: boolean | undefined;
|
|
@@ -35458,6 +35675,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35458
35675
|
doNotConnect?: boolean | undefined;
|
|
35459
35676
|
includeInBoardPinout?: boolean | undefined;
|
|
35460
35677
|
highlightColor?: string | undefined;
|
|
35678
|
+
mustBeConnected?: boolean | undefined;
|
|
35461
35679
|
}, {
|
|
35462
35680
|
providesPower?: boolean | undefined;
|
|
35463
35681
|
requiresPower?: boolean | undefined;
|
|
@@ -35468,6 +35686,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35468
35686
|
doNotConnect?: boolean | undefined;
|
|
35469
35687
|
includeInBoardPinout?: boolean | undefined;
|
|
35470
35688
|
highlightColor?: string | undefined;
|
|
35689
|
+
mustBeConnected?: boolean | undefined;
|
|
35471
35690
|
}>>>;
|
|
35472
35691
|
} & {
|
|
35473
35692
|
channelType: zod.ZodEnum<["n", "p"]>;
|
|
@@ -35524,6 +35743,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35524
35743
|
doNotConnect?: boolean | undefined;
|
|
35525
35744
|
includeInBoardPinout?: boolean | undefined;
|
|
35526
35745
|
highlightColor?: string | undefined;
|
|
35746
|
+
mustBeConnected?: boolean | undefined;
|
|
35527
35747
|
}> | undefined;
|
|
35528
35748
|
cadModel?: string | {
|
|
35529
35749
|
stlUrl: string;
|
|
@@ -35718,6 +35938,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
35718
35938
|
doNotConnect?: boolean | undefined;
|
|
35719
35939
|
includeInBoardPinout?: boolean | undefined;
|
|
35720
35940
|
highlightColor?: string | undefined;
|
|
35941
|
+
mustBeConnected?: boolean | undefined;
|
|
35721
35942
|
}> | undefined;
|
|
35722
35943
|
cadModel?: string | {
|
|
35723
35944
|
stlUrl: string;
|
|
@@ -36531,6 +36752,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36531
36752
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
36532
36753
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
36533
36754
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
36755
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
36534
36756
|
}, "strip", zod.ZodTypeAny, {
|
|
36535
36757
|
providesPower?: boolean | undefined;
|
|
36536
36758
|
requiresPower?: boolean | undefined;
|
|
@@ -36541,6 +36763,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36541
36763
|
doNotConnect?: boolean | undefined;
|
|
36542
36764
|
includeInBoardPinout?: boolean | undefined;
|
|
36543
36765
|
highlightColor?: string | undefined;
|
|
36766
|
+
mustBeConnected?: boolean | undefined;
|
|
36544
36767
|
}, {
|
|
36545
36768
|
providesPower?: boolean | undefined;
|
|
36546
36769
|
requiresPower?: boolean | undefined;
|
|
@@ -36551,6 +36774,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36551
36774
|
doNotConnect?: boolean | undefined;
|
|
36552
36775
|
includeInBoardPinout?: boolean | undefined;
|
|
36553
36776
|
highlightColor?: string | undefined;
|
|
36777
|
+
mustBeConnected?: boolean | undefined;
|
|
36554
36778
|
}>>>;
|
|
36555
36779
|
} & {
|
|
36556
36780
|
type: zod.ZodOptional<zod.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -36617,6 +36841,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36617
36841
|
doNotConnect?: boolean | undefined;
|
|
36618
36842
|
includeInBoardPinout?: boolean | undefined;
|
|
36619
36843
|
highlightColor?: string | undefined;
|
|
36844
|
+
mustBeConnected?: boolean | undefined;
|
|
36620
36845
|
}> | undefined;
|
|
36621
36846
|
cadModel?: string | {
|
|
36622
36847
|
stlUrl: string;
|
|
@@ -36820,6 +37045,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
36820
37045
|
doNotConnect?: boolean | undefined;
|
|
36821
37046
|
includeInBoardPinout?: boolean | undefined;
|
|
36822
37047
|
highlightColor?: string | undefined;
|
|
37048
|
+
mustBeConnected?: boolean | undefined;
|
|
36823
37049
|
}> | undefined;
|
|
36824
37050
|
cadModel?: string | {
|
|
36825
37051
|
stlUrl: string;
|
|
@@ -37024,6 +37250,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
37024
37250
|
doNotConnect?: boolean | undefined;
|
|
37025
37251
|
includeInBoardPinout?: boolean | undefined;
|
|
37026
37252
|
highlightColor?: string | undefined;
|
|
37253
|
+
mustBeConnected?: boolean | undefined;
|
|
37027
37254
|
}> | undefined;
|
|
37028
37255
|
cadModel?: string | {
|
|
37029
37256
|
stlUrl: string;
|
|
@@ -37848,6 +38075,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37848
38075
|
doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
|
|
37849
38076
|
includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
|
|
37850
38077
|
highlightColor: zod.ZodOptional<zod.ZodString>;
|
|
38078
|
+
mustBeConnected: zod.ZodOptional<zod.ZodBoolean>;
|
|
37851
38079
|
}, "strip", zod.ZodTypeAny, {
|
|
37852
38080
|
providesPower?: boolean | undefined;
|
|
37853
38081
|
requiresPower?: boolean | undefined;
|
|
@@ -37858,6 +38086,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37858
38086
|
doNotConnect?: boolean | undefined;
|
|
37859
38087
|
includeInBoardPinout?: boolean | undefined;
|
|
37860
38088
|
highlightColor?: string | undefined;
|
|
38089
|
+
mustBeConnected?: boolean | undefined;
|
|
37861
38090
|
}, {
|
|
37862
38091
|
providesPower?: boolean | undefined;
|
|
37863
38092
|
requiresPower?: boolean | undefined;
|
|
@@ -37868,6 +38097,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37868
38097
|
doNotConnect?: boolean | undefined;
|
|
37869
38098
|
includeInBoardPinout?: boolean | undefined;
|
|
37870
38099
|
highlightColor?: string | undefined;
|
|
38100
|
+
mustBeConnected?: boolean | undefined;
|
|
37871
38101
|
}>>>;
|
|
37872
38102
|
} & {
|
|
37873
38103
|
connections: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -37934,6 +38164,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
37934
38164
|
doNotConnect?: boolean | undefined;
|
|
37935
38165
|
includeInBoardPinout?: boolean | undefined;
|
|
37936
38166
|
highlightColor?: string | undefined;
|
|
38167
|
+
mustBeConnected?: boolean | undefined;
|
|
37937
38168
|
}> | undefined;
|
|
37938
38169
|
cadModel?: string | {
|
|
37939
38170
|
stlUrl: string;
|
|
@@ -38134,6 +38365,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38134
38365
|
doNotConnect?: boolean | undefined;
|
|
38135
38366
|
includeInBoardPinout?: boolean | undefined;
|
|
38136
38367
|
highlightColor?: string | undefined;
|
|
38368
|
+
mustBeConnected?: boolean | undefined;
|
|
38137
38369
|
}> | undefined;
|
|
38138
38370
|
cadModel?: string | {
|
|
38139
38371
|
stlUrl: string;
|
|
@@ -38334,6 +38566,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38334
38566
|
doNotConnect?: boolean | undefined;
|
|
38335
38567
|
includeInBoardPinout?: boolean | undefined;
|
|
38336
38568
|
highlightColor?: string | undefined;
|
|
38569
|
+
mustBeConnected?: boolean | undefined;
|
|
38337
38570
|
}> | undefined;
|
|
38338
38571
|
cadModel?: string | {
|
|
38339
38572
|
stlUrl: string;
|
|
@@ -38534,6 +38767,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
38534
38767
|
doNotConnect?: boolean | undefined;
|
|
38535
38768
|
includeInBoardPinout?: boolean | undefined;
|
|
38536
38769
|
highlightColor?: string | undefined;
|
|
38770
|
+
mustBeConnected?: boolean | undefined;
|
|
38537
38771
|
}> | undefined;
|
|
38538
38772
|
cadModel?: string | {
|
|
38539
38773
|
stlUrl: string;
|
|
@@ -39827,6 +40061,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39827
40061
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39828
40062
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
39829
40063
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
40064
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
39830
40065
|
}, "strip", z.ZodTypeAny, {
|
|
39831
40066
|
providesPower?: boolean | undefined;
|
|
39832
40067
|
requiresPower?: boolean | undefined;
|
|
@@ -39837,6 +40072,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39837
40072
|
doNotConnect?: boolean | undefined;
|
|
39838
40073
|
includeInBoardPinout?: boolean | undefined;
|
|
39839
40074
|
highlightColor?: string | undefined;
|
|
40075
|
+
mustBeConnected?: boolean | undefined;
|
|
39840
40076
|
}, {
|
|
39841
40077
|
providesPower?: boolean | undefined;
|
|
39842
40078
|
requiresPower?: boolean | undefined;
|
|
@@ -39847,10 +40083,12 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39847
40083
|
doNotConnect?: boolean | undefined;
|
|
39848
40084
|
includeInBoardPinout?: boolean | undefined;
|
|
39849
40085
|
highlightColor?: string | undefined;
|
|
40086
|
+
mustBeConnected?: boolean | undefined;
|
|
39850
40087
|
}>>>;
|
|
39851
40088
|
}, "name"> & {
|
|
39852
40089
|
name: z.ZodOptional<z.ZodString>;
|
|
39853
40090
|
connectsTo: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
40091
|
+
color: z.ZodOptional<z.ZodString>;
|
|
39854
40092
|
}, "strip", z.ZodTypeAny, {
|
|
39855
40093
|
connectsTo: string | string[];
|
|
39856
40094
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -39902,6 +40140,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
39902
40140
|
doNotConnect?: boolean | undefined;
|
|
39903
40141
|
includeInBoardPinout?: boolean | undefined;
|
|
39904
40142
|
highlightColor?: string | undefined;
|
|
40143
|
+
mustBeConnected?: boolean | undefined;
|
|
39905
40144
|
}> | undefined;
|
|
39906
40145
|
cadModel?: string | {
|
|
39907
40146
|
stlUrl: string;
|
|
@@ -40042,6 +40281,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40042
40281
|
symbolName?: string | undefined;
|
|
40043
40282
|
doNotPlace?: boolean | undefined;
|
|
40044
40283
|
obstructsWithinBounds?: boolean | undefined;
|
|
40284
|
+
color?: string | undefined;
|
|
40045
40285
|
}, {
|
|
40046
40286
|
connectsTo: string | string[];
|
|
40047
40287
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -40095,6 +40335,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40095
40335
|
doNotConnect?: boolean | undefined;
|
|
40096
40336
|
includeInBoardPinout?: boolean | undefined;
|
|
40097
40337
|
highlightColor?: string | undefined;
|
|
40338
|
+
mustBeConnected?: boolean | undefined;
|
|
40098
40339
|
}> | undefined;
|
|
40099
40340
|
cadModel?: string | {
|
|
40100
40341
|
stlUrl: string;
|
|
@@ -40235,6 +40476,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
40235
40476
|
symbolName?: string | undefined;
|
|
40236
40477
|
doNotPlace?: boolean | undefined;
|
|
40237
40478
|
obstructsWithinBounds?: boolean | undefined;
|
|
40479
|
+
color?: string | undefined;
|
|
40238
40480
|
}>;
|
|
40239
40481
|
};
|
|
40240
40482
|
doInitialSimulationRender(): void;
|
|
@@ -40316,6 +40558,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
40316
40558
|
doNotConnect?: boolean | undefined;
|
|
40317
40559
|
includeInBoardPinout?: boolean | undefined;
|
|
40318
40560
|
highlightColor?: string | undefined;
|
|
40561
|
+
mustBeConnected?: boolean | undefined;
|
|
40319
40562
|
}> | undefined;
|
|
40320
40563
|
cadModel?: string | {
|
|
40321
40564
|
stlUrl: string;
|
|
@@ -40514,6 +40757,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
40514
40757
|
doNotConnect?: boolean | undefined;
|
|
40515
40758
|
includeInBoardPinout?: boolean | undefined;
|
|
40516
40759
|
highlightColor?: string | undefined;
|
|
40760
|
+
mustBeConnected?: boolean | undefined;
|
|
40517
40761
|
}> | undefined;
|
|
40518
40762
|
cadModel?: string | {
|
|
40519
40763
|
stlUrl: string;
|