@tscircuit/core 0.0.1361 → 0.0.1363

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +163 -52
  2. package/dist/index.js +154 -45
  3. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -3083,6 +3083,8 @@ 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">>;
3087
+ exposeNets: zod.ZodOptional<zod.ZodBoolean>;
3086
3088
  minTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
3087
3089
  minViaHoleEdgeToViaHoleEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
3088
3090
  minViaEdgeToPadEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
@@ -3556,6 +3558,8 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
3556
3558
  autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
3557
3559
  autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
3558
3560
  circuitJson?: any[] | undefined;
3561
+ exposedNets?: string[] | undefined;
3562
+ exposeNets?: boolean | undefined;
3559
3563
  schAutoLayoutEnabled?: boolean | undefined;
3560
3564
  schTraceAutoLabelEnabled?: boolean | undefined;
3561
3565
  schMaxTraceDistance?: number | undefined;
@@ -3891,6 +3895,8 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
3891
3895
  autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
3892
3896
  autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
3893
3897
  circuitJson?: any[] | undefined;
3898
+ exposedNets?: string[] | undefined;
3899
+ exposeNets?: boolean | undefined;
3894
3900
  schAutoLayoutEnabled?: boolean | undefined;
3895
3901
  schTraceAutoLabelEnabled?: boolean | undefined;
3896
3902
  schMaxTraceDistance?: string | number | undefined;
@@ -4016,6 +4022,9 @@ declare class Subcircuit extends Group<typeof subcircuitProps> implements Subcir
4016
4022
  * isolated circuit JSON that will be inflated.
4017
4023
  */
4018
4024
  doInitialRenderIsolatedSubcircuits(): void;
4025
+ doInitialCreateNetsFromProps(): void;
4026
+ private _createTracesForExposedNets;
4027
+ private _getNetNamesToExpose;
4019
4028
  /**
4020
4029
  * During this phase, we inflate the subcircuit circuit json into class
4021
4030
  * instances
@@ -4617,6 +4626,8 @@ declare class MountedBoard extends Subcircuit implements BoardI {
4617
4626
  outlineOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
4618
4627
  outlineOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
4619
4628
  circuitJson: zod.ZodOptional<zod.ZodArray<zod.ZodAny, "many">>;
4629
+ exposedNets: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
4630
+ exposeNets: zod.ZodOptional<zod.ZodBoolean>;
4620
4631
  minTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
4621
4632
  minViaHoleEdgeToViaHoleEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
4622
4633
  minViaEdgeToPadEdgeClearance: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
@@ -5206,6 +5217,8 @@ declare class MountedBoard extends Subcircuit implements BoardI {
5206
5217
  autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
5207
5218
  autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
5208
5219
  circuitJson?: any[] | undefined;
5220
+ exposedNets?: string[] | undefined;
5221
+ exposeNets?: boolean | undefined;
5209
5222
  schAutoLayoutEnabled?: boolean | undefined;
5210
5223
  schTraceAutoLabelEnabled?: boolean | undefined;
5211
5224
  schMaxTraceDistance?: number | undefined;
@@ -5564,6 +5577,8 @@ declare class MountedBoard extends Subcircuit implements BoardI {
5564
5577
  autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
5565
5578
  autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
5566
5579
  circuitJson?: any[] | undefined;
5580
+ exposedNets?: string[] | undefined;
5581
+ exposeNets?: boolean | undefined;
5567
5582
  schAutoLayoutEnabled?: boolean | undefined;
5568
5583
  schTraceAutoLabelEnabled?: boolean | undefined;
5569
5584
  schMaxTraceDistance?: string | number | undefined;
@@ -8128,6 +8143,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
8128
8143
  name: zod.ZodString;
8129
8144
  displayName: zod.ZodOptional<zod.ZodString>;
8130
8145
  schSectionName: zod.ZodOptional<zod.ZodString>;
8146
+ schSheetName: zod.ZodOptional<zod.ZodString>;
8131
8147
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
8132
8148
  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
8149
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -11985,6 +12001,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
11985
12001
  mfn?: string | undefined;
11986
12002
  manufacturerPartNumber?: string | undefined;
11987
12003
  schSectionName?: string | undefined;
12004
+ schSheetName?: string | undefined;
11988
12005
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
11989
12006
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
11990
12007
  schSize?: number | "default" | "xs" | "sm" | "md" | undefined;
@@ -12574,6 +12591,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
12574
12591
  mfn?: string | undefined;
12575
12592
  manufacturerPartNumber?: string | undefined;
12576
12593
  schSectionName?: string | undefined;
12594
+ schSheetName?: string | undefined;
12577
12595
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
12578
12596
  schShowRatings?: boolean | undefined;
12579
12597
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -12692,6 +12710,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
12692
12710
  name: z.ZodString;
12693
12711
  displayName: z.ZodOptional<z.ZodString>;
12694
12712
  schSectionName: z.ZodOptional<z.ZodString>;
12713
+ schSheetName: z.ZodOptional<z.ZodString>;
12695
12714
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
12696
12715
  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
12716
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -16832,6 +16851,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
16832
16851
  mfn?: string | undefined;
16833
16852
  manufacturerPartNumber?: string | undefined;
16834
16853
  schSectionName?: string | undefined;
16854
+ schSheetName?: string | undefined;
16835
16855
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
16836
16856
  schPinArrangement?: {
16837
16857
  leftSize?: number | undefined;
@@ -17489,6 +17509,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
17489
17509
  mfn?: string | undefined;
17490
17510
  manufacturerPartNumber?: string | undefined;
17491
17511
  schSectionName?: string | undefined;
17512
+ schSheetName?: string | undefined;
17492
17513
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
17493
17514
  schPinArrangement?: {
17494
17515
  leftSize?: number | undefined;
@@ -17674,6 +17695,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
17674
17695
  name: z.ZodString;
17675
17696
  displayName: z.ZodOptional<z.ZodString>;
17676
17697
  schSectionName: z.ZodOptional<z.ZodString>;
17698
+ schSheetName: z.ZodOptional<z.ZodString>;
17677
17699
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
17678
17700
  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
17701
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -21814,6 +21836,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
21814
21836
  mfn?: string | undefined;
21815
21837
  manufacturerPartNumber?: string | undefined;
21816
21838
  schSectionName?: string | undefined;
21839
+ schSheetName?: string | undefined;
21817
21840
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
21818
21841
  schPinArrangement?: {
21819
21842
  leftSize?: number | undefined;
@@ -22471,6 +22494,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
22471
22494
  mfn?: string | undefined;
22472
22495
  manufacturerPartNumber?: string | undefined;
22473
22496
  schSectionName?: string | undefined;
22497
+ schSheetName?: string | undefined;
22474
22498
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
22475
22499
  schPinArrangement?: {
22476
22500
  leftSize?: number | undefined;
@@ -22653,6 +22677,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
22653
22677
  name: zod.ZodString;
22654
22678
  displayName: zod.ZodOptional<zod.ZodString>;
22655
22679
  schSectionName: zod.ZodOptional<zod.ZodString>;
22680
+ schSheetName: zod.ZodOptional<zod.ZodString>;
22656
22681
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
22657
22682
  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
22683
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -26505,6 +26530,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
26505
26530
  mfn?: string | undefined;
26506
26531
  manufacturerPartNumber?: string | undefined;
26507
26532
  schSectionName?: string | undefined;
26533
+ schSheetName?: string | undefined;
26508
26534
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
26509
26535
  standard?: boolean | undefined;
26510
26536
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -27092,6 +27118,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
27092
27118
  mfn?: string | undefined;
27093
27119
  manufacturerPartNumber?: string | undefined;
27094
27120
  schSectionName?: string | undefined;
27121
+ schSheetName?: string | undefined;
27095
27122
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
27096
27123
  standard?: boolean | undefined;
27097
27124
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -27679,6 +27706,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
27679
27706
  mfn?: string | undefined;
27680
27707
  manufacturerPartNumber?: string | undefined;
27681
27708
  schSectionName?: string | undefined;
27709
+ schSheetName?: string | undefined;
27682
27710
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
27683
27711
  standard?: boolean | undefined;
27684
27712
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -28266,6 +28294,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
28266
28294
  mfn?: string | undefined;
28267
28295
  manufacturerPartNumber?: string | undefined;
28268
28296
  schSectionName?: string | undefined;
28297
+ schSheetName?: string | undefined;
28269
28298
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
28270
28299
  standard?: boolean | undefined;
28271
28300
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -28859,6 +28888,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
28859
28888
  mfn?: string | undefined;
28860
28889
  manufacturerPartNumber?: string | undefined;
28861
28890
  schSectionName?: string | undefined;
28891
+ schSheetName?: string | undefined;
28862
28892
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
28863
28893
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
28864
28894
  }, {
@@ -29440,6 +29470,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
29440
29470
  mfn?: string | undefined;
29441
29471
  manufacturerPartNumber?: string | undefined;
29442
29472
  schSectionName?: string | undefined;
29473
+ schSheetName?: string | undefined;
29443
29474
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
29444
29475
  standard?: boolean | undefined;
29445
29476
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -29558,6 +29589,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
29558
29589
  name: zod.ZodString;
29559
29590
  displayName: zod.ZodOptional<zod.ZodString>;
29560
29591
  schSectionName: zod.ZodOptional<zod.ZodString>;
29592
+ schSheetName: zod.ZodOptional<zod.ZodString>;
29561
29593
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
29562
29594
  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
29595
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -33406,6 +33438,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
33406
33438
  mfn?: string | undefined;
33407
33439
  manufacturerPartNumber?: string | undefined;
33408
33440
  schSectionName?: string | undefined;
33441
+ schSheetName?: string | undefined;
33409
33442
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
33410
33443
  voltageRating?: string | number | undefined;
33411
33444
  schShowRatings?: boolean | undefined;
@@ -33990,6 +34023,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
33990
34023
  mfn?: string | undefined;
33991
34024
  manufacturerPartNumber?: string | undefined;
33992
34025
  schSectionName?: string | undefined;
34026
+ schSheetName?: string | undefined;
33993
34027
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
33994
34028
  voltageRating?: string | number | undefined;
33995
34029
  schShowRatings?: boolean | undefined;
@@ -34098,6 +34132,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
34098
34132
  name: zod.ZodString;
34099
34133
  displayName: zod.ZodOptional<zod.ZodString>;
34100
34134
  schSectionName: zod.ZodOptional<zod.ZodString>;
34135
+ schSheetName: zod.ZodOptional<zod.ZodString>;
34101
34136
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
34102
34137
  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
34138
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -38225,6 +38260,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
38225
38260
  mfn?: string | undefined;
38226
38261
  manufacturerPartNumber?: string | undefined;
38227
38262
  schSectionName?: string | undefined;
38263
+ schSheetName?: string | undefined;
38228
38264
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
38229
38265
  schPinArrangement?: {
38230
38266
  leftSize?: number | undefined;
@@ -38875,6 +38911,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
38875
38911
  mfn?: string | undefined;
38876
38912
  manufacturerPartNumber?: string | undefined;
38877
38913
  schSectionName?: string | undefined;
38914
+ schSheetName?: string | undefined;
38878
38915
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
38879
38916
  schPinArrangement?: {
38880
38917
  leftSize?: number | undefined;
@@ -39052,6 +39089,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
39052
39089
  name: zod.ZodString;
39053
39090
  displayName: zod.ZodOptional<zod.ZodString>;
39054
39091
  schSectionName: zod.ZodOptional<zod.ZodString>;
39092
+ schSheetName: zod.ZodOptional<zod.ZodString>;
39055
39093
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
39056
39094
  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
39095
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -42897,6 +42935,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
42897
42935
  mfn?: string | undefined;
42898
42936
  manufacturerPartNumber?: string | undefined;
42899
42937
  schSectionName?: string | undefined;
42938
+ schSheetName?: string | undefined;
42900
42939
  pinLabels?: Record<string | number, string | string[]> | undefined;
42901
42940
  internallyConnectedPins?: (string | number)[][] | undefined;
42902
42941
  standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
@@ -43479,6 +43518,7 @@ declare class Interconnect extends NormalComponent<typeof interconnectProps> {
43479
43518
  mfn?: string | undefined;
43480
43519
  manufacturerPartNumber?: string | undefined;
43481
43520
  schSectionName?: string | undefined;
43521
+ schSheetName?: string | undefined;
43482
43522
  pinLabels?: Record<string | number, string | string[]> | undefined;
43483
43523
  internallyConnectedPins?: (string | number)[][] | undefined;
43484
43524
  standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
@@ -43604,6 +43644,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
43604
43644
  name: zod.ZodString;
43605
43645
  displayName: zod.ZodOptional<zod.ZodString>;
43606
43646
  schSectionName: zod.ZodOptional<zod.ZodString>;
43647
+ schSheetName: zod.ZodOptional<zod.ZodString>;
43607
43648
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
43608
43649
  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
43650
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -47734,6 +47775,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
47734
47775
  mfn?: string | undefined;
47735
47776
  manufacturerPartNumber?: string | undefined;
47736
47777
  schSectionName?: string | undefined;
47778
+ schSheetName?: string | undefined;
47737
47779
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
47738
47780
  schPinArrangement?: {
47739
47781
  leftSize?: number | undefined;
@@ -48386,6 +48428,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
48386
48428
  mfn?: string | undefined;
48387
48429
  manufacturerPartNumber?: string | undefined;
48388
48430
  schSectionName?: string | undefined;
48431
+ schSheetName?: string | undefined;
48389
48432
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
48390
48433
  schPinArrangement?: {
48391
48434
  leftSize?: number | undefined;
@@ -48566,6 +48609,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
48566
48609
  name: zod.ZodString;
48567
48610
  displayName: zod.ZodOptional<zod.ZodString>;
48568
48611
  schSectionName: zod.ZodOptional<zod.ZodString>;
48612
+ schSheetName: zod.ZodOptional<zod.ZodString>;
48569
48613
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
48570
48614
  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
48615
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -52414,6 +52458,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
52414
52458
  mfn?: string | undefined;
52415
52459
  manufacturerPartNumber?: string | undefined;
52416
52460
  schSectionName?: string | undefined;
52461
+ schSheetName?: string | undefined;
52417
52462
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
52418
52463
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
52419
52464
  color?: string | undefined;
@@ -52999,6 +53044,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
52999
53044
  mfn?: string | undefined;
53000
53045
  manufacturerPartNumber?: string | undefined;
53001
53046
  schSectionName?: string | undefined;
53047
+ schSheetName?: string | undefined;
53002
53048
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
53003
53049
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
53004
53050
  color?: string | undefined;
@@ -53116,6 +53162,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
53116
53162
  name: zod.ZodString;
53117
53163
  displayName: zod.ZodOptional<zod.ZodString>;
53118
53164
  schSectionName: zod.ZodOptional<zod.ZodString>;
53165
+ schSheetName: zod.ZodOptional<zod.ZodString>;
53119
53166
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
53120
53167
  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
53168
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -56960,6 +57007,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
56960
57007
  mfn?: string | undefined;
56961
57008
  manufacturerPartNumber?: string | undefined;
56962
57009
  schSectionName?: string | undefined;
57010
+ schSheetName?: string | undefined;
56963
57011
  }, {
56964
57012
  name: string;
56965
57013
  voltage: string | number;
@@ -57540,6 +57588,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
57540
57588
  mfn?: string | undefined;
57541
57589
  manufacturerPartNumber?: string | undefined;
57542
57590
  schSectionName?: string | undefined;
57591
+ schSheetName?: string | undefined;
57543
57592
  }>;
57544
57593
  sourceFtype: Ftype;
57545
57594
  };
@@ -57649,6 +57698,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
57649
57698
  name: zod.ZodString;
57650
57699
  displayName: zod.ZodOptional<zod.ZodString>;
57651
57700
  schSectionName: zod.ZodOptional<zod.ZodString>;
57701
+ schSheetName: zod.ZodOptional<zod.ZodString>;
57652
57702
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
57653
57703
  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
57704
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -61503,6 +61553,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
61503
61553
  mfn?: string | undefined;
61504
61554
  manufacturerPartNumber?: string | undefined;
61505
61555
  schSectionName?: string | undefined;
61556
+ schSheetName?: string | undefined;
61506
61557
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
61507
61558
  frequency?: number | undefined;
61508
61559
  voltage?: number | undefined;
@@ -62094,6 +62145,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
62094
62145
  mfn?: string | undefined;
62095
62146
  manufacturerPartNumber?: string | undefined;
62096
62147
  schSectionName?: string | undefined;
62148
+ schSheetName?: string | undefined;
62097
62149
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
62098
62150
  frequency?: string | number | undefined;
62099
62151
  voltage?: string | number | undefined;
@@ -62217,6 +62269,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
62217
62269
  name: zod.ZodString;
62218
62270
  displayName: zod.ZodOptional<zod.ZodString>;
62219
62271
  schSectionName: zod.ZodOptional<zod.ZodString>;
62272
+ schSheetName: zod.ZodOptional<zod.ZodString>;
62220
62273
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
62221
62274
  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
62275
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -66066,6 +66119,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
66066
66119
  mfn?: string | undefined;
66067
66120
  manufacturerPartNumber?: string | undefined;
66068
66121
  schSectionName?: string | undefined;
66122
+ schSheetName?: string | undefined;
66069
66123
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
66070
66124
  frequency?: number | undefined;
66071
66125
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -66652,6 +66706,7 @@ declare class CurrentSource extends NormalComponent<typeof currentSourceProps, "
66652
66706
  mfn?: string | undefined;
66653
66707
  manufacturerPartNumber?: string | undefined;
66654
66708
  schSectionName?: string | undefined;
66709
+ schSheetName?: string | undefined;
66655
66710
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
66656
66711
  frequency?: string | number | undefined;
66657
66712
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -66770,6 +66825,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
66770
66825
  name: zod.ZodString;
66771
66826
  displayName: zod.ZodOptional<zod.ZodString>;
66772
66827
  schSectionName: zod.ZodOptional<zod.ZodString>;
66828
+ schSheetName: zod.ZodOptional<zod.ZodString>;
66773
66829
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
66774
66830
  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
66831
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -70619,6 +70675,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
70619
70675
  mfn?: string | undefined;
70620
70676
  manufacturerPartNumber?: string | undefined;
70621
70677
  schSectionName?: string | undefined;
70678
+ schSheetName?: string | undefined;
70622
70679
  color?: string | undefined;
70623
70680
  graphDisplayName?: string | undefined;
70624
70681
  graphCenter?: number | undefined;
@@ -71204,6 +71261,7 @@ declare class Ammeter extends NormalComponent<typeof ammeterProps, "pos" | "neg"
71204
71261
  mfn?: string | undefined;
71205
71262
  manufacturerPartNumber?: string | undefined;
71206
71263
  schSectionName?: string | undefined;
71264
+ schSheetName?: string | undefined;
71207
71265
  color?: string | undefined;
71208
71266
  graphDisplayName?: string | undefined;
71209
71267
  graphCenter?: number | undefined;
@@ -71317,6 +71375,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
71317
71375
  name: zod.ZodString;
71318
71376
  displayName: zod.ZodOptional<zod.ZodString>;
71319
71377
  schSectionName: zod.ZodOptional<zod.ZodString>;
71378
+ schSheetName: zod.ZodOptional<zod.ZodString>;
71320
71379
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
71321
71380
  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
71381
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -75170,6 +75229,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
75170
75229
  mfn?: string | undefined;
75171
75230
  manufacturerPartNumber?: string | undefined;
75172
75231
  schSectionName?: string | undefined;
75232
+ schSheetName?: string | undefined;
75173
75233
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
75174
75234
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
75175
75235
  tolerance?: number | undefined;
@@ -75758,6 +75818,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
75758
75818
  mfn?: string | undefined;
75759
75819
  manufacturerPartNumber?: string | undefined;
75760
75820
  schSectionName?: string | undefined;
75821
+ schSheetName?: string | undefined;
75761
75822
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
75762
75823
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
75763
75824
  tolerance?: string | number | undefined;
@@ -83609,6 +83670,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
83609
83670
  name: z.ZodString;
83610
83671
  displayName: z.ZodOptional<z.ZodString>;
83611
83672
  schSectionName: z.ZodOptional<z.ZodString>;
83673
+ schSheetName: z.ZodOptional<z.ZodString>;
83612
83674
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
83613
83675
  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
83676
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -87454,6 +87516,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
87454
87516
  mfn?: string | undefined;
87455
87517
  manufacturerPartNumber?: string | undefined;
87456
87518
  schSectionName?: string | undefined;
87519
+ schSheetName?: string | undefined;
87457
87520
  soldermaskPullback?: number | undefined;
87458
87521
  }, {
87459
87522
  name: string;
@@ -88035,6 +88098,7 @@ declare class Fiducial extends PrimitiveComponent<typeof fiducialProps> {
88035
88098
  mfn?: string | undefined;
88036
88099
  manufacturerPartNumber?: string | undefined;
88037
88100
  schSectionName?: string | undefined;
88101
+ schSheetName?: string | undefined;
88038
88102
  soldermaskPullback?: string | number | undefined;
88039
88103
  }>;
88040
88104
  sourceFtype: "simple_fiducial";
@@ -88593,6 +88657,24 @@ declare const pcbViaProps: z.ZodObject<{
88593
88657
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88594
88658
  }>>;
88595
88659
  name: z.ZodOptional<z.ZodString>;
88660
+ fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88661
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88662
+ }, "strip", z.ZodTypeAny, {
88663
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88664
+ }, {
88665
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88666
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88667
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88668
+ }>>>;
88669
+ toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88670
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88671
+ }, "strip", z.ZodTypeAny, {
88672
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88673
+ }, {
88674
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88675
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88676
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88677
+ }>>>;
88596
88678
  layers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88597
88679
  name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88598
88680
  }, "strip", z.ZodTypeAny, {
@@ -88679,24 +88761,6 @@ declare const pcbViaProps: z.ZodObject<{
88679
88761
  schRelative: z.ZodOptional<z.ZodBoolean>;
88680
88762
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
88681
88763
  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
88764
  holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
88701
88765
  isTented: z.ZodOptional<z.ZodBoolean>;
88702
88766
  outerDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -88705,6 +88769,8 @@ declare const pcbViaProps: z.ZodObject<{
88705
88769
  symbol?: _tscircuit_props.SymbolProp | undefined;
88706
88770
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
88707
88771
  name?: string | undefined;
88772
+ fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
88773
+ toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
88708
88774
  layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
88709
88775
  schX?: number | undefined;
88710
88776
  schY?: number | undefined;
@@ -88753,8 +88819,6 @@ declare const pcbViaProps: z.ZodObject<{
88753
88819
  schRelative?: boolean | undefined;
88754
88820
  pcbRelative?: boolean | undefined;
88755
88821
  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
88822
  holeDiameter?: number | undefined;
88759
88823
  isTented?: boolean | undefined;
88760
88824
  outerDiameter?: number | undefined;
@@ -88765,6 +88829,12 @@ declare const pcbViaProps: z.ZodObject<{
88765
88829
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88766
88830
  } | undefined;
88767
88831
  name?: string | undefined;
88832
+ fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88833
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88834
+ } | undefined;
88835
+ toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88836
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88837
+ } | undefined;
88768
88838
  layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88769
88839
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88770
88840
  })[] | undefined;
@@ -88815,12 +88885,6 @@ declare const pcbViaProps: z.ZodObject<{
88815
88885
  schRelative?: boolean | undefined;
88816
88886
  pcbRelative?: boolean | undefined;
88817
88887
  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
88888
  holeDiameter?: string | number | undefined;
88825
88889
  isTented?: boolean | undefined;
88826
88890
  outerDiameter?: string | number | undefined;
@@ -88844,6 +88908,24 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
88844
88908
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88845
88909
  }>>;
88846
88910
  name: z.ZodOptional<z.ZodString>;
88911
+ fromLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88912
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88913
+ }, "strip", z.ZodTypeAny, {
88914
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88915
+ }, {
88916
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88917
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88918
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88919
+ }>>>;
88920
+ toLayer: z.ZodOptional<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88921
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88922
+ }, "strip", z.ZodTypeAny, {
88923
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88924
+ }, {
88925
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88926
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
88927
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
88928
+ }>>>;
88847
88929
  layers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
88848
88930
  name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
88849
88931
  }, "strip", z.ZodTypeAny, {
@@ -88930,24 +89012,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
88930
89012
  schRelative: z.ZodOptional<z.ZodBoolean>;
88931
89013
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
88932
89014
  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
89015
  holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
88952
89016
  isTented: z.ZodOptional<z.ZodBoolean>;
88953
89017
  outerDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -88956,6 +89020,8 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
88956
89020
  symbol?: _tscircuit_props.SymbolProp | undefined;
88957
89021
  layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
88958
89022
  name?: string | undefined;
89023
+ fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
89024
+ toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
88959
89025
  layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6")[] | undefined;
88960
89026
  schX?: number | undefined;
88961
89027
  schY?: number | undefined;
@@ -89004,8 +89070,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
89004
89070
  schRelative?: boolean | undefined;
89005
89071
  pcbRelative?: boolean | undefined;
89006
89072
  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
89073
  holeDiameter?: number | undefined;
89010
89074
  isTented?: boolean | undefined;
89011
89075
  outerDiameter?: number | undefined;
@@ -89016,6 +89080,12 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
89016
89080
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
89017
89081
  } | undefined;
89018
89082
  name?: string | undefined;
89083
+ fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
89084
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
89085
+ } | undefined;
89086
+ toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
89087
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
89088
+ } | undefined;
89019
89089
  layers?: ("top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
89020
89090
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
89021
89091
  })[] | undefined;
@@ -89066,12 +89136,6 @@ declare class PcbVia extends PrimitiveComponent<typeof pcbViaProps> {
89066
89136
  schRelative?: boolean | undefined;
89067
89137
  pcbRelative?: boolean | undefined;
89068
89138
  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
89139
  holeDiameter?: string | number | undefined;
89076
89140
  isTented?: boolean | undefined;
89077
89141
  outerDiameter?: string | number | undefined;
@@ -90401,6 +90465,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
90401
90465
  name: zod.ZodString;
90402
90466
  displayName: zod.ZodOptional<zod.ZodString>;
90403
90467
  schSectionName: zod.ZodOptional<zod.ZodString>;
90468
+ schSheetName: zod.ZodOptional<zod.ZodString>;
90404
90469
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
90405
90470
  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
90471
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -94247,6 +94312,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
94247
94312
  mfn?: string | undefined;
94248
94313
  manufacturerPartNumber?: string | undefined;
94249
94314
  schSectionName?: string | undefined;
94315
+ schSheetName?: string | undefined;
94250
94316
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
94251
94317
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
94252
94318
  capacity?: number | undefined;
@@ -94830,6 +94896,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
94830
94896
  mfn?: string | undefined;
94831
94897
  manufacturerPartNumber?: string | undefined;
94832
94898
  schSectionName?: string | undefined;
94899
+ schSheetName?: string | undefined;
94833
94900
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
94834
94901
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
94835
94902
  capacity?: string | number | undefined;
@@ -94947,6 +95014,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
94947
95014
  name: zod.ZodString;
94948
95015
  displayName: zod.ZodOptional<zod.ZodString>;
94949
95016
  schSectionName: zod.ZodOptional<zod.ZodString>;
95017
+ schSheetName: zod.ZodOptional<zod.ZodString>;
94950
95018
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
94951
95019
  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
95020
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -99089,6 +99157,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
99089
99157
  mfn?: string | undefined;
99090
99158
  manufacturerPartNumber?: string | undefined;
99091
99159
  schSectionName?: string | undefined;
99160
+ schSheetName?: string | undefined;
99092
99161
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
99093
99162
  schPinArrangement?: {
99094
99163
  leftSize?: number | undefined;
@@ -99747,6 +99816,7 @@ declare class Connector<PinLabels extends string = never> extends Chip<PinLabels
99747
99816
  mfn?: string | undefined;
99748
99817
  manufacturerPartNumber?: string | undefined;
99749
99818
  schSectionName?: string | undefined;
99819
+ schSheetName?: string | undefined;
99750
99820
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
99751
99821
  schPinArrangement?: {
99752
99822
  leftSize?: number | undefined;
@@ -99936,6 +100006,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
99936
100006
  name: zod.ZodString;
99937
100007
  displayName: zod.ZodOptional<zod.ZodString>;
99938
100008
  schSectionName: zod.ZodOptional<zod.ZodString>;
100009
+ schSheetName: zod.ZodOptional<zod.ZodString>;
99939
100010
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
99940
100011
  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
100012
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -103949,6 +104020,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
103949
104020
  mfn?: string | undefined;
103950
104021
  manufacturerPartNumber?: string | undefined;
103951
104022
  schSectionName?: string | undefined;
104023
+ schSheetName?: string | undefined;
103952
104024
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
103953
104025
  schPinArrangement?: {
103954
104026
  leftSize?: number | undefined;
@@ -104580,6 +104652,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
104580
104652
  mfn?: string | undefined;
104581
104653
  manufacturerPartNumber?: string | undefined;
104582
104654
  schSectionName?: string | undefined;
104655
+ schSheetName?: string | undefined;
104583
104656
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
104584
104657
  schPinArrangement?: {
104585
104658
  leftSize?: number | undefined;
@@ -104739,6 +104812,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
104739
104812
  name: zod.ZodString;
104740
104813
  displayName: zod.ZodOptional<zod.ZodString>;
104741
104814
  schSectionName: zod.ZodOptional<zod.ZodString>;
104815
+ schSheetName: zod.ZodOptional<zod.ZodString>;
104742
104816
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
104743
104817
  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
104818
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -108586,6 +108660,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
108586
108660
  mfn?: string | undefined;
108587
108661
  manufacturerPartNumber?: string | undefined;
108588
108662
  schSectionName?: string | undefined;
108663
+ schSheetName?: string | undefined;
108589
108664
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
108590
108665
  }, {
108591
108666
  name: string;
@@ -109168,6 +109243,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
109168
109243
  mfn?: string | undefined;
109169
109244
  manufacturerPartNumber?: string | undefined;
109170
109245
  schSectionName?: string | undefined;
109246
+ schSheetName?: string | undefined;
109171
109247
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
109172
109248
  }>;
109173
109249
  shouldRenderAsSchematicBox: boolean;
@@ -109275,6 +109351,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
109275
109351
  name: zod.ZodString;
109276
109352
  displayName: zod.ZodOptional<zod.ZodString>;
109277
109353
  schSectionName: zod.ZodOptional<zod.ZodString>;
109354
+ schSheetName: zod.ZodOptional<zod.ZodString>;
109278
109355
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
109279
109356
  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
109357
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -113122,6 +113199,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
113122
113199
  mfn?: string | undefined;
113123
113200
  manufacturerPartNumber?: string | undefined;
113124
113201
  schSectionName?: string | undefined;
113202
+ schSheetName?: string | undefined;
113125
113203
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
113126
113204
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
113127
113205
  maxCurrentRating?: string | number | undefined;
@@ -113705,6 +113783,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
113705
113783
  mfn?: string | undefined;
113706
113784
  manufacturerPartNumber?: string | undefined;
113707
113785
  schSectionName?: string | undefined;
113786
+ schSheetName?: string | undefined;
113708
113787
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
113709
113788
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
113710
113789
  maxCurrentRating?: string | number | undefined;
@@ -113814,6 +113893,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
113814
113893
  name: zod.ZodString;
113815
113894
  displayName: zod.ZodOptional<zod.ZodString>;
113816
113895
  schSectionName: zod.ZodOptional<zod.ZodString>;
113896
+ schSheetName: zod.ZodOptional<zod.ZodString>;
113817
113897
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
113818
113898
  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
113899
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -117660,6 +117740,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
117660
117740
  mfn?: string | undefined;
117661
117741
  manufacturerPartNumber?: string | undefined;
117662
117742
  schSectionName?: string | undefined;
117743
+ schSheetName?: string | undefined;
117663
117744
  connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
117664
117745
  pinVariant?: "two_pin" | "three_pin" | undefined;
117665
117746
  }, {
@@ -118242,6 +118323,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
118242
118323
  mfn?: string | undefined;
118243
118324
  manufacturerPartNumber?: string | undefined;
118244
118325
  schSectionName?: string | undefined;
118326
+ schSheetName?: string | undefined;
118245
118327
  connections?: Partial<Record<"pin1" | "pin2" | "pin3", string | readonly string[] | string[]>> | undefined;
118246
118328
  pinVariant?: "two_pin" | "three_pin" | undefined;
118247
118329
  }>;
@@ -118347,6 +118429,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
118347
118429
  name: zod.ZodString;
118348
118430
  displayName: zod.ZodOptional<zod.ZodString>;
118349
118431
  schSectionName: zod.ZodOptional<zod.ZodString>;
118432
+ schSheetName: zod.ZodOptional<zod.ZodString>;
118350
118433
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
118351
118434
  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
118435
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -122487,6 +122570,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
122487
122570
  mfn?: string | undefined;
122488
122571
  manufacturerPartNumber?: string | undefined;
122489
122572
  schSectionName?: string | undefined;
122573
+ schSheetName?: string | undefined;
122490
122574
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
122491
122575
  schPinArrangement?: {
122492
122576
  leftSize?: number | undefined;
@@ -123144,6 +123228,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
123144
123228
  mfn?: string | undefined;
123145
123229
  manufacturerPartNumber?: string | undefined;
123146
123230
  schSectionName?: string | undefined;
123231
+ schSheetName?: string | undefined;
123147
123232
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
123148
123233
  schPinArrangement?: {
123149
123234
  leftSize?: number | undefined;
@@ -123326,6 +123411,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
123326
123411
  name: zod.ZodString;
123327
123412
  displayName: zod.ZodOptional<zod.ZodString>;
123328
123413
  schSectionName: zod.ZodOptional<zod.ZodString>;
123414
+ schSheetName: zod.ZodOptional<zod.ZodString>;
123329
123415
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
123330
123416
  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
123417
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -127176,6 +127262,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
127176
127262
  mfn?: string | undefined;
127177
127263
  manufacturerPartNumber?: string | undefined;
127178
127264
  schSectionName?: string | undefined;
127265
+ schSheetName?: string | undefined;
127179
127266
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
127180
127267
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
127181
127268
  pinVariant?: "two_pin" | "four_pin" | undefined;
@@ -127761,6 +127848,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
127761
127848
  mfn?: string | undefined;
127762
127849
  manufacturerPartNumber?: string | undefined;
127763
127850
  schSectionName?: string | undefined;
127851
+ schSheetName?: string | undefined;
127764
127852
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
127765
127853
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
127766
127854
  pinVariant?: "two_pin" | "four_pin" | undefined;
@@ -127871,6 +127959,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
127871
127959
  name: zod.ZodString;
127872
127960
  displayName: zod.ZodOptional<zod.ZodString>;
127873
127961
  schSectionName: zod.ZodOptional<zod.ZodString>;
127962
+ schSheetName: zod.ZodOptional<zod.ZodString>;
127874
127963
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
127875
127964
  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
127965
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -131716,6 +131805,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
131716
131805
  mfn?: string | undefined;
131717
131806
  manufacturerPartNumber?: string | undefined;
131718
131807
  schSectionName?: string | undefined;
131808
+ schSheetName?: string | undefined;
131719
131809
  connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
131720
131810
  }, {
131721
131811
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
@@ -132297,6 +132387,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
132297
132387
  mfn?: string | undefined;
132298
132388
  manufacturerPartNumber?: string | undefined;
132299
132389
  schSectionName?: string | undefined;
132390
+ schSheetName?: string | undefined;
132300
132391
  connections?: Partial<Record<"pin1" | "pin2" | "source" | "pin3" | "emitter" | "collector" | "base" | "gate" | "drain", string | readonly string[] | string[]>> | undefined;
132301
132392
  }>;
132302
132393
  sourceFtype: Ftype;
@@ -132409,6 +132500,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
132409
132500
  name: zod.ZodString;
132410
132501
  displayName: zod.ZodOptional<zod.ZodString>;
132411
132502
  schSectionName: zod.ZodOptional<zod.ZodString>;
132503
+ schSheetName: zod.ZodOptional<zod.ZodString>;
132412
132504
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
132413
132505
  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
132506
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -136255,6 +136347,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
136255
136347
  mfn?: string | undefined;
136256
136348
  manufacturerPartNumber?: string | undefined;
136257
136349
  schSectionName?: string | undefined;
136350
+ schSheetName?: string | undefined;
136258
136351
  }, {
136259
136352
  name: string;
136260
136353
  channelType: "n" | "p";
@@ -136836,6 +136929,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
136836
136929
  mfn?: string | undefined;
136837
136930
  manufacturerPartNumber?: string | undefined;
136838
136931
  schSectionName?: string | undefined;
136932
+ schSheetName?: string | undefined;
136839
136933
  }>;
136840
136934
  shouldRenderAsSchematicBox: boolean;
136841
136935
  };
@@ -136941,6 +137035,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
136941
137035
  name: zod.ZodString;
136942
137036
  displayName: zod.ZodOptional<zod.ZodString>;
136943
137037
  schSectionName: zod.ZodOptional<zod.ZodString>;
137038
+ schSheetName: zod.ZodOptional<zod.ZodString>;
136944
137039
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
136945
137040
  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
137041
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -140784,6 +140879,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
140784
140879
  mfn?: string | undefined;
140785
140880
  manufacturerPartNumber?: string | undefined;
140786
140881
  schSectionName?: string | undefined;
140882
+ schSheetName?: string | undefined;
140787
140883
  connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
140788
140884
  }, {
140789
140885
  name: string;
@@ -141364,6 +141460,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
141364
141460
  mfn?: string | undefined;
141365
141461
  manufacturerPartNumber?: string | undefined;
141366
141462
  schSectionName?: string | undefined;
141463
+ schSheetName?: string | undefined;
141367
141464
  connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
141368
141465
  }>;
141369
141466
  sourceFtype: Ftype;
@@ -141477,6 +141574,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
141477
141574
  name: zod.ZodString;
141478
141575
  displayName: zod.ZodOptional<zod.ZodString>;
141479
141576
  schSectionName: zod.ZodOptional<zod.ZodString>;
141577
+ schSheetName: zod.ZodOptional<zod.ZodString>;
141480
141578
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
141481
141579
  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
141580
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -145333,6 +145431,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
145333
145431
  mfn?: string | undefined;
145334
145432
  manufacturerPartNumber?: string | undefined;
145335
145433
  schSectionName?: string | undefined;
145434
+ schSheetName?: string | undefined;
145336
145435
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
145337
145436
  spst?: boolean | undefined;
145338
145437
  spdt?: boolean | undefined;
@@ -145923,6 +146022,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
145923
146022
  mfn?: string | undefined;
145924
146023
  manufacturerPartNumber?: string | undefined;
145925
146024
  schSectionName?: string | undefined;
146025
+ schSheetName?: string | undefined;
145926
146026
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
145927
146027
  spst?: boolean | undefined;
145928
146028
  spdt?: boolean | undefined;
@@ -146514,6 +146614,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
146514
146614
  mfn?: string | undefined;
146515
146615
  manufacturerPartNumber?: string | undefined;
146516
146616
  schSectionName?: string | undefined;
146617
+ schSheetName?: string | undefined;
146517
146618
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
146518
146619
  spst?: boolean | undefined;
146519
146620
  spdt?: boolean | undefined;
@@ -146630,6 +146731,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
146630
146731
  name: zod.ZodString;
146631
146732
  displayName: zod.ZodOptional<zod.ZodString>;
146632
146733
  schSectionName: zod.ZodOptional<zod.ZodString>;
146734
+ schSheetName: zod.ZodOptional<zod.ZodString>;
146633
146735
  datasheetUrl: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
146634
146736
  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
146737
  rotationOffset: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodObject<{
@@ -150486,6 +150588,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
150486
150588
  mfn?: string | undefined;
150487
150589
  manufacturerPartNumber?: string | undefined;
150488
150590
  schSectionName?: string | undefined;
150591
+ schSheetName?: string | undefined;
150489
150592
  width?: number | undefined;
150490
150593
  height?: number | undefined;
150491
150594
  connections?: {
@@ -151073,6 +151176,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
151073
151176
  mfn?: string | undefined;
151074
151177
  manufacturerPartNumber?: string | undefined;
151075
151178
  schSectionName?: string | undefined;
151179
+ schSheetName?: string | undefined;
151076
151180
  width?: string | number | undefined;
151077
151181
  height?: string | number | undefined;
151078
151182
  connections?: {
@@ -151660,6 +151764,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
151660
151764
  mfn?: string | undefined;
151661
151765
  manufacturerPartNumber?: string | undefined;
151662
151766
  schSectionName?: string | undefined;
151767
+ schSheetName?: string | undefined;
151663
151768
  width?: number | undefined;
151664
151769
  height?: number | undefined;
151665
151770
  connections?: {
@@ -152247,6 +152352,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
152247
152352
  mfn?: string | undefined;
152248
152353
  manufacturerPartNumber?: string | undefined;
152249
152354
  schSectionName?: string | undefined;
152355
+ schSheetName?: string | undefined;
152250
152356
  width?: string | number | undefined;
152251
152357
  height?: string | number | undefined;
152252
152358
  connections?: {
@@ -152973,6 +153079,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
152973
153079
  name: z.ZodString;
152974
153080
  displayName: z.ZodOptional<z.ZodString>;
152975
153081
  schSectionName: z.ZodOptional<z.ZodString>;
153082
+ schSheetName: z.ZodOptional<z.ZodString>;
152976
153083
  datasheetUrl: z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>;
152977
153084
  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
153085
  rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -156824,6 +156931,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
156824
156931
  mfn?: string | undefined;
156825
156932
  manufacturerPartNumber?: string | undefined;
156826
156933
  schSectionName?: string | undefined;
156934
+ schSheetName?: string | undefined;
156827
156935
  color?: string | undefined;
156828
156936
  referenceTo?: string | undefined;
156829
156937
  graphDisplayName?: string | undefined;
@@ -157410,6 +157518,7 @@ declare class VoltageProbe extends PrimitiveComponent<typeof voltageProbeProps>
157410
157518
  mfn?: string | undefined;
157411
157519
  manufacturerPartNumber?: string | undefined;
157412
157520
  schSectionName?: string | undefined;
157521
+ schSheetName?: string | undefined;
157413
157522
  color?: string | undefined;
157414
157523
  referenceTo?: string | undefined;
157415
157524
  graphDisplayName?: string | undefined;
@@ -158062,6 +158171,7 @@ declare const useLed: <PropsFromHook extends Omit<{
158062
158171
  mfn?: string | undefined;
158063
158172
  manufacturerPartNumber?: string | undefined;
158064
158173
  schSectionName?: string | undefined;
158174
+ schSheetName?: string | undefined;
158065
158175
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
158066
158176
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
158067
158177
  color?: string | undefined;
@@ -158647,6 +158757,7 @@ declare const useLed: <PropsFromHook extends Omit<{
158647
158757
  mfn?: string | undefined;
158648
158758
  manufacturerPartNumber?: string | undefined;
158649
158759
  schSectionName?: string | undefined;
158760
+ schSheetName?: string | undefined;
158650
158761
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
158651
158762
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
158652
158763
  color?: string | undefined;