@tscircuit/core 0.0.1360 → 0.0.1362
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 +156 -52
- package/dist/index.js +123 -43
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -3083,6 +3083,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
3083
3083
|
outlineOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3084
3084
|
outlineOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3085
3085
|
circuitJson: zod.ZodOptional<zod.ZodArray<zod.ZodAny, "many">>;
|
|
3086
|
+
exposedNets: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
3086
3087
|
minTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3087
3088
|
minViaHoleEdgeToViaHoleEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
3088
3089
|
minViaEdgeToPadEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -3556,6 +3557,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
3556
3557
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
3557
3558
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
3558
3559
|
circuitJson?: any[] | undefined;
|
|
3560
|
+
exposedNets?: string[] | undefined;
|
|
3559
3561
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
3560
3562
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
3561
3563
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -3891,6 +3893,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
3891
3893
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
3892
3894
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
3893
3895
|
circuitJson?: any[] | undefined;
|
|
3896
|
+
exposedNets?: string[] | undefined;
|
|
3894
3897
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
3895
3898
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
3896
3899
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -4016,6 +4019,8 @@ declare class Subcircuit extends Group<typeof subcircuitProps> implements Subcir
|
|
|
4016
4019
|
* isolated circuit JSON that will be inflated.
|
|
4017
4020
|
*/
|
|
4018
4021
|
doInitialRenderIsolatedSubcircuits(): void;
|
|
4022
|
+
doInitialCreateNetsFromProps(): void;
|
|
4023
|
+
private _createTracesForExposedNets;
|
|
4019
4024
|
/**
|
|
4020
4025
|
* During this phase, we inflate the subcircuit circuit json into class
|
|
4021
4026
|
* instances
|
|
@@ -4617,6 +4622,7 @@ declare class MountedBoard extends Subcircuit implements BoardI {
|
|
|
4617
4622
|
outlineOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
4618
4623
|
outlineOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
4619
4624
|
circuitJson: zod.ZodOptional<zod.ZodArray<zod.ZodAny, "many">>;
|
|
4625
|
+
exposedNets: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
4620
4626
|
minTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
4621
4627
|
minViaHoleEdgeToViaHoleEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
4622
4628
|
minViaEdgeToPadEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
@@ -5206,6 +5212,7 @@ declare class MountedBoard extends Subcircuit implements BoardI {
|
|
|
5206
5212
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
5207
5213
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
5208
5214
|
circuitJson?: any[] | undefined;
|
|
5215
|
+
exposedNets?: string[] | undefined;
|
|
5209
5216
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
5210
5217
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
5211
5218
|
schMaxTraceDistance?: number | undefined;
|
|
@@ -5564,6 +5571,7 @@ declare class MountedBoard extends Subcircuit implements BoardI {
|
|
|
5564
5571
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
5565
5572
|
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
5566
5573
|
circuitJson?: any[] | undefined;
|
|
5574
|
+
exposedNets?: string[] | undefined;
|
|
5567
5575
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
5568
5576
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
5569
5577
|
schMaxTraceDistance?: string | number | undefined;
|
|
@@ -8128,6 +8136,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
8128
8136
|
name: zod.ZodString;
|
|
8129
8137
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
8130
8138
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
8139
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
8131
8140
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
8132
8141
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
8133
8142
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -11985,6 +11994,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
11985
11994
|
mfn?: string | undefined;
|
|
11986
11995
|
manufacturerPartNumber?: string | undefined;
|
|
11987
11996
|
schSectionName?: string | undefined;
|
|
11997
|
+
schSheetName?: string | undefined;
|
|
11988
11998
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
11989
11999
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
11990
12000
|
schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
|
|
@@ -12574,6 +12584,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
|
|
|
12574
12584
|
mfn?: string | undefined;
|
|
12575
12585
|
manufacturerPartNumber?: string | undefined;
|
|
12576
12586
|
schSectionName?: string | undefined;
|
|
12587
|
+
schSheetName?: string | undefined;
|
|
12577
12588
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
12578
12589
|
schShowRatings?: boolean | undefined;
|
|
12579
12590
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -12692,6 +12703,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12692
12703
|
name: z.ZodString;
|
|
12693
12704
|
displayName: z.ZodOptional<z.ZodString>;
|
|
12694
12705
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
12706
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
12695
12707
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
12696
12708
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
12697
12709
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -16832,6 +16844,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
16832
16844
|
mfn?: string | undefined;
|
|
16833
16845
|
manufacturerPartNumber?: string | undefined;
|
|
16834
16846
|
schSectionName?: string | undefined;
|
|
16847
|
+
schSheetName?: string | undefined;
|
|
16835
16848
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
16836
16849
|
schPinArrangement?: {
|
|
16837
16850
|
leftSize?: number | undefined;
|
|
@@ -17489,6 +17502,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
17489
17502
|
mfn?: string | undefined;
|
|
17490
17503
|
manufacturerPartNumber?: string | undefined;
|
|
17491
17504
|
schSectionName?: string | undefined;
|
|
17505
|
+
schSheetName?: string | undefined;
|
|
17492
17506
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
17493
17507
|
schPinArrangement?: {
|
|
17494
17508
|
leftSize?: number | undefined;
|
|
@@ -17674,6 +17688,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17674
17688
|
name: z.ZodString;
|
|
17675
17689
|
displayName: z.ZodOptional<z.ZodString>;
|
|
17676
17690
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
17691
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
17677
17692
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
17678
17693
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
17679
17694
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -21814,6 +21829,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
21814
21829
|
mfn?: string | undefined;
|
|
21815
21830
|
manufacturerPartNumber?: string | undefined;
|
|
21816
21831
|
schSectionName?: string | undefined;
|
|
21832
|
+
schSheetName?: string | undefined;
|
|
21817
21833
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
21818
21834
|
schPinArrangement?: {
|
|
21819
21835
|
leftSize?: number | undefined;
|
|
@@ -22471,6 +22487,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
22471
22487
|
mfn?: string | undefined;
|
|
22472
22488
|
manufacturerPartNumber?: string | undefined;
|
|
22473
22489
|
schSectionName?: string | undefined;
|
|
22490
|
+
schSheetName?: string | undefined;
|
|
22474
22491
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
22475
22492
|
schPinArrangement?: {
|
|
22476
22493
|
leftSize?: number | undefined;
|
|
@@ -22653,6 +22670,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
22653
22670
|
name: zod.ZodString;
|
|
22654
22671
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
22655
22672
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
22673
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
22656
22674
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
22657
22675
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
22658
22676
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -26505,6 +26523,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
26505
26523
|
mfn?: string | undefined;
|
|
26506
26524
|
manufacturerPartNumber?: string | undefined;
|
|
26507
26525
|
schSectionName?: string | undefined;
|
|
26526
|
+
schSheetName?: string | undefined;
|
|
26508
26527
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
26509
26528
|
standard?: boolean | undefined;
|
|
26510
26529
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -27092,6 +27111,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
27092
27111
|
mfn?: string | undefined;
|
|
27093
27112
|
manufacturerPartNumber?: string | undefined;
|
|
27094
27113
|
schSectionName?: string | undefined;
|
|
27114
|
+
schSheetName?: string | undefined;
|
|
27095
27115
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
27096
27116
|
standard?: boolean | undefined;
|
|
27097
27117
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -27679,6 +27699,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
27679
27699
|
mfn?: string | undefined;
|
|
27680
27700
|
manufacturerPartNumber?: string | undefined;
|
|
27681
27701
|
schSectionName?: string | undefined;
|
|
27702
|
+
schSheetName?: string | undefined;
|
|
27682
27703
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
27683
27704
|
standard?: boolean | undefined;
|
|
27684
27705
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -28266,6 +28287,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
28266
28287
|
mfn?: string | undefined;
|
|
28267
28288
|
manufacturerPartNumber?: string | undefined;
|
|
28268
28289
|
schSectionName?: string | undefined;
|
|
28290
|
+
schSheetName?: string | undefined;
|
|
28269
28291
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
28270
28292
|
standard?: boolean | undefined;
|
|
28271
28293
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -28859,6 +28881,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
28859
28881
|
mfn?: string | undefined;
|
|
28860
28882
|
manufacturerPartNumber?: string | undefined;
|
|
28861
28883
|
schSectionName?: string | undefined;
|
|
28884
|
+
schSheetName?: string | undefined;
|
|
28862
28885
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
28863
28886
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
28864
28887
|
}, {
|
|
@@ -29440,6 +29463,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
|
|
|
29440
29463
|
mfn?: string | undefined;
|
|
29441
29464
|
manufacturerPartNumber?: string | undefined;
|
|
29442
29465
|
schSectionName?: string | undefined;
|
|
29466
|
+
schSheetName?: string | undefined;
|
|
29443
29467
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
29444
29468
|
standard?: boolean | undefined;
|
|
29445
29469
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -29558,6 +29582,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
29558
29582
|
name: zod.ZodString;
|
|
29559
29583
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
29560
29584
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
29585
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
29561
29586
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
29562
29587
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
29563
29588
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -33406,6 +33431,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
33406
33431
|
mfn?: string | undefined;
|
|
33407
33432
|
manufacturerPartNumber?: string | undefined;
|
|
33408
33433
|
schSectionName?: string | undefined;
|
|
33434
|
+
schSheetName?: string | undefined;
|
|
33409
33435
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33410
33436
|
voltageRating?: string | number | undefined;
|
|
33411
33437
|
schShowRatings?: boolean | undefined;
|
|
@@ -33990,6 +34016,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
|
|
|
33990
34016
|
mfn?: string | undefined;
|
|
33991
34017
|
manufacturerPartNumber?: string | undefined;
|
|
33992
34018
|
schSectionName?: string | undefined;
|
|
34019
|
+
schSheetName?: string | undefined;
|
|
33993
34020
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33994
34021
|
voltageRating?: string | number | undefined;
|
|
33995
34022
|
schShowRatings?: boolean | undefined;
|
|
@@ -34098,6 +34125,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
34098
34125
|
name: zod.ZodString;
|
|
34099
34126
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
34100
34127
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
34128
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
34101
34129
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
34102
34130
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
34103
34131
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -38225,6 +38253,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
38225
38253
|
mfn?: string | undefined;
|
|
38226
38254
|
manufacturerPartNumber?: string | undefined;
|
|
38227
38255
|
schSectionName?: string | undefined;
|
|
38256
|
+
schSheetName?: string | undefined;
|
|
38228
38257
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
38229
38258
|
schPinArrangement?: {
|
|
38230
38259
|
leftSize?: number | undefined;
|
|
@@ -38875,6 +38904,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
38875
38904
|
mfn?: string | undefined;
|
|
38876
38905
|
manufacturerPartNumber?: string | undefined;
|
|
38877
38906
|
schSectionName?: string | undefined;
|
|
38907
|
+
schSheetName?: string | undefined;
|
|
38878
38908
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
38879
38909
|
schPinArrangement?: {
|
|
38880
38910
|
leftSize?: number | undefined;
|
|
@@ -39052,6 +39082,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
|
|
|
39052
39082
|
name: zod.ZodString;
|
|
39053
39083
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
39054
39084
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
39085
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
39055
39086
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
39056
39087
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
39057
39088
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -42897,6 +42928,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
|
|
|
42897
42928
|
mfn?: string | undefined;
|
|
42898
42929
|
manufacturerPartNumber?: string | undefined;
|
|
42899
42930
|
schSectionName?: string | undefined;
|
|
42931
|
+
schSheetName?: string | undefined;
|
|
42900
42932
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
42901
42933
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
42902
42934
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -43479,6 +43511,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
|
|
|
43479
43511
|
mfn?: string | undefined;
|
|
43480
43512
|
manufacturerPartNumber?: string | undefined;
|
|
43481
43513
|
schSectionName?: string | undefined;
|
|
43514
|
+
schSheetName?: string | undefined;
|
|
43482
43515
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
43483
43516
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
43484
43517
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -43604,6 +43637,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
43604
43637
|
name: zod.ZodString;
|
|
43605
43638
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
43606
43639
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
43640
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
43607
43641
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
43608
43642
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
43609
43643
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -47734,6 +47768,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
47734
47768
|
mfn?: string | undefined;
|
|
47735
47769
|
manufacturerPartNumber?: string | undefined;
|
|
47736
47770
|
schSectionName?: string | undefined;
|
|
47771
|
+
schSheetName?: string | undefined;
|
|
47737
47772
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
47738
47773
|
schPinArrangement?: {
|
|
47739
47774
|
leftSize?: number | undefined;
|
|
@@ -48386,6 +48421,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
48386
48421
|
mfn?: string | undefined;
|
|
48387
48422
|
manufacturerPartNumber?: string | undefined;
|
|
48388
48423
|
schSectionName?: string | undefined;
|
|
48424
|
+
schSheetName?: string | undefined;
|
|
48389
48425
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
48390
48426
|
schPinArrangement?: {
|
|
48391
48427
|
leftSize?: number | undefined;
|
|
@@ -48566,6 +48602,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
48566
48602
|
name: zod.ZodString;
|
|
48567
48603
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
48568
48604
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
48605
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
48569
48606
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
48570
48607
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
48571
48608
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -52414,6 +52451,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
52414
52451
|
mfn?: string | undefined;
|
|
52415
52452
|
manufacturerPartNumber?: string | undefined;
|
|
52416
52453
|
schSectionName?: string | undefined;
|
|
52454
|
+
schSheetName?: string | undefined;
|
|
52417
52455
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
52418
52456
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
52419
52457
|
color?: string | undefined;
|
|
@@ -52999,6 +53037,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
|
|
|
52999
53037
|
mfn?: string | undefined;
|
|
53000
53038
|
manufacturerPartNumber?: string | undefined;
|
|
53001
53039
|
schSectionName?: string | undefined;
|
|
53040
|
+
schSheetName?: string | undefined;
|
|
53002
53041
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
53003
53042
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
53004
53043
|
color?: string | undefined;
|
|
@@ -53116,6 +53155,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
53116
53155
|
name: zod.ZodString;
|
|
53117
53156
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
53118
53157
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
53158
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
53119
53159
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
53120
53160
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
53121
53161
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -56960,6 +57000,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
56960
57000
|
mfn?: string | undefined;
|
|
56961
57001
|
manufacturerPartNumber?: string | undefined;
|
|
56962
57002
|
schSectionName?: string | undefined;
|
|
57003
|
+
schSheetName?: string | undefined;
|
|
56963
57004
|
}, {
|
|
56964
57005
|
name: string;
|
|
56965
57006
|
voltage: string | number;
|
|
@@ -57540,6 +57581,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
|
|
|
57540
57581
|
mfn?: string | undefined;
|
|
57541
57582
|
manufacturerPartNumber?: string | undefined;
|
|
57542
57583
|
schSectionName?: string | undefined;
|
|
57584
|
+
schSheetName?: string | undefined;
|
|
57543
57585
|
}>;
|
|
57544
57586
|
sourceFtype: Ftype;
|
|
57545
57587
|
};
|
|
@@ -57649,6 +57691,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
57649
57691
|
name: zod.ZodString;
|
|
57650
57692
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
57651
57693
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
57694
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
57652
57695
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
57653
57696
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
57654
57697
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -61503,6 +61546,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
61503
61546
|
mfn?: string | undefined;
|
|
61504
61547
|
manufacturerPartNumber?: string | undefined;
|
|
61505
61548
|
schSectionName?: string | undefined;
|
|
61549
|
+
schSheetName?: string | undefined;
|
|
61506
61550
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
61507
61551
|
frequency?: number | undefined;
|
|
61508
61552
|
voltage?: number | undefined;
|
|
@@ -62094,6 +62138,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
|
|
|
62094
62138
|
mfn?: string | undefined;
|
|
62095
62139
|
manufacturerPartNumber?: string | undefined;
|
|
62096
62140
|
schSectionName?: string | undefined;
|
|
62141
|
+
schSheetName?: string | undefined;
|
|
62097
62142
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
62098
62143
|
frequency?: string | number | undefined;
|
|
62099
62144
|
voltage?: string | number | undefined;
|
|
@@ -62217,6 +62262,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
|
|
|
62217
62262
|
name: zod.ZodString;
|
|
62218
62263
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
62219
62264
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
62265
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
62220
62266
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
62221
62267
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
62222
62268
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -66066,6 +66112,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
|
|
|
66066
66112
|
mfn?: string | undefined;
|
|
66067
66113
|
manufacturerPartNumber?: string | undefined;
|
|
66068
66114
|
schSectionName?: string | undefined;
|
|
66115
|
+
schSheetName?: string | undefined;
|
|
66069
66116
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
66070
66117
|
frequency?: number | undefined;
|
|
66071
66118
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -66652,6 +66699,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
|
|
|
66652
66699
|
mfn?: string | undefined;
|
|
66653
66700
|
manufacturerPartNumber?: string | undefined;
|
|
66654
66701
|
schSectionName?: string | undefined;
|
|
66702
|
+
schSheetName?: string | undefined;
|
|
66655
66703
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
66656
66704
|
frequency?: string | number | undefined;
|
|
66657
66705
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -66770,6 +66818,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
66770
66818
|
name: zod.ZodString;
|
|
66771
66819
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
66772
66820
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
66821
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
66773
66822
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
66774
66823
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
66775
66824
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -70619,6 +70668,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
70619
70668
|
mfn?: string | undefined;
|
|
70620
70669
|
manufacturerPartNumber?: string | undefined;
|
|
70621
70670
|
schSectionName?: string | undefined;
|
|
70671
|
+
schSheetName?: string | undefined;
|
|
70622
70672
|
color?: string | undefined;
|
|
70623
70673
|
graphDisplayName?: string | undefined;
|
|
70624
70674
|
graphCenter?: number | undefined;
|
|
@@ -71204,6 +71254,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
|
|
|
71204
71254
|
mfn?: string | undefined;
|
|
71205
71255
|
manufacturerPartNumber?: string | undefined;
|
|
71206
71256
|
schSectionName?: string | undefined;
|
|
71257
|
+
schSheetName?: string | undefined;
|
|
71207
71258
|
color?: string | undefined;
|
|
71208
71259
|
graphDisplayName?: string | undefined;
|
|
71209
71260
|
graphCenter?: number | undefined;
|
|
@@ -71317,6 +71368,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
71317
71368
|
name: zod.ZodString;
|
|
71318
71369
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
71319
71370
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
71371
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
71320
71372
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
71321
71373
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
71322
71374
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -75170,6 +75222,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
75170
75222
|
mfn?: string | undefined;
|
|
75171
75223
|
manufacturerPartNumber?: string | undefined;
|
|
75172
75224
|
schSectionName?: string | undefined;
|
|
75225
|
+
schSheetName?: string | undefined;
|
|
75173
75226
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
75174
75227
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
75175
75228
|
tolerance?: number | undefined;
|
|
@@ -75758,6 +75811,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
75758
75811
|
mfn?: string | undefined;
|
|
75759
75812
|
manufacturerPartNumber?: string | undefined;
|
|
75760
75813
|
schSectionName?: string | undefined;
|
|
75814
|
+
schSheetName?: string | undefined;
|
|
75761
75815
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
75762
75816
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
75763
75817
|
tolerance?: string | number | undefined;
|
|
@@ -83609,6 +83663,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
|
|
|
83609
83663
|
name: z.ZodString;
|
|
83610
83664
|
displayName: z.ZodOptional<z.ZodString>;
|
|
83611
83665
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
83666
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
83612
83667
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
83613
83668
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
83614
83669
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -87454,6 +87509,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
|
|
|
87454
87509
|
mfn?: string | undefined;
|
|
87455
87510
|
manufacturerPartNumber?: string | undefined;
|
|
87456
87511
|
schSectionName?: string | undefined;
|
|
87512
|
+
schSheetName?: string | undefined;
|
|
87457
87513
|
soldermaskPullback?: number | undefined;
|
|
87458
87514
|
}, {
|
|
87459
87515
|
name: string;
|
|
@@ -88035,6 +88091,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
|
|
|
88035
88091
|
mfn?: string | undefined;
|
|
88036
88092
|
manufacturerPartNumber?: string | undefined;
|
|
88037
88093
|
schSectionName?: string | undefined;
|
|
88094
|
+
schSheetName?: string | undefined;
|
|
88038
88095
|
soldermaskPullback?: string | number | undefined;
|
|
88039
88096
|
}>;
|
|
88040
88097
|
sourceFtype: "simple_fiducial";
|
|
@@ -88593,6 +88650,24 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88593
88650
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88594
88651
|
}>>;
|
|
88595
88652
|
name: z.ZodOptional<z.ZodString>;
|
|
88653
|
+
fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88654
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88655
|
+
}, "strip", z.ZodTypeAny, {
|
|
88656
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88657
|
+
}, {
|
|
88658
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88659
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88660
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88661
|
+
}>>>;
|
|
88662
|
+
toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88663
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88664
|
+
}, "strip", z.ZodTypeAny, {
|
|
88665
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88666
|
+
}, {
|
|
88667
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88668
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88669
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88670
|
+
}>>>;
|
|
88596
88671
|
layers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88597
88672
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88598
88673
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -88679,24 +88754,6 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88679
88754
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
88680
88755
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
88681
88756
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
88682
|
-
fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88683
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88684
|
-
}, "strip", z.ZodTypeAny, {
|
|
88685
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88686
|
-
}, {
|
|
88687
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88688
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88689
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88690
|
-
}>>>;
|
|
88691
|
-
toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88692
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88693
|
-
}, "strip", z.ZodTypeAny, {
|
|
88694
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88695
|
-
}, {
|
|
88696
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88697
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88698
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88699
|
-
}>>>;
|
|
88700
88757
|
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88701
88758
|
isTented: z.ZodOptional<z.ZodBoolean>;
|
|
88702
88759
|
outerDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -88705,6 +88762,8 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88705
88762
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
88706
88763
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88707
88764
|
name?: string | undefined;
|
|
88765
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88766
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88708
88767
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
88709
88768
|
schX?: number | undefined;
|
|
88710
88769
|
schY?: number | undefined;
|
|
@@ -88753,8 +88812,6 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88753
88812
|
schRelative?: boolean | undefined;
|
|
88754
88813
|
pcbRelative?: boolean | undefined;
|
|
88755
88814
|
connectsTo?: string | string[] | undefined;
|
|
88756
|
-
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88757
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88758
88815
|
holeDiameter?: number | undefined;
|
|
88759
88816
|
isTented?: boolean | undefined;
|
|
88760
88817
|
outerDiameter?: number | undefined;
|
|
@@ -88765,6 +88822,12 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88765
88822
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88766
88823
|
} | undefined;
|
|
88767
88824
|
name?: string | undefined;
|
|
88825
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88826
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88827
|
+
} | undefined;
|
|
88828
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88829
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88830
|
+
} | undefined;
|
|
88768
88831
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88769
88832
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88770
88833
|
})[] | undefined;
|
|
@@ -88815,12 +88878,6 @@ declare const pcbViaProps: z.ZodObject<{
|
|
|
88815
88878
|
schRelative?: boolean | undefined;
|
|
88816
88879
|
pcbRelative?: boolean | undefined;
|
|
88817
88880
|
connectsTo?: string | string[] | undefined;
|
|
88818
|
-
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88819
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88820
|
-
} | undefined;
|
|
88821
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88822
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88823
|
-
} | undefined;
|
|
88824
88881
|
holeDiameter?: string | number | undefined;
|
|
88825
88882
|
isTented?: boolean | undefined;
|
|
88826
88883
|
outerDiameter?: string | number | undefined;
|
|
@@ -88844,6 +88901,24 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
88844
88901
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88845
88902
|
}>>;
|
|
88846
88903
|
name: z.ZodOptional<z.ZodString>;
|
|
88904
|
+
fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88905
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88906
|
+
}, "strip", z.ZodTypeAny, {
|
|
88907
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88908
|
+
}, {
|
|
88909
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88910
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88911
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88912
|
+
}>>>;
|
|
88913
|
+
toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88914
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88915
|
+
}, "strip", z.ZodTypeAny, {
|
|
88916
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88917
|
+
}, {
|
|
88918
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88919
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88920
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88921
|
+
}>>>;
|
|
88847
88922
|
layers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88848
88923
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88849
88924
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -88930,24 +89005,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
88930
89005
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
88931
89006
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
88932
89007
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
88933
|
-
fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88934
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88935
|
-
}, "strip", z.ZodTypeAny, {
|
|
88936
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88937
|
-
}, {
|
|
88938
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88939
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88940
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88941
|
-
}>>>;
|
|
88942
|
-
toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
88943
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
88944
|
-
}, "strip", z.ZodTypeAny, {
|
|
88945
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88946
|
-
}, {
|
|
88947
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88948
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
88949
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
88950
|
-
}>>>;
|
|
88951
89008
|
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88952
89009
|
isTented: z.ZodOptional<z.ZodBoolean>;
|
|
88953
89010
|
outerDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -88956,6 +89013,8 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
88956
89013
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
88957
89014
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88958
89015
|
name?: string | undefined;
|
|
89016
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
89017
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
88959
89018
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
|
|
88960
89019
|
schX?: number | undefined;
|
|
88961
89020
|
schY?: number | undefined;
|
|
@@ -89004,8 +89063,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
89004
89063
|
schRelative?: boolean | undefined;
|
|
89005
89064
|
pcbRelative?: boolean | undefined;
|
|
89006
89065
|
connectsTo?: string | string[] | undefined;
|
|
89007
|
-
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
89008
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
89009
89066
|
holeDiameter?: number | undefined;
|
|
89010
89067
|
isTented?: boolean | undefined;
|
|
89011
89068
|
outerDiameter?: number | undefined;
|
|
@@ -89016,6 +89073,12 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
89016
89073
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89017
89074
|
} | undefined;
|
|
89018
89075
|
name?: string | undefined;
|
|
89076
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
89077
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89078
|
+
} | undefined;
|
|
89079
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
89080
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89081
|
+
} | undefined;
|
|
89019
89082
|
layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
89020
89083
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89021
89084
|
})[] | undefined;
|
|
@@ -89066,12 +89129,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
|
|
|
89066
89129
|
schRelative?: boolean | undefined;
|
|
89067
89130
|
pcbRelative?: boolean | undefined;
|
|
89068
89131
|
connectsTo?: string | string[] | undefined;
|
|
89069
|
-
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
89070
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89071
|
-
} | undefined;
|
|
89072
|
-
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
89073
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
89074
|
-
} | undefined;
|
|
89075
89132
|
holeDiameter?: string | number | undefined;
|
|
89076
89133
|
isTented?: boolean | undefined;
|
|
89077
89134
|
outerDiameter?: string | number | undefined;
|
|
@@ -90401,6 +90458,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
90401
90458
|
name: zod.ZodString;
|
|
90402
90459
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
90403
90460
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
90461
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
90404
90462
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
90405
90463
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
90406
90464
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -94247,6 +94305,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
94247
94305
|
mfn?: string | undefined;
|
|
94248
94306
|
manufacturerPartNumber?: string | undefined;
|
|
94249
94307
|
schSectionName?: string | undefined;
|
|
94308
|
+
schSheetName?: string | undefined;
|
|
94250
94309
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
94251
94310
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
94252
94311
|
capacity?: number | undefined;
|
|
@@ -94830,6 +94889,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
|
|
|
94830
94889
|
mfn?: string | undefined;
|
|
94831
94890
|
manufacturerPartNumber?: string | undefined;
|
|
94832
94891
|
schSectionName?: string | undefined;
|
|
94892
|
+
schSheetName?: string | undefined;
|
|
94833
94893
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
94834
94894
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
94835
94895
|
capacity?: string | number | undefined;
|
|
@@ -94947,6 +95007,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
|
|
|
94947
95007
|
name: zod.ZodString;
|
|
94948
95008
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
94949
95009
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
95010
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
94950
95011
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
94951
95012
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
94952
95013
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -99089,6 +99150,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
|
|
|
99089
99150
|
mfn?: string | undefined;
|
|
99090
99151
|
manufacturerPartNumber?: string | undefined;
|
|
99091
99152
|
schSectionName?: string | undefined;
|
|
99153
|
+
schSheetName?: string | undefined;
|
|
99092
99154
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
99093
99155
|
schPinArrangement?: {
|
|
99094
99156
|
leftSize?: number | undefined;
|
|
@@ -99747,6 +99809,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
|
|
|
99747
99809
|
mfn?: string | undefined;
|
|
99748
99810
|
manufacturerPartNumber?: string | undefined;
|
|
99749
99811
|
schSectionName?: string | undefined;
|
|
99812
|
+
schSheetName?: string | undefined;
|
|
99750
99813
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
99751
99814
|
schPinArrangement?: {
|
|
99752
99815
|
leftSize?: number | undefined;
|
|
@@ -99936,6 +99999,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
99936
99999
|
name: zod.ZodString;
|
|
99937
100000
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
99938
100001
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
100002
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
99939
100003
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
99940
100004
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
99941
100005
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -103949,6 +104013,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
103949
104013
|
mfn?: string | undefined;
|
|
103950
104014
|
manufacturerPartNumber?: string | undefined;
|
|
103951
104015
|
schSectionName?: string | undefined;
|
|
104016
|
+
schSheetName?: string | undefined;
|
|
103952
104017
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
103953
104018
|
schPinArrangement?: {
|
|
103954
104019
|
leftSize?: number | undefined;
|
|
@@ -104580,6 +104645,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
104580
104645
|
mfn?: string | undefined;
|
|
104581
104646
|
manufacturerPartNumber?: string | undefined;
|
|
104582
104647
|
schSectionName?: string | undefined;
|
|
104648
|
+
schSheetName?: string | undefined;
|
|
104583
104649
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
104584
104650
|
schPinArrangement?: {
|
|
104585
104651
|
leftSize?: number | undefined;
|
|
@@ -104739,6 +104805,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
104739
104805
|
name: zod.ZodString;
|
|
104740
104806
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
104741
104807
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
104808
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
104742
104809
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
104743
104810
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
104744
104811
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -108586,6 +108653,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
108586
108653
|
mfn?: string | undefined;
|
|
108587
108654
|
manufacturerPartNumber?: string | undefined;
|
|
108588
108655
|
schSectionName?: string | undefined;
|
|
108656
|
+
schSheetName?: string | undefined;
|
|
108589
108657
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
108590
108658
|
}, {
|
|
108591
108659
|
name: string;
|
|
@@ -109168,6 +109236,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
|
|
|
109168
109236
|
mfn?: string | undefined;
|
|
109169
109237
|
manufacturerPartNumber?: string | undefined;
|
|
109170
109238
|
schSectionName?: string | undefined;
|
|
109239
|
+
schSheetName?: string | undefined;
|
|
109171
109240
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
109172
109241
|
}>;
|
|
109173
109242
|
shouldRenderAsSchematicBox: boolean;
|
|
@@ -109275,6 +109344,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
109275
109344
|
name: zod.ZodString;
|
|
109276
109345
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
109277
109346
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
109347
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
109278
109348
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
109279
109349
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
109280
109350
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -113122,6 +113192,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
113122
113192
|
mfn?: string | undefined;
|
|
113123
113193
|
manufacturerPartNumber?: string | undefined;
|
|
113124
113194
|
schSectionName?: string | undefined;
|
|
113195
|
+
schSheetName?: string | undefined;
|
|
113125
113196
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
113126
113197
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
113127
113198
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -113705,6 +113776,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
|
|
|
113705
113776
|
mfn?: string | undefined;
|
|
113706
113777
|
manufacturerPartNumber?: string | undefined;
|
|
113707
113778
|
schSectionName?: string | undefined;
|
|
113779
|
+
schSheetName?: string | undefined;
|
|
113708
113780
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
113709
113781
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
113710
113782
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -113814,6 +113886,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
113814
113886
|
name: zod.ZodString;
|
|
113815
113887
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
113816
113888
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
113889
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
113817
113890
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
113818
113891
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
113819
113892
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -117660,6 +117733,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
117660
117733
|
mfn?: string | undefined;
|
|
117661
117734
|
manufacturerPartNumber?: string | undefined;
|
|
117662
117735
|
schSectionName?: string | undefined;
|
|
117736
|
+
schSheetName?: string | undefined;
|
|
117663
117737
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
117664
117738
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
117665
117739
|
}, {
|
|
@@ -118242,6 +118316,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
|
|
|
118242
118316
|
mfn?: string | undefined;
|
|
118243
118317
|
manufacturerPartNumber?: string | undefined;
|
|
118244
118318
|
schSectionName?: string | undefined;
|
|
118319
|
+
schSheetName?: string | undefined;
|
|
118245
118320
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
|
|
118246
118321
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
118247
118322
|
}>;
|
|
@@ -118347,6 +118422,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
118347
118422
|
name: zod.ZodString;
|
|
118348
118423
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
118349
118424
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
118425
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
118350
118426
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
118351
118427
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
118352
118428
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -122487,6 +122563,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
122487
122563
|
mfn?: string | undefined;
|
|
122488
122564
|
manufacturerPartNumber?: string | undefined;
|
|
122489
122565
|
schSectionName?: string | undefined;
|
|
122566
|
+
schSheetName?: string | undefined;
|
|
122490
122567
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
122491
122568
|
schPinArrangement?: {
|
|
122492
122569
|
leftSize?: number | undefined;
|
|
@@ -123144,6 +123221,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
123144
123221
|
mfn?: string | undefined;
|
|
123145
123222
|
manufacturerPartNumber?: string | undefined;
|
|
123146
123223
|
schSectionName?: string | undefined;
|
|
123224
|
+
schSheetName?: string | undefined;
|
|
123147
123225
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
123148
123226
|
schPinArrangement?: {
|
|
123149
123227
|
leftSize?: number | undefined;
|
|
@@ -123326,6 +123404,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
123326
123404
|
name: zod.ZodString;
|
|
123327
123405
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
123328
123406
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
123407
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
123329
123408
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
123330
123409
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
123331
123410
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -127176,6 +127255,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
127176
127255
|
mfn?: string | undefined;
|
|
127177
127256
|
manufacturerPartNumber?: string | undefined;
|
|
127178
127257
|
schSectionName?: string | undefined;
|
|
127258
|
+
schSheetName?: string | undefined;
|
|
127179
127259
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
127180
127260
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
127181
127261
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -127761,6 +127841,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
|
|
|
127761
127841
|
mfn?: string | undefined;
|
|
127762
127842
|
manufacturerPartNumber?: string | undefined;
|
|
127763
127843
|
schSectionName?: string | undefined;
|
|
127844
|
+
schSheetName?: string | undefined;
|
|
127764
127845
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
127765
127846
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
127766
127847
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
@@ -127871,6 +127952,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
127871
127952
|
name: zod.ZodString;
|
|
127872
127953
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
127873
127954
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
127955
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
127874
127956
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
127875
127957
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
127876
127958
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -131716,6 +131798,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
131716
131798
|
mfn?: string | undefined;
|
|
131717
131799
|
manufacturerPartNumber?: string | undefined;
|
|
131718
131800
|
schSectionName?: string | undefined;
|
|
131801
|
+
schSheetName?: string | undefined;
|
|
131719
131802
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
131720
131803
|
}, {
|
|
131721
131804
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -132297,6 +132380,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
|
|
|
132297
132380
|
mfn?: string | undefined;
|
|
132298
132381
|
manufacturerPartNumber?: string | undefined;
|
|
132299
132382
|
schSectionName?: string | undefined;
|
|
132383
|
+
schSheetName?: string | undefined;
|
|
132300
132384
|
connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
132301
132385
|
}>;
|
|
132302
132386
|
sourceFtype: Ftype;
|
|
@@ -132409,6 +132493,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
132409
132493
|
name: zod.ZodString;
|
|
132410
132494
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
132411
132495
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
132496
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
132412
132497
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
132413
132498
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
132414
132499
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -136255,6 +136340,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
136255
136340
|
mfn?: string | undefined;
|
|
136256
136341
|
manufacturerPartNumber?: string | undefined;
|
|
136257
136342
|
schSectionName?: string | undefined;
|
|
136343
|
+
schSheetName?: string | undefined;
|
|
136258
136344
|
}, {
|
|
136259
136345
|
name: string;
|
|
136260
136346
|
channelType: "n" | "p";
|
|
@@ -136836,6 +136922,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
|
|
|
136836
136922
|
mfn?: string | undefined;
|
|
136837
136923
|
manufacturerPartNumber?: string | undefined;
|
|
136838
136924
|
schSectionName?: string | undefined;
|
|
136925
|
+
schSheetName?: string | undefined;
|
|
136839
136926
|
}>;
|
|
136840
136927
|
shouldRenderAsSchematicBox: boolean;
|
|
136841
136928
|
};
|
|
@@ -136941,6 +137028,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
|
|
|
136941
137028
|
name: zod.ZodString;
|
|
136942
137029
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
136943
137030
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
137031
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
136944
137032
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
136945
137033
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
136946
137034
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -140784,6 +140872,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
|
|
|
140784
140872
|
mfn?: string | undefined;
|
|
140785
140873
|
manufacturerPartNumber?: string | undefined;
|
|
140786
140874
|
schSectionName?: string | undefined;
|
|
140875
|
+
schSheetName?: string | undefined;
|
|
140787
140876
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
140788
140877
|
}, {
|
|
140789
140878
|
name: string;
|
|
@@ -141364,6 +141453,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
|
|
|
141364
141453
|
mfn?: string | undefined;
|
|
141365
141454
|
manufacturerPartNumber?: string | undefined;
|
|
141366
141455
|
schSectionName?: string | undefined;
|
|
141456
|
+
schSheetName?: string | undefined;
|
|
141367
141457
|
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
141368
141458
|
}>;
|
|
141369
141459
|
sourceFtype: Ftype;
|
|
@@ -141477,6 +141567,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
141477
141567
|
name: zod.ZodString;
|
|
141478
141568
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
141479
141569
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
141570
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
141480
141571
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
141481
141572
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
141482
141573
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -145333,6 +145424,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
145333
145424
|
mfn?: string | undefined;
|
|
145334
145425
|
manufacturerPartNumber?: string | undefined;
|
|
145335
145426
|
schSectionName?: string | undefined;
|
|
145427
|
+
schSheetName?: string | undefined;
|
|
145336
145428
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
145337
145429
|
spst?: boolean | undefined;
|
|
145338
145430
|
spdt?: boolean | undefined;
|
|
@@ -145923,6 +146015,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
145923
146015
|
mfn?: string | undefined;
|
|
145924
146016
|
manufacturerPartNumber?: string | undefined;
|
|
145925
146017
|
schSectionName?: string | undefined;
|
|
146018
|
+
schSheetName?: string | undefined;
|
|
145926
146019
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
145927
146020
|
spst?: boolean | undefined;
|
|
145928
146021
|
spdt?: boolean | undefined;
|
|
@@ -146514,6 +146607,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
|
|
|
146514
146607
|
mfn?: string | undefined;
|
|
146515
146608
|
manufacturerPartNumber?: string | undefined;
|
|
146516
146609
|
schSectionName?: string | undefined;
|
|
146610
|
+
schSheetName?: string | undefined;
|
|
146517
146611
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
146518
146612
|
spst?: boolean | undefined;
|
|
146519
146613
|
spdt?: boolean | undefined;
|
|
@@ -146630,6 +146724,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
146630
146724
|
name: zod.ZodString;
|
|
146631
146725
|
displayName: zod.ZodOptional<zod.ZodString>;
|
|
146632
146726
|
schSectionName: zod.ZodOptional<zod.ZodString>;
|
|
146727
|
+
schSheetName: zod.ZodOptional<zod.ZodString>;
|
|
146633
146728
|
datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
|
|
146634
146729
|
cadModel: zod.ZodOptional<zod.ZodUnion<[zod.ZodNull, zod.ZodType<string, zod.ZodTypeDef, string>, zod.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, zod.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, zod.ZodObject<{
|
|
146635
146730
|
rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
|
|
@@ -150486,6 +150581,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
150486
150581
|
mfn?: string | undefined;
|
|
150487
150582
|
manufacturerPartNumber?: string | undefined;
|
|
150488
150583
|
schSectionName?: string | undefined;
|
|
150584
|
+
schSheetName?: string | undefined;
|
|
150489
150585
|
width?: number | undefined;
|
|
150490
150586
|
height?: number | undefined;
|
|
150491
150587
|
connections?: {
|
|
@@ -151073,6 +151169,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
151073
151169
|
mfn?: string | undefined;
|
|
151074
151170
|
manufacturerPartNumber?: string | undefined;
|
|
151075
151171
|
schSectionName?: string | undefined;
|
|
151172
|
+
schSheetName?: string | undefined;
|
|
151076
151173
|
width?: string | number | undefined;
|
|
151077
151174
|
height?: string | number | undefined;
|
|
151078
151175
|
connections?: {
|
|
@@ -151660,6 +151757,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
151660
151757
|
mfn?: string | undefined;
|
|
151661
151758
|
manufacturerPartNumber?: string | undefined;
|
|
151662
151759
|
schSectionName?: string | undefined;
|
|
151760
|
+
schSheetName?: string | undefined;
|
|
151663
151761
|
width?: number | undefined;
|
|
151664
151762
|
height?: number | undefined;
|
|
151665
151763
|
connections?: {
|
|
@@ -152247,6 +152345,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
|
|
|
152247
152345
|
mfn?: string | undefined;
|
|
152248
152346
|
manufacturerPartNumber?: string | undefined;
|
|
152249
152347
|
schSectionName?: string | undefined;
|
|
152348
|
+
schSheetName?: string | undefined;
|
|
152250
152349
|
width?: string | number | undefined;
|
|
152251
152350
|
height?: string | number | undefined;
|
|
152252
152351
|
connections?: {
|
|
@@ -152973,6 +153072,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
152973
153072
|
name: z.ZodString;
|
|
152974
153073
|
displayName: z.ZodOptional<z.ZodString>;
|
|
152975
153074
|
schSectionName: z.ZodOptional<z.ZodString>;
|
|
153075
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
152976
153076
|
datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
|
|
152977
153077
|
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodType<string, z.ZodTypeDef, string>, z.ZodType<react.ReactElement<any, string | react.JSXElementConstructor<any>>, z.ZodTypeDef, react.ReactElement<any, string | react.JSXElementConstructor<any>>>, z.ZodObject<{
|
|
152978
153078
|
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
@@ -156824,6 +156924,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
156824
156924
|
mfn?: string | undefined;
|
|
156825
156925
|
manufacturerPartNumber?: string | undefined;
|
|
156826
156926
|
schSectionName?: string | undefined;
|
|
156927
|
+
schSheetName?: string | undefined;
|
|
156827
156928
|
color?: string | undefined;
|
|
156828
156929
|
referenceTo?: string | undefined;
|
|
156829
156930
|
graphDisplayName?: string | undefined;
|
|
@@ -157410,6 +157511,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
|
|
|
157410
157511
|
mfn?: string | undefined;
|
|
157411
157512
|
manufacturerPartNumber?: string | undefined;
|
|
157412
157513
|
schSectionName?: string | undefined;
|
|
157514
|
+
schSheetName?: string | undefined;
|
|
157413
157515
|
color?: string | undefined;
|
|
157414
157516
|
referenceTo?: string | undefined;
|
|
157415
157517
|
graphDisplayName?: string | undefined;
|
|
@@ -158062,6 +158164,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
158062
158164
|
mfn?: string | undefined;
|
|
158063
158165
|
manufacturerPartNumber?: string | undefined;
|
|
158064
158166
|
schSectionName?: string | undefined;
|
|
158167
|
+
schSheetName?: string | undefined;
|
|
158065
158168
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158066
158169
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
158067
158170
|
color?: string | undefined;
|
|
@@ -158647,6 +158750,7 @@ declare const useLed: <PropsFromHook extends Omit<{
|
|
|
158647
158750
|
mfn?: string | undefined;
|
|
158648
158751
|
manufacturerPartNumber?: string | undefined;
|
|
158649
158752
|
schSectionName?: string | undefined;
|
|
158753
|
+
schSheetName?: string | undefined;
|
|
158650
158754
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158651
158755
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
158652
158756
|
color?: string | undefined;
|