@tscircuit/core 0.0.750 → 0.0.752

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 +380 -251
  2. package/dist/index.js +40 -30
  3. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -635,7 +635,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
635
635
  }>, "many">>;
636
636
  schDisplayLabel: z.ZodOptional<z.ZodString>;
637
637
  schStroke: z.ZodOptional<z.ZodString>;
638
- ratsNestColor: z.ZodOptional<z.ZodString>;
638
+ highlightColor: z.ZodOptional<z.ZodString>;
639
639
  maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
640
640
  } & {
641
641
  path: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<{
@@ -648,7 +648,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
648
648
  getPortSelector: () => string;
649
649
  })[];
650
650
  key?: string | undefined;
651
- ratsNestColor?: string | undefined;
651
+ highlightColor?: string | undefined;
652
652
  maxLength?: number | undefined;
653
653
  thickness?: number | undefined;
654
654
  schematicRouteHints?: {
@@ -674,7 +674,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
674
674
  getPortSelector: () => string;
675
675
  })[];
676
676
  key?: string | undefined;
677
- ratsNestColor?: string | undefined;
677
+ highlightColor?: string | undefined;
678
678
  maxLength?: string | number | undefined;
679
679
  thickness?: string | number | undefined;
680
680
  schematicRouteHints?: {
@@ -752,7 +752,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
752
752
  }>, "many">>;
753
753
  schDisplayLabel: z.ZodOptional<z.ZodString>;
754
754
  schStroke: z.ZodOptional<z.ZodString>;
755
- ratsNestColor: z.ZodOptional<z.ZodString>;
755
+ highlightColor: z.ZodOptional<z.ZodString>;
756
756
  maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
757
757
  } & {
758
758
  from: z.ZodUnion<[z.ZodString, z.ZodType<{
@@ -773,7 +773,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
773
773
  getPortSelector: () => string;
774
774
  };
775
775
  key?: string | undefined;
776
- ratsNestColor?: string | undefined;
776
+ highlightColor?: string | undefined;
777
777
  maxLength?: number | undefined;
778
778
  thickness?: number | undefined;
779
779
  schematicRouteHints?: {
@@ -802,7 +802,7 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
802
802
  getPortSelector: () => string;
803
803
  };
804
804
  key?: string | undefined;
805
- ratsNestColor?: string | undefined;
805
+ highlightColor?: string | undefined;
806
806
  maxLength?: string | number | undefined;
807
807
  thickness?: string | number | undefined;
808
808
  schematicRouteHints?: {
@@ -1717,6 +1717,35 @@ declare class Board extends Group<typeof boardProps> {
1717
1717
  topPinCount?: number | undefined;
1718
1718
  bottomPinCount?: number | undefined;
1719
1719
  }>>;
1720
+ schPinSpacing: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1721
+ schPinStyle: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
1722
+ marginLeft: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1723
+ marginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1724
+ marginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1725
+ marginBottom: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1726
+ leftMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1727
+ rightMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1728
+ topMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1729
+ bottomMargin: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
1730
+ }, "strip", zod.ZodTypeAny, {
1731
+ marginLeft?: number | undefined;
1732
+ marginRight?: number | undefined;
1733
+ marginTop?: number | undefined;
1734
+ marginBottom?: number | undefined;
1735
+ leftMargin?: number | undefined;
1736
+ rightMargin?: number | undefined;
1737
+ topMargin?: number | undefined;
1738
+ bottomMargin?: number | undefined;
1739
+ }, {
1740
+ marginLeft?: string | number | undefined;
1741
+ marginRight?: string | number | undefined;
1742
+ marginTop?: string | number | undefined;
1743
+ marginBottom?: string | number | undefined;
1744
+ leftMargin?: string | number | undefined;
1745
+ rightMargin?: string | number | undefined;
1746
+ topMargin?: string | number | undefined;
1747
+ bottomMargin?: string | number | undefined;
1748
+ }>>>;
1720
1749
  } & {
1721
1750
  manualEdits: zod.ZodOptional<zod.ZodObject<{
1722
1751
  pcb_placements: zod.ZodOptional<zod.ZodArray<zod.ZodObject<{
@@ -2050,6 +2079,17 @@ declare class Board extends Group<typeof boardProps> {
2050
2079
  topPinCount?: number | undefined;
2051
2080
  bottomPinCount?: number | undefined;
2052
2081
  } | undefined;
2082
+ schPinSpacing?: number | undefined;
2083
+ schPinStyle?: Record<string, {
2084
+ marginLeft?: number | undefined;
2085
+ marginRight?: number | undefined;
2086
+ marginTop?: number | undefined;
2087
+ marginBottom?: number | undefined;
2088
+ leftMargin?: number | undefined;
2089
+ rightMargin?: number | undefined;
2090
+ topMargin?: number | undefined;
2091
+ bottomMargin?: number | undefined;
2092
+ }> | undefined;
2053
2093
  pcbWidth?: number | undefined;
2054
2094
  pcbHeight?: number | undefined;
2055
2095
  schWidth?: number | undefined;
@@ -2335,6 +2375,17 @@ declare class Board extends Group<typeof boardProps> {
2335
2375
  topPinCount?: number | undefined;
2336
2376
  bottomPinCount?: number | undefined;
2337
2377
  } | undefined;
2378
+ schPinSpacing?: string | number | undefined;
2379
+ schPinStyle?: Record<string, {
2380
+ marginLeft?: string | number | undefined;
2381
+ marginRight?: string | number | undefined;
2382
+ marginTop?: string | number | undefined;
2383
+ marginBottom?: string | number | undefined;
2384
+ leftMargin?: string | number | undefined;
2385
+ rightMargin?: string | number | undefined;
2386
+ topMargin?: string | number | undefined;
2387
+ bottomMargin?: string | number | undefined;
2388
+ }> | undefined;
2338
2389
  pcbWidth?: string | number | undefined;
2339
2390
  pcbHeight?: string | number | undefined;
2340
2391
  schWidth?: string | number | undefined;
@@ -3159,6 +3210,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3159
3210
  children: zod.ZodOptional<zod.ZodAny>;
3160
3211
  symbolName: zod.ZodOptional<zod.ZodString>;
3161
3212
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
3213
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
3162
3214
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
3163
3215
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
3164
3216
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -3168,7 +3220,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3168
3220
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
3169
3221
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
3170
3222
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
3171
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
3223
+ highlightColor: zod.ZodOptional<zod.ZodString>;
3172
3224
  }, "strip", zod.ZodTypeAny, {
3173
3225
  providesPower?: boolean | undefined;
3174
3226
  requiresPower?: boolean | undefined;
@@ -3178,7 +3230,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3178
3230
  requiresVoltage?: string | number | undefined;
3179
3231
  doNotConnect?: boolean | undefined;
3180
3232
  includeInBoardPinout?: boolean | undefined;
3181
- ratsNestColor?: string | undefined;
3233
+ highlightColor?: string | undefined;
3182
3234
  }, {
3183
3235
  providesPower?: boolean | undefined;
3184
3236
  requiresPower?: boolean | undefined;
@@ -3188,7 +3240,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3188
3240
  requiresVoltage?: string | number | undefined;
3189
3241
  doNotConnect?: boolean | undefined;
3190
3242
  includeInBoardPinout?: boolean | undefined;
3191
- ratsNestColor?: string | undefined;
3243
+ highlightColor?: string | undefined;
3192
3244
  }>>>;
3193
3245
  } & {
3194
3246
  capacitance: zod.ZodEffects<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>, number, string | number>;
@@ -3243,7 +3295,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3243
3295
  requiresVoltage?: string | number | undefined;
3244
3296
  doNotConnect?: boolean | undefined;
3245
3297
  includeInBoardPinout?: boolean | undefined;
3246
- ratsNestColor?: string | undefined;
3298
+ highlightColor?: string | undefined;
3247
3299
  }> | undefined;
3248
3300
  cadModel?: string | {
3249
3301
  stlUrl: string;
@@ -3376,6 +3428,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3376
3428
  children?: any;
3377
3429
  symbolName?: string | undefined;
3378
3430
  doNotPlace?: boolean | undefined;
3431
+ obstructsWithinBounds?: boolean | undefined;
3379
3432
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
3380
3433
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
3381
3434
  maxVoltageRating?: number | undefined;
@@ -3425,7 +3478,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3425
3478
  requiresVoltage?: string | number | undefined;
3426
3479
  doNotConnect?: boolean | undefined;
3427
3480
  includeInBoardPinout?: boolean | undefined;
3428
- ratsNestColor?: string | undefined;
3481
+ highlightColor?: string | undefined;
3429
3482
  }> | undefined;
3430
3483
  cadModel?: string | {
3431
3484
  stlUrl: string;
@@ -3558,6 +3611,7 @@ declare class Capacitor extends NormalComponent<typeof capacitorProps, Polarized
3558
3611
  children?: any;
3559
3612
  symbolName?: string | undefined;
3560
3613
  doNotPlace?: boolean | undefined;
3614
+ obstructsWithinBounds?: boolean | undefined;
3561
3615
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
3562
3616
  schShowRatings?: boolean | undefined;
3563
3617
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -4182,6 +4236,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4182
4236
  children: z.ZodOptional<z.ZodAny>;
4183
4237
  symbolName: z.ZodOptional<z.ZodString>;
4184
4238
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
4239
+ obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
4185
4240
  pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
4186
4241
  providesPower: z.ZodOptional<z.ZodBoolean>;
4187
4242
  requiresPower: z.ZodOptional<z.ZodBoolean>;
@@ -4191,7 +4246,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4191
4246
  requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
4192
4247
  doNotConnect: z.ZodOptional<z.ZodBoolean>;
4193
4248
  includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
4194
- ratsNestColor: z.ZodOptional<z.ZodString>;
4249
+ highlightColor: z.ZodOptional<z.ZodString>;
4195
4250
  }, "strip", z.ZodTypeAny, {
4196
4251
  providesPower?: boolean | undefined;
4197
4252
  requiresPower?: boolean | undefined;
@@ -4201,7 +4256,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4201
4256
  requiresVoltage?: string | number | undefined;
4202
4257
  doNotConnect?: boolean | undefined;
4203
4258
  includeInBoardPinout?: boolean | undefined;
4204
- ratsNestColor?: string | undefined;
4259
+ highlightColor?: string | undefined;
4205
4260
  }, {
4206
4261
  providesPower?: boolean | undefined;
4207
4262
  requiresPower?: boolean | undefined;
@@ -4211,7 +4266,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4211
4266
  requiresVoltage?: string | number | undefined;
4212
4267
  doNotConnect?: boolean | undefined;
4213
4268
  includeInBoardPinout?: boolean | undefined;
4214
- ratsNestColor?: string | undefined;
4269
+ highlightColor?: string | undefined;
4215
4270
  }>>>;
4216
4271
  } & {
4217
4272
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
@@ -4501,7 +4556,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4501
4556
  requiresVoltage?: string | number | undefined;
4502
4557
  doNotConnect?: boolean | undefined;
4503
4558
  includeInBoardPinout?: boolean | undefined;
4504
- ratsNestColor?: string | undefined;
4559
+ highlightColor?: string | undefined;
4505
4560
  }> | undefined;
4506
4561
  cadModel?: string | {
4507
4562
  stlUrl: string;
@@ -4634,6 +4689,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4634
4689
  children?: any;
4635
4690
  symbolName?: string | undefined;
4636
4691
  doNotPlace?: boolean | undefined;
4692
+ obstructsWithinBounds?: boolean | undefined;
4637
4693
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
4638
4694
  schPinArrangement?: {
4639
4695
  leftSize?: number | undefined;
@@ -4661,6 +4717,17 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4661
4717
  topPinCount?: number | undefined;
4662
4718
  bottomPinCount?: number | undefined;
4663
4719
  } | undefined;
4720
+ schPinSpacing?: number | undefined;
4721
+ schPinStyle?: Record<string, {
4722
+ marginLeft?: number | undefined;
4723
+ marginRight?: number | undefined;
4724
+ marginTop?: number | undefined;
4725
+ marginBottom?: number | undefined;
4726
+ leftMargin?: number | undefined;
4727
+ rightMargin?: number | undefined;
4728
+ topMargin?: number | undefined;
4729
+ bottomMargin?: number | undefined;
4730
+ }> | undefined;
4664
4731
  schWidth?: number | undefined;
4665
4732
  schHeight?: number | undefined;
4666
4733
  manufacturerPartNumber?: string | undefined;
@@ -4699,17 +4766,6 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4699
4766
  manufacturerPartNumber?: string | undefined;
4700
4767
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4701
4768
  }[] | undefined;
4702
- schPinStyle?: Record<string, {
4703
- marginLeft?: number | undefined;
4704
- marginRight?: number | undefined;
4705
- marginTop?: number | undefined;
4706
- marginBottom?: number | undefined;
4707
- leftMargin?: number | undefined;
4708
- rightMargin?: number | undefined;
4709
- topMargin?: number | undefined;
4710
- bottomMargin?: number | undefined;
4711
- }> | undefined;
4712
- schPinSpacing?: number | undefined;
4713
4769
  noSchematicRepresentation?: boolean | undefined;
4714
4770
  }, {
4715
4771
  name: string;
@@ -4751,7 +4807,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4751
4807
  requiresVoltage?: string | number | undefined;
4752
4808
  doNotConnect?: boolean | undefined;
4753
4809
  includeInBoardPinout?: boolean | undefined;
4754
- ratsNestColor?: string | undefined;
4810
+ highlightColor?: string | undefined;
4755
4811
  }> | undefined;
4756
4812
  cadModel?: string | {
4757
4813
  stlUrl: string;
@@ -4884,6 +4940,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4884
4940
  children?: any;
4885
4941
  symbolName?: string | undefined;
4886
4942
  doNotPlace?: boolean | undefined;
4943
+ obstructsWithinBounds?: boolean | undefined;
4887
4944
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
4888
4945
  schPinArrangement?: {
4889
4946
  leftSize?: number | undefined;
@@ -4911,6 +4968,17 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4911
4968
  topPinCount?: number | undefined;
4912
4969
  bottomPinCount?: number | undefined;
4913
4970
  } | undefined;
4971
+ schPinSpacing?: string | number | undefined;
4972
+ schPinStyle?: Record<string, {
4973
+ marginLeft?: string | number | undefined;
4974
+ marginRight?: string | number | undefined;
4975
+ marginTop?: string | number | undefined;
4976
+ marginBottom?: string | number | undefined;
4977
+ leftMargin?: string | number | undefined;
4978
+ rightMargin?: string | number | undefined;
4979
+ topMargin?: string | number | undefined;
4980
+ bottomMargin?: string | number | undefined;
4981
+ }> | undefined;
4914
4982
  schWidth?: string | number | undefined;
4915
4983
  schHeight?: string | number | undefined;
4916
4984
  manufacturerPartNumber?: string | undefined;
@@ -4949,17 +5017,6 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
4949
5017
  manufacturerPartNumber?: string | undefined;
4950
5018
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4951
5019
  }[] | undefined;
4952
- schPinStyle?: Record<string, {
4953
- marginLeft?: string | number | undefined;
4954
- marginRight?: string | number | undefined;
4955
- marginTop?: string | number | undefined;
4956
- marginBottom?: string | number | undefined;
4957
- leftMargin?: string | number | undefined;
4958
- rightMargin?: string | number | undefined;
4959
- topMargin?: string | number | undefined;
4960
- bottomMargin?: string | number | undefined;
4961
- }> | undefined;
4962
- schPinSpacing?: string | number | undefined;
4963
5020
  noSchematicRepresentation?: boolean | undefined;
4964
5021
  }>;
4965
5022
  shouldRenderAsSchematicBox: boolean;
@@ -5575,6 +5632,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
5575
5632
  children: z.ZodOptional<z.ZodAny>;
5576
5633
  symbolName: z.ZodOptional<z.ZodString>;
5577
5634
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
5635
+ obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
5578
5636
  pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
5579
5637
  providesPower: z.ZodOptional<z.ZodBoolean>;
5580
5638
  requiresPower: z.ZodOptional<z.ZodBoolean>;
@@ -5584,7 +5642,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
5584
5642
  requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
5585
5643
  doNotConnect: z.ZodOptional<z.ZodBoolean>;
5586
5644
  includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
5587
- ratsNestColor: z.ZodOptional<z.ZodString>;
5645
+ highlightColor: z.ZodOptional<z.ZodString>;
5588
5646
  }, "strip", z.ZodTypeAny, {
5589
5647
  providesPower?: boolean | undefined;
5590
5648
  requiresPower?: boolean | undefined;
@@ -5594,7 +5652,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
5594
5652
  requiresVoltage?: string | number | undefined;
5595
5653
  doNotConnect?: boolean | undefined;
5596
5654
  includeInBoardPinout?: boolean | undefined;
5597
- ratsNestColor?: string | undefined;
5655
+ highlightColor?: string | undefined;
5598
5656
  }, {
5599
5657
  providesPower?: boolean | undefined;
5600
5658
  requiresPower?: boolean | undefined;
@@ -5604,7 +5662,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
5604
5662
  requiresVoltage?: string | number | undefined;
5605
5663
  doNotConnect?: boolean | undefined;
5606
5664
  includeInBoardPinout?: boolean | undefined;
5607
- ratsNestColor?: string | undefined;
5665
+ highlightColor?: string | undefined;
5608
5666
  }>>>;
5609
5667
  } & {
5610
5668
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
@@ -5894,7 +5952,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
5894
5952
  requiresVoltage?: string | number | undefined;
5895
5953
  doNotConnect?: boolean | undefined;
5896
5954
  includeInBoardPinout?: boolean | undefined;
5897
- ratsNestColor?: string | undefined;
5955
+ highlightColor?: string | undefined;
5898
5956
  }> | undefined;
5899
5957
  cadModel?: string | {
5900
5958
  stlUrl: string;
@@ -6027,6 +6085,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6027
6085
  children?: any;
6028
6086
  symbolName?: string | undefined;
6029
6087
  doNotPlace?: boolean | undefined;
6088
+ obstructsWithinBounds?: boolean | undefined;
6030
6089
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
6031
6090
  schPinArrangement?: {
6032
6091
  leftSize?: number | undefined;
@@ -6054,6 +6113,17 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6054
6113
  topPinCount?: number | undefined;
6055
6114
  bottomPinCount?: number | undefined;
6056
6115
  } | undefined;
6116
+ schPinSpacing?: number | undefined;
6117
+ schPinStyle?: Record<string, {
6118
+ marginLeft?: number | undefined;
6119
+ marginRight?: number | undefined;
6120
+ marginTop?: number | undefined;
6121
+ marginBottom?: number | undefined;
6122
+ leftMargin?: number | undefined;
6123
+ rightMargin?: number | undefined;
6124
+ topMargin?: number | undefined;
6125
+ bottomMargin?: number | undefined;
6126
+ }> | undefined;
6057
6127
  schWidth?: number | undefined;
6058
6128
  schHeight?: number | undefined;
6059
6129
  manufacturerPartNumber?: string | undefined;
@@ -6092,17 +6162,6 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6092
6162
  manufacturerPartNumber?: string | undefined;
6093
6163
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6094
6164
  }[] | undefined;
6095
- schPinStyle?: Record<string, {
6096
- marginLeft?: number | undefined;
6097
- marginRight?: number | undefined;
6098
- marginTop?: number | undefined;
6099
- marginBottom?: number | undefined;
6100
- leftMargin?: number | undefined;
6101
- rightMargin?: number | undefined;
6102
- topMargin?: number | undefined;
6103
- bottomMargin?: number | undefined;
6104
- }> | undefined;
6105
- schPinSpacing?: number | undefined;
6106
6165
  noSchematicRepresentation?: boolean | undefined;
6107
6166
  }, {
6108
6167
  name: string;
@@ -6144,7 +6203,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6144
6203
  requiresVoltage?: string | number | undefined;
6145
6204
  doNotConnect?: boolean | undefined;
6146
6205
  includeInBoardPinout?: boolean | undefined;
6147
- ratsNestColor?: string | undefined;
6206
+ highlightColor?: string | undefined;
6148
6207
  }> | undefined;
6149
6208
  cadModel?: string | {
6150
6209
  stlUrl: string;
@@ -6277,6 +6336,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6277
6336
  children?: any;
6278
6337
  symbolName?: string | undefined;
6279
6338
  doNotPlace?: boolean | undefined;
6339
+ obstructsWithinBounds?: boolean | undefined;
6280
6340
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
6281
6341
  schPinArrangement?: {
6282
6342
  leftSize?: number | undefined;
@@ -6304,6 +6364,17 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6304
6364
  topPinCount?: number | undefined;
6305
6365
  bottomPinCount?: number | undefined;
6306
6366
  } | undefined;
6367
+ schPinSpacing?: string | number | undefined;
6368
+ schPinStyle?: Record<string, {
6369
+ marginLeft?: string | number | undefined;
6370
+ marginRight?: string | number | undefined;
6371
+ marginTop?: string | number | undefined;
6372
+ marginBottom?: string | number | undefined;
6373
+ leftMargin?: string | number | undefined;
6374
+ rightMargin?: string | number | undefined;
6375
+ topMargin?: string | number | undefined;
6376
+ bottomMargin?: string | number | undefined;
6377
+ }> | undefined;
6307
6378
  schWidth?: string | number | undefined;
6308
6379
  schHeight?: string | number | undefined;
6309
6380
  manufacturerPartNumber?: string | undefined;
@@ -6342,17 +6413,6 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
6342
6413
  manufacturerPartNumber?: string | undefined;
6343
6414
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
6344
6415
  }[] | undefined;
6345
- schPinStyle?: Record<string, {
6346
- marginLeft?: string | number | undefined;
6347
- marginRight?: string | number | undefined;
6348
- marginTop?: string | number | undefined;
6349
- marginBottom?: string | number | undefined;
6350
- leftMargin?: string | number | undefined;
6351
- rightMargin?: string | number | undefined;
6352
- topMargin?: string | number | undefined;
6353
- bottomMargin?: string | number | undefined;
6354
- }> | undefined;
6355
- schPinSpacing?: string | number | undefined;
6356
6416
  noSchematicRepresentation?: boolean | undefined;
6357
6417
  }>;
6358
6418
  shouldRenderAsSchematicBox: boolean;
@@ -6963,6 +7023,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
6963
7023
  children: zod.ZodOptional<zod.ZodAny>;
6964
7024
  symbolName: zod.ZodOptional<zod.ZodString>;
6965
7025
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
7026
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
6966
7027
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
6967
7028
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
6968
7029
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -6972,7 +7033,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
6972
7033
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
6973
7034
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
6974
7035
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
6975
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
7036
+ highlightColor: zod.ZodOptional<zod.ZodString>;
6976
7037
  }, "strip", zod.ZodTypeAny, {
6977
7038
  providesPower?: boolean | undefined;
6978
7039
  requiresPower?: boolean | undefined;
@@ -6982,7 +7043,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
6982
7043
  requiresVoltage?: string | number | undefined;
6983
7044
  doNotConnect?: boolean | undefined;
6984
7045
  includeInBoardPinout?: boolean | undefined;
6985
- ratsNestColor?: string | undefined;
7046
+ highlightColor?: string | undefined;
6986
7047
  }, {
6987
7048
  providesPower?: boolean | undefined;
6988
7049
  requiresPower?: boolean | undefined;
@@ -6992,7 +7053,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
6992
7053
  requiresVoltage?: string | number | undefined;
6993
7054
  doNotConnect?: boolean | undefined;
6994
7055
  includeInBoardPinout?: boolean | undefined;
6995
- ratsNestColor?: string | undefined;
7056
+ highlightColor?: string | undefined;
6996
7057
  }>>>;
6997
7058
  } & {
6998
7059
  connections: zod.ZodOptional<zod.ZodRecord<zod.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, zod.ZodUnion<[zod.ZodUnion<[zod.ZodString, zod.ZodReadonly<zod.ZodArray<zod.ZodString, "many">>]>, zod.ZodArray<zod.ZodString, "many">]>>>;
@@ -7043,7 +7104,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7043
7104
  requiresVoltage?: string | number | undefined;
7044
7105
  doNotConnect?: boolean | undefined;
7045
7106
  includeInBoardPinout?: boolean | undefined;
7046
- ratsNestColor?: string | undefined;
7107
+ highlightColor?: string | undefined;
7047
7108
  }> | undefined;
7048
7109
  cadModel?: string | {
7049
7110
  stlUrl: string;
@@ -7176,6 +7237,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7176
7237
  children?: any;
7177
7238
  symbolName?: string | undefined;
7178
7239
  doNotPlace?: boolean | undefined;
7240
+ obstructsWithinBounds?: boolean | undefined;
7179
7241
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
7180
7242
  standard?: boolean | undefined;
7181
7243
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -7224,7 +7286,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7224
7286
  requiresVoltage?: string | number | undefined;
7225
7287
  doNotConnect?: boolean | undefined;
7226
7288
  includeInBoardPinout?: boolean | undefined;
7227
- ratsNestColor?: string | undefined;
7289
+ highlightColor?: string | undefined;
7228
7290
  }> | undefined;
7229
7291
  cadModel?: string | {
7230
7292
  stlUrl: string;
@@ -7357,6 +7419,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7357
7419
  children?: any;
7358
7420
  symbolName?: string | undefined;
7359
7421
  doNotPlace?: boolean | undefined;
7422
+ obstructsWithinBounds?: boolean | undefined;
7360
7423
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
7361
7424
  standard?: boolean | undefined;
7362
7425
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -7405,7 +7468,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7405
7468
  requiresVoltage?: string | number | undefined;
7406
7469
  doNotConnect?: boolean | undefined;
7407
7470
  includeInBoardPinout?: boolean | undefined;
7408
- ratsNestColor?: string | undefined;
7471
+ highlightColor?: string | undefined;
7409
7472
  }> | undefined;
7410
7473
  cadModel?: string | {
7411
7474
  stlUrl: string;
@@ -7538,6 +7601,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7538
7601
  children?: any;
7539
7602
  symbolName?: string | undefined;
7540
7603
  doNotPlace?: boolean | undefined;
7604
+ obstructsWithinBounds?: boolean | undefined;
7541
7605
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
7542
7606
  standard?: boolean | undefined;
7543
7607
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -7586,7 +7650,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7586
7650
  requiresVoltage?: string | number | undefined;
7587
7651
  doNotConnect?: boolean | undefined;
7588
7652
  includeInBoardPinout?: boolean | undefined;
7589
- ratsNestColor?: string | undefined;
7653
+ highlightColor?: string | undefined;
7590
7654
  }> | undefined;
7591
7655
  cadModel?: string | {
7592
7656
  stlUrl: string;
@@ -7719,6 +7783,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7719
7783
  children?: any;
7720
7784
  symbolName?: string | undefined;
7721
7785
  doNotPlace?: boolean | undefined;
7786
+ obstructsWithinBounds?: boolean | undefined;
7722
7787
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
7723
7788
  standard?: boolean | undefined;
7724
7789
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -7773,7 +7838,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7773
7838
  requiresVoltage?: string | number | undefined;
7774
7839
  doNotConnect?: boolean | undefined;
7775
7840
  includeInBoardPinout?: boolean | undefined;
7776
- ratsNestColor?: string | undefined;
7841
+ highlightColor?: string | undefined;
7777
7842
  }> | undefined;
7778
7843
  cadModel?: string | {
7779
7844
  stlUrl: string;
@@ -7906,6 +7971,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7906
7971
  children?: any;
7907
7972
  symbolName?: string | undefined;
7908
7973
  doNotPlace?: boolean | undefined;
7974
+ obstructsWithinBounds?: boolean | undefined;
7909
7975
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
7910
7976
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
7911
7977
  }, {
@@ -7948,7 +8014,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
7948
8014
  requiresVoltage?: string | number | undefined;
7949
8015
  doNotConnect?: boolean | undefined;
7950
8016
  includeInBoardPinout?: boolean | undefined;
7951
- ratsNestColor?: string | undefined;
8017
+ highlightColor?: string | undefined;
7952
8018
  }> | undefined;
7953
8019
  cadModel?: string | {
7954
8020
  stlUrl: string;
@@ -8081,6 +8147,7 @@ declare class Diode extends NormalComponent<typeof diodeProps, PolarizedPassiveP
8081
8147
  children?: any;
8082
8148
  symbolName?: string | undefined;
8083
8149
  doNotPlace?: boolean | undefined;
8150
+ obstructsWithinBounds?: boolean | undefined;
8084
8151
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
8085
8152
  standard?: boolean | undefined;
8086
8153
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -8704,6 +8771,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8704
8771
  children: zod.ZodOptional<zod.ZodAny>;
8705
8772
  symbolName: zod.ZodOptional<zod.ZodString>;
8706
8773
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
8774
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
8707
8775
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
8708
8776
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
8709
8777
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -8713,7 +8781,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8713
8781
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
8714
8782
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
8715
8783
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
8716
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
8784
+ highlightColor: zod.ZodOptional<zod.ZodString>;
8717
8785
  }, "strip", zod.ZodTypeAny, {
8718
8786
  providesPower?: boolean | undefined;
8719
8787
  requiresPower?: boolean | undefined;
@@ -8723,7 +8791,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8723
8791
  requiresVoltage?: string | number | undefined;
8724
8792
  doNotConnect?: boolean | undefined;
8725
8793
  includeInBoardPinout?: boolean | undefined;
8726
- ratsNestColor?: string | undefined;
8794
+ highlightColor?: string | undefined;
8727
8795
  }, {
8728
8796
  providesPower?: boolean | undefined;
8729
8797
  requiresPower?: boolean | undefined;
@@ -8733,7 +8801,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8733
8801
  requiresVoltage?: string | number | undefined;
8734
8802
  doNotConnect?: boolean | undefined;
8735
8803
  includeInBoardPinout?: boolean | undefined;
8736
- ratsNestColor?: string | undefined;
8804
+ highlightColor?: string | undefined;
8737
8805
  }>>>;
8738
8806
  } & {
8739
8807
  currentRating: zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>;
@@ -8780,7 +8848,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8780
8848
  requiresVoltage?: string | number | undefined;
8781
8849
  doNotConnect?: boolean | undefined;
8782
8850
  includeInBoardPinout?: boolean | undefined;
8783
- ratsNestColor?: string | undefined;
8851
+ highlightColor?: string | undefined;
8784
8852
  }> | undefined;
8785
8853
  cadModel?: string | {
8786
8854
  stlUrl: string;
@@ -8913,6 +8981,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8913
8981
  children?: any;
8914
8982
  symbolName?: string | undefined;
8915
8983
  doNotPlace?: boolean | undefined;
8984
+ obstructsWithinBounds?: boolean | undefined;
8916
8985
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
8917
8986
  voltageRating?: string | number | undefined;
8918
8987
  schShowRatings?: boolean | undefined;
@@ -8958,7 +9027,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
8958
9027
  requiresVoltage?: string | number | undefined;
8959
9028
  doNotConnect?: boolean | undefined;
8960
9029
  includeInBoardPinout?: boolean | undefined;
8961
- ratsNestColor?: string | undefined;
9030
+ highlightColor?: string | undefined;
8962
9031
  }> | undefined;
8963
9032
  cadModel?: string | {
8964
9033
  stlUrl: string;
@@ -9091,6 +9160,7 @@ declare class Fuse extends NormalComponent<typeof fuseProps, PassivePorts> {
9091
9160
  children?: any;
9092
9161
  symbolName?: string | undefined;
9093
9162
  doNotPlace?: boolean | undefined;
9163
+ obstructsWithinBounds?: boolean | undefined;
9094
9164
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
9095
9165
  voltageRating?: string | number | undefined;
9096
9166
  schShowRatings?: boolean | undefined;
@@ -9706,6 +9776,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
9706
9776
  children: zod.ZodOptional<zod.ZodAny>;
9707
9777
  symbolName: zod.ZodOptional<zod.ZodString>;
9708
9778
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
9779
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
9709
9780
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
9710
9781
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
9711
9782
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -9715,7 +9786,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
9715
9786
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
9716
9787
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
9717
9788
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
9718
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
9789
+ highlightColor: zod.ZodOptional<zod.ZodString>;
9719
9790
  }, "strip", zod.ZodTypeAny, {
9720
9791
  providesPower?: boolean | undefined;
9721
9792
  requiresPower?: boolean | undefined;
@@ -9725,7 +9796,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
9725
9796
  requiresVoltage?: string | number | undefined;
9726
9797
  doNotConnect?: boolean | undefined;
9727
9798
  includeInBoardPinout?: boolean | undefined;
9728
- ratsNestColor?: string | undefined;
9799
+ highlightColor?: string | undefined;
9729
9800
  }, {
9730
9801
  providesPower?: boolean | undefined;
9731
9802
  requiresPower?: boolean | undefined;
@@ -9735,7 +9806,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
9735
9806
  requiresVoltage?: string | number | undefined;
9736
9807
  doNotConnect?: boolean | undefined;
9737
9808
  includeInBoardPinout?: boolean | undefined;
9738
- ratsNestColor?: string | undefined;
9809
+ highlightColor?: string | undefined;
9739
9810
  }>>>;
9740
9811
  } & {
9741
9812
  manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
@@ -10014,7 +10085,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10014
10085
  requiresVoltage?: string | number | undefined;
10015
10086
  doNotConnect?: boolean | undefined;
10016
10087
  includeInBoardPinout?: boolean | undefined;
10017
- ratsNestColor?: string | undefined;
10088
+ highlightColor?: string | undefined;
10018
10089
  }> | undefined;
10019
10090
  cadModel?: string | {
10020
10091
  stlUrl: string;
@@ -10147,6 +10218,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10147
10218
  children?: any;
10148
10219
  symbolName?: string | undefined;
10149
10220
  doNotPlace?: boolean | undefined;
10221
+ obstructsWithinBounds?: boolean | undefined;
10150
10222
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
10151
10223
  schPinArrangement?: {
10152
10224
  leftSize?: number | undefined;
@@ -10174,6 +10246,17 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10174
10246
  topPinCount?: number | undefined;
10175
10247
  bottomPinCount?: number | undefined;
10176
10248
  } | undefined;
10249
+ schPinSpacing?: number | undefined;
10250
+ schPinStyle?: Record<string, {
10251
+ marginLeft?: number | undefined;
10252
+ marginRight?: number | undefined;
10253
+ marginTop?: number | undefined;
10254
+ marginBottom?: number | undefined;
10255
+ leftMargin?: number | undefined;
10256
+ rightMargin?: number | undefined;
10257
+ topMargin?: number | undefined;
10258
+ bottomMargin?: number | undefined;
10259
+ }> | undefined;
10177
10260
  schWidth?: number | undefined;
10178
10261
  schHeight?: number | undefined;
10179
10262
  manufacturerPartNumber?: string | undefined;
@@ -10206,17 +10289,6 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10206
10289
  topPinCount?: number | undefined;
10207
10290
  bottomPinCount?: number | undefined;
10208
10291
  } | undefined;
10209
- schPinStyle?: Record<string, {
10210
- marginLeft?: number | undefined;
10211
- marginRight?: number | undefined;
10212
- marginTop?: number | undefined;
10213
- marginBottom?: number | undefined;
10214
- leftMargin?: number | undefined;
10215
- rightMargin?: number | undefined;
10216
- topMargin?: number | undefined;
10217
- bottomMargin?: number | undefined;
10218
- }> | undefined;
10219
- schPinSpacing?: number | undefined;
10220
10292
  schDirection?: "left" | "right" | undefined;
10221
10293
  pinCount?: 2 | 3 | undefined;
10222
10294
  }, {
@@ -10259,7 +10331,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10259
10331
  requiresVoltage?: string | number | undefined;
10260
10332
  doNotConnect?: boolean | undefined;
10261
10333
  includeInBoardPinout?: boolean | undefined;
10262
- ratsNestColor?: string | undefined;
10334
+ highlightColor?: string | undefined;
10263
10335
  }> | undefined;
10264
10336
  cadModel?: string | {
10265
10337
  stlUrl: string;
@@ -10392,6 +10464,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10392
10464
  children?: any;
10393
10465
  symbolName?: string | undefined;
10394
10466
  doNotPlace?: boolean | undefined;
10467
+ obstructsWithinBounds?: boolean | undefined;
10395
10468
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
10396
10469
  schPinArrangement?: {
10397
10470
  leftSize?: number | undefined;
@@ -10419,6 +10492,17 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10419
10492
  topPinCount?: number | undefined;
10420
10493
  bottomPinCount?: number | undefined;
10421
10494
  } | undefined;
10495
+ schPinSpacing?: string | number | undefined;
10496
+ schPinStyle?: Record<string, {
10497
+ marginLeft?: string | number | undefined;
10498
+ marginRight?: string | number | undefined;
10499
+ marginTop?: string | number | undefined;
10500
+ marginBottom?: string | number | undefined;
10501
+ leftMargin?: string | number | undefined;
10502
+ rightMargin?: string | number | undefined;
10503
+ topMargin?: string | number | undefined;
10504
+ bottomMargin?: string | number | undefined;
10505
+ }> | undefined;
10422
10506
  schWidth?: string | number | undefined;
10423
10507
  schHeight?: string | number | undefined;
10424
10508
  manufacturerPartNumber?: string | undefined;
@@ -10451,17 +10535,6 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
10451
10535
  topPinCount?: number | undefined;
10452
10536
  bottomPinCount?: number | undefined;
10453
10537
  } | undefined;
10454
- schPinStyle?: Record<string, {
10455
- marginLeft?: string | number | undefined;
10456
- marginRight?: string | number | undefined;
10457
- marginTop?: string | number | undefined;
10458
- marginBottom?: string | number | undefined;
10459
- leftMargin?: string | number | undefined;
10460
- rightMargin?: string | number | undefined;
10461
- topMargin?: string | number | undefined;
10462
- bottomMargin?: string | number | undefined;
10463
- }> | undefined;
10464
- schPinSpacing?: string | number | undefined;
10465
10538
  schDirection?: "left" | "right" | undefined;
10466
10539
  pinCount?: 2 | 3 | undefined;
10467
10540
  }>;
@@ -11079,6 +11152,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11079
11152
  children: zod.ZodOptional<zod.ZodAny>;
11080
11153
  symbolName: zod.ZodOptional<zod.ZodString>;
11081
11154
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
11155
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
11082
11156
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
11083
11157
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
11084
11158
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -11088,7 +11162,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11088
11162
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
11089
11163
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
11090
11164
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
11091
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
11165
+ highlightColor: zod.ZodOptional<zod.ZodString>;
11092
11166
  }, "strip", zod.ZodTypeAny, {
11093
11167
  providesPower?: boolean | undefined;
11094
11168
  requiresPower?: boolean | undefined;
@@ -11098,7 +11172,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11098
11172
  requiresVoltage?: string | number | undefined;
11099
11173
  doNotConnect?: boolean | undefined;
11100
11174
  includeInBoardPinout?: boolean | undefined;
11101
- ratsNestColor?: string | undefined;
11175
+ highlightColor?: string | undefined;
11102
11176
  }, {
11103
11177
  providesPower?: boolean | undefined;
11104
11178
  requiresPower?: boolean | undefined;
@@ -11108,7 +11182,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11108
11182
  requiresVoltage?: string | number | undefined;
11109
11183
  doNotConnect?: boolean | undefined;
11110
11184
  includeInBoardPinout?: boolean | undefined;
11111
- ratsNestColor?: string | undefined;
11185
+ highlightColor?: string | undefined;
11112
11186
  }>>>;
11113
11187
  } & {
11114
11188
  manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
@@ -11390,7 +11464,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11390
11464
  requiresVoltage?: string | number | undefined;
11391
11465
  doNotConnect?: boolean | undefined;
11392
11466
  includeInBoardPinout?: boolean | undefined;
11393
- ratsNestColor?: string | undefined;
11467
+ highlightColor?: string | undefined;
11394
11468
  }> | undefined;
11395
11469
  cadModel?: string | {
11396
11470
  stlUrl: string;
@@ -11523,6 +11597,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11523
11597
  children?: any;
11524
11598
  symbolName?: string | undefined;
11525
11599
  doNotPlace?: boolean | undefined;
11600
+ obstructsWithinBounds?: boolean | undefined;
11526
11601
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
11527
11602
  schPinArrangement?: {
11528
11603
  leftSize?: number | undefined;
@@ -11550,6 +11625,17 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11550
11625
  topPinCount?: number | undefined;
11551
11626
  bottomPinCount?: number | undefined;
11552
11627
  } | undefined;
11628
+ schPinSpacing?: number | undefined;
11629
+ schPinStyle?: Record<string, {
11630
+ marginLeft?: number | undefined;
11631
+ marginRight?: number | undefined;
11632
+ marginTop?: number | undefined;
11633
+ marginBottom?: number | undefined;
11634
+ leftMargin?: number | undefined;
11635
+ rightMargin?: number | undefined;
11636
+ topMargin?: number | undefined;
11637
+ bottomMargin?: number | undefined;
11638
+ }> | undefined;
11553
11639
  schWidth?: number | undefined;
11554
11640
  schHeight?: number | undefined;
11555
11641
  manufacturerPartNumber?: string | undefined;
@@ -11582,17 +11668,6 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11582
11668
  topPinCount?: number | undefined;
11583
11669
  bottomPinCount?: number | undefined;
11584
11670
  } | undefined;
11585
- schPinStyle?: Record<string, {
11586
- marginLeft?: number | undefined;
11587
- marginRight?: number | undefined;
11588
- marginTop?: number | undefined;
11589
- marginBottom?: number | undefined;
11590
- leftMargin?: number | undefined;
11591
- rightMargin?: number | undefined;
11592
- topMargin?: number | undefined;
11593
- bottomMargin?: number | undefined;
11594
- }> | undefined;
11595
- schPinSpacing?: number | undefined;
11596
11671
  schDirection?: "left" | "right" | undefined;
11597
11672
  pinCount?: 2 | 3 | undefined;
11598
11673
  bridgedPins?: string[][] | undefined;
@@ -11637,7 +11712,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11637
11712
  requiresVoltage?: string | number | undefined;
11638
11713
  doNotConnect?: boolean | undefined;
11639
11714
  includeInBoardPinout?: boolean | undefined;
11640
- ratsNestColor?: string | undefined;
11715
+ highlightColor?: string | undefined;
11641
11716
  }> | undefined;
11642
11717
  cadModel?: string | {
11643
11718
  stlUrl: string;
@@ -11770,6 +11845,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11770
11845
  children?: any;
11771
11846
  symbolName?: string | undefined;
11772
11847
  doNotPlace?: boolean | undefined;
11848
+ obstructsWithinBounds?: boolean | undefined;
11773
11849
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
11774
11850
  schPinArrangement?: {
11775
11851
  leftSize?: number | undefined;
@@ -11797,6 +11873,17 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11797
11873
  topPinCount?: number | undefined;
11798
11874
  bottomPinCount?: number | undefined;
11799
11875
  } | undefined;
11876
+ schPinSpacing?: string | number | undefined;
11877
+ schPinStyle?: Record<string, {
11878
+ marginLeft?: string | number | undefined;
11879
+ marginRight?: string | number | undefined;
11880
+ marginTop?: string | number | undefined;
11881
+ marginBottom?: string | number | undefined;
11882
+ leftMargin?: string | number | undefined;
11883
+ rightMargin?: string | number | undefined;
11884
+ topMargin?: string | number | undefined;
11885
+ bottomMargin?: string | number | undefined;
11886
+ }> | undefined;
11800
11887
  schWidth?: string | number | undefined;
11801
11888
  schHeight?: string | number | undefined;
11802
11889
  manufacturerPartNumber?: string | undefined;
@@ -11829,17 +11916,6 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
11829
11916
  topPinCount?: number | undefined;
11830
11917
  bottomPinCount?: number | undefined;
11831
11918
  } | undefined;
11832
- schPinStyle?: Record<string, {
11833
- marginLeft?: string | number | undefined;
11834
- marginRight?: string | number | undefined;
11835
- marginTop?: string | number | undefined;
11836
- marginBottom?: string | number | undefined;
11837
- leftMargin?: string | number | undefined;
11838
- rightMargin?: string | number | undefined;
11839
- topMargin?: string | number | undefined;
11840
- bottomMargin?: string | number | undefined;
11841
- }> | undefined;
11842
- schPinSpacing?: string | number | undefined;
11843
11919
  schDirection?: "left" | "right" | undefined;
11844
11920
  pinCount?: 2 | 3 | undefined;
11845
11921
  bridgedPins?: string[][] | undefined;
@@ -12456,6 +12532,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12456
12532
  children: zod.ZodOptional<zod.ZodAny>;
12457
12533
  symbolName: zod.ZodOptional<zod.ZodString>;
12458
12534
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
12535
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
12459
12536
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
12460
12537
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
12461
12538
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -12465,7 +12542,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12465
12542
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
12466
12543
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
12467
12544
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
12468
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
12545
+ highlightColor: zod.ZodOptional<zod.ZodString>;
12469
12546
  }, "strip", zod.ZodTypeAny, {
12470
12547
  providesPower?: boolean | undefined;
12471
12548
  requiresPower?: boolean | undefined;
@@ -12475,7 +12552,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12475
12552
  requiresVoltage?: string | number | undefined;
12476
12553
  doNotConnect?: boolean | undefined;
12477
12554
  includeInBoardPinout?: boolean | undefined;
12478
- ratsNestColor?: string | undefined;
12555
+ highlightColor?: string | undefined;
12479
12556
  }, {
12480
12557
  providesPower?: boolean | undefined;
12481
12558
  requiresPower?: boolean | undefined;
@@ -12485,7 +12562,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12485
12562
  requiresVoltage?: string | number | undefined;
12486
12563
  doNotConnect?: boolean | undefined;
12487
12564
  includeInBoardPinout?: boolean | undefined;
12488
- ratsNestColor?: string | undefined;
12565
+ highlightColor?: string | undefined;
12489
12566
  }>>>;
12490
12567
  } & {
12491
12568
  color: zod.ZodOptional<zod.ZodString>;
@@ -12532,7 +12609,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12532
12609
  requiresVoltage?: string | number | undefined;
12533
12610
  doNotConnect?: boolean | undefined;
12534
12611
  includeInBoardPinout?: boolean | undefined;
12535
- ratsNestColor?: string | undefined;
12612
+ highlightColor?: string | undefined;
12536
12613
  }> | undefined;
12537
12614
  cadModel?: string | {
12538
12615
  stlUrl: string;
@@ -12665,6 +12742,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12665
12742
  children?: any;
12666
12743
  symbolName?: string | undefined;
12667
12744
  doNotPlace?: boolean | undefined;
12745
+ obstructsWithinBounds?: boolean | undefined;
12668
12746
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
12669
12747
  color?: string | undefined;
12670
12748
  wavelength?: string | undefined;
@@ -12711,7 +12789,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12711
12789
  requiresVoltage?: string | number | undefined;
12712
12790
  doNotConnect?: boolean | undefined;
12713
12791
  includeInBoardPinout?: boolean | undefined;
12714
- ratsNestColor?: string | undefined;
12792
+ highlightColor?: string | undefined;
12715
12793
  }> | undefined;
12716
12794
  cadModel?: string | {
12717
12795
  stlUrl: string;
@@ -12844,6 +12922,7 @@ declare class Led extends NormalComponent<typeof ledProps, PolarizedPassivePorts
12844
12922
  children?: any;
12845
12923
  symbolName?: string | undefined;
12846
12924
  doNotPlace?: boolean | undefined;
12925
+ obstructsWithinBounds?: boolean | undefined;
12847
12926
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
12848
12927
  color?: string | undefined;
12849
12928
  wavelength?: string | undefined;
@@ -13465,6 +13544,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13465
13544
  children: zod.ZodOptional<zod.ZodAny>;
13466
13545
  symbolName: zod.ZodOptional<zod.ZodString>;
13467
13546
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
13547
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
13468
13548
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
13469
13549
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
13470
13550
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -13474,7 +13554,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13474
13554
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
13475
13555
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
13476
13556
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
13477
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
13557
+ highlightColor: zod.ZodOptional<zod.ZodString>;
13478
13558
  }, "strip", zod.ZodTypeAny, {
13479
13559
  providesPower?: boolean | undefined;
13480
13560
  requiresPower?: boolean | undefined;
@@ -13484,7 +13564,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13484
13564
  requiresVoltage?: string | number | undefined;
13485
13565
  doNotConnect?: boolean | undefined;
13486
13566
  includeInBoardPinout?: boolean | undefined;
13487
- ratsNestColor?: string | undefined;
13567
+ highlightColor?: string | undefined;
13488
13568
  }, {
13489
13569
  providesPower?: boolean | undefined;
13490
13570
  requiresPower?: boolean | undefined;
@@ -13494,7 +13574,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13494
13574
  requiresVoltage?: string | number | undefined;
13495
13575
  doNotConnect?: boolean | undefined;
13496
13576
  includeInBoardPinout?: boolean | undefined;
13497
- ratsNestColor?: string | undefined;
13577
+ highlightColor?: string | undefined;
13498
13578
  }>>>;
13499
13579
  } & {
13500
13580
  voltage: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -13537,7 +13617,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13537
13617
  requiresVoltage?: string | number | undefined;
13538
13618
  doNotConnect?: boolean | undefined;
13539
13619
  includeInBoardPinout?: boolean | undefined;
13540
- ratsNestColor?: string | undefined;
13620
+ highlightColor?: string | undefined;
13541
13621
  }> | undefined;
13542
13622
  cadModel?: string | {
13543
13623
  stlUrl: string;
@@ -13670,6 +13750,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13670
13750
  children?: any;
13671
13751
  symbolName?: string | undefined;
13672
13752
  doNotPlace?: boolean | undefined;
13753
+ obstructsWithinBounds?: boolean | undefined;
13673
13754
  }, {
13674
13755
  name: string;
13675
13756
  voltage: string | number;
@@ -13711,7 +13792,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13711
13792
  requiresVoltage?: string | number | undefined;
13712
13793
  doNotConnect?: boolean | undefined;
13713
13794
  includeInBoardPinout?: boolean | undefined;
13714
- ratsNestColor?: string | undefined;
13795
+ highlightColor?: string | undefined;
13715
13796
  }> | undefined;
13716
13797
  cadModel?: string | {
13717
13798
  stlUrl: string;
@@ -13844,6 +13925,7 @@ declare class PowerSource extends NormalComponent<typeof powerSourceProps, Polar
13844
13925
  children?: any;
13845
13926
  symbolName?: string | undefined;
13846
13927
  doNotPlace?: boolean | undefined;
13928
+ obstructsWithinBounds?: boolean | undefined;
13847
13929
  }>;
13848
13930
  sourceFtype: Ftype;
13849
13931
  };
@@ -14463,6 +14545,7 @@ declare const voltageSourceProps: z.ZodObject<{
14463
14545
  children: z.ZodOptional<z.ZodAny>;
14464
14546
  symbolName: z.ZodOptional<z.ZodString>;
14465
14547
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
14548
+ obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
14466
14549
  pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
14467
14550
  providesPower: z.ZodOptional<z.ZodBoolean>;
14468
14551
  requiresPower: z.ZodOptional<z.ZodBoolean>;
@@ -14472,7 +14555,7 @@ declare const voltageSourceProps: z.ZodObject<{
14472
14555
  requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
14473
14556
  doNotConnect: z.ZodOptional<z.ZodBoolean>;
14474
14557
  includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
14475
- ratsNestColor: z.ZodOptional<z.ZodString>;
14558
+ highlightColor: z.ZodOptional<z.ZodString>;
14476
14559
  }, "strip", z.ZodTypeAny, {
14477
14560
  providesPower?: boolean | undefined;
14478
14561
  requiresPower?: boolean | undefined;
@@ -14482,7 +14565,7 @@ declare const voltageSourceProps: z.ZodObject<{
14482
14565
  requiresVoltage?: string | number | undefined;
14483
14566
  doNotConnect?: boolean | undefined;
14484
14567
  includeInBoardPinout?: boolean | undefined;
14485
- ratsNestColor?: string | undefined;
14568
+ highlightColor?: string | undefined;
14486
14569
  }, {
14487
14570
  providesPower?: boolean | undefined;
14488
14571
  requiresPower?: boolean | undefined;
@@ -14492,7 +14575,7 @@ declare const voltageSourceProps: z.ZodObject<{
14492
14575
  requiresVoltage?: string | number | undefined;
14493
14576
  doNotConnect?: boolean | undefined;
14494
14577
  includeInBoardPinout?: boolean | undefined;
14495
- ratsNestColor?: string | undefined;
14578
+ highlightColor?: string | undefined;
14496
14579
  }>>>;
14497
14580
  } & {
14498
14581
  voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -14670,7 +14753,7 @@ declare const voltageSourceProps: z.ZodObject<{
14670
14753
  requiresVoltage?: string | number | undefined;
14671
14754
  doNotConnect?: boolean | undefined;
14672
14755
  includeInBoardPinout?: boolean | undefined;
14673
- ratsNestColor?: string | undefined;
14756
+ highlightColor?: string | undefined;
14674
14757
  }> | undefined;
14675
14758
  peakToPeakVoltage?: number | undefined;
14676
14759
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -14678,6 +14761,7 @@ declare const voltageSourceProps: z.ZodObject<{
14678
14761
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
14679
14762
  symbolName?: string | undefined;
14680
14763
  doNotPlace?: boolean | undefined;
14764
+ obstructsWithinBounds?: boolean | undefined;
14681
14765
  }, {
14682
14766
  name: string;
14683
14767
  symbol?: _tscircuit_props.SymbolProp | undefined;
@@ -14849,7 +14933,7 @@ declare const voltageSourceProps: z.ZodObject<{
14849
14933
  requiresVoltage?: string | number | undefined;
14850
14934
  doNotConnect?: boolean | undefined;
14851
14935
  includeInBoardPinout?: boolean | undefined;
14852
- ratsNestColor?: string | undefined;
14936
+ highlightColor?: string | undefined;
14853
14937
  }> | undefined;
14854
14938
  peakToPeakVoltage?: string | number | undefined;
14855
14939
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -14857,6 +14941,7 @@ declare const voltageSourceProps: z.ZodObject<{
14857
14941
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
14858
14942
  symbolName?: string | undefined;
14859
14943
  doNotPlace?: boolean | undefined;
14944
+ obstructsWithinBounds?: boolean | undefined;
14860
14945
  }>;
14861
14946
  declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "terminal1" | "terminal2"> {
14862
14947
  get config(): {
@@ -15461,6 +15546,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15461
15546
  children: z.ZodOptional<z.ZodAny>;
15462
15547
  symbolName: z.ZodOptional<z.ZodString>;
15463
15548
  doNotPlace: z.ZodOptional<z.ZodBoolean>;
15549
+ obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
15464
15550
  pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
15465
15551
  providesPower: z.ZodOptional<z.ZodBoolean>;
15466
15552
  requiresPower: z.ZodOptional<z.ZodBoolean>;
@@ -15470,7 +15556,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15470
15556
  requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
15471
15557
  doNotConnect: z.ZodOptional<z.ZodBoolean>;
15472
15558
  includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
15473
- ratsNestColor: z.ZodOptional<z.ZodString>;
15559
+ highlightColor: z.ZodOptional<z.ZodString>;
15474
15560
  }, "strip", z.ZodTypeAny, {
15475
15561
  providesPower?: boolean | undefined;
15476
15562
  requiresPower?: boolean | undefined;
@@ -15480,7 +15566,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15480
15566
  requiresVoltage?: string | number | undefined;
15481
15567
  doNotConnect?: boolean | undefined;
15482
15568
  includeInBoardPinout?: boolean | undefined;
15483
- ratsNestColor?: string | undefined;
15569
+ highlightColor?: string | undefined;
15484
15570
  }, {
15485
15571
  providesPower?: boolean | undefined;
15486
15572
  requiresPower?: boolean | undefined;
@@ -15490,7 +15576,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15490
15576
  requiresVoltage?: string | number | undefined;
15491
15577
  doNotConnect?: boolean | undefined;
15492
15578
  includeInBoardPinout?: boolean | undefined;
15493
- ratsNestColor?: string | undefined;
15579
+ highlightColor?: string | undefined;
15494
15580
  }>>>;
15495
15581
  } & {
15496
15582
  voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -15668,7 +15754,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15668
15754
  requiresVoltage?: string | number | undefined;
15669
15755
  doNotConnect?: boolean | undefined;
15670
15756
  includeInBoardPinout?: boolean | undefined;
15671
- ratsNestColor?: string | undefined;
15757
+ highlightColor?: string | undefined;
15672
15758
  }> | undefined;
15673
15759
  peakToPeakVoltage?: number | undefined;
15674
15760
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -15676,6 +15762,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15676
15762
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
15677
15763
  symbolName?: string | undefined;
15678
15764
  doNotPlace?: boolean | undefined;
15765
+ obstructsWithinBounds?: boolean | undefined;
15679
15766
  }, {
15680
15767
  name: string;
15681
15768
  symbol?: _tscircuit_props.SymbolProp | undefined;
@@ -15847,7 +15934,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15847
15934
  requiresVoltage?: string | number | undefined;
15848
15935
  doNotConnect?: boolean | undefined;
15849
15936
  includeInBoardPinout?: boolean | undefined;
15850
- ratsNestColor?: string | undefined;
15937
+ highlightColor?: string | undefined;
15851
15938
  }> | undefined;
15852
15939
  peakToPeakVoltage?: string | number | undefined;
15853
15940
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -15855,6 +15942,7 @@ declare class VoltageSource extends NormalComponent<typeof voltageSourceProps, "
15855
15942
  supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
15856
15943
  symbolName?: string | undefined;
15857
15944
  doNotPlace?: boolean | undefined;
15945
+ obstructsWithinBounds?: boolean | undefined;
15858
15946
  }>;
15859
15947
  sourceFtype: Ftype;
15860
15948
  };
@@ -16471,6 +16559,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16471
16559
  children: zod.ZodOptional<zod.ZodAny>;
16472
16560
  symbolName: zod.ZodOptional<zod.ZodString>;
16473
16561
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
16562
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
16474
16563
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
16475
16564
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
16476
16565
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -16480,7 +16569,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16480
16569
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
16481
16570
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
16482
16571
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
16483
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
16572
+ highlightColor: zod.ZodOptional<zod.ZodString>;
16484
16573
  }, "strip", zod.ZodTypeAny, {
16485
16574
  providesPower?: boolean | undefined;
16486
16575
  requiresPower?: boolean | undefined;
@@ -16490,7 +16579,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16490
16579
  requiresVoltage?: string | number | undefined;
16491
16580
  doNotConnect?: boolean | undefined;
16492
16581
  includeInBoardPinout?: boolean | undefined;
16493
- ratsNestColor?: string | undefined;
16582
+ highlightColor?: string | undefined;
16494
16583
  }, {
16495
16584
  providesPower?: boolean | undefined;
16496
16585
  requiresPower?: boolean | undefined;
@@ -16500,7 +16589,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16500
16589
  requiresVoltage?: string | number | undefined;
16501
16590
  doNotConnect?: boolean | undefined;
16502
16591
  includeInBoardPinout?: boolean | undefined;
16503
- ratsNestColor?: string | undefined;
16592
+ highlightColor?: string | undefined;
16504
16593
  }>>>;
16505
16594
  } & {
16506
16595
  resistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -16549,7 +16638,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16549
16638
  requiresVoltage?: string | number | undefined;
16550
16639
  doNotConnect?: boolean | undefined;
16551
16640
  includeInBoardPinout?: boolean | undefined;
16552
- ratsNestColor?: string | undefined;
16641
+ highlightColor?: string | undefined;
16553
16642
  }> | undefined;
16554
16643
  cadModel?: string | {
16555
16644
  stlUrl: string;
@@ -16682,6 +16771,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16682
16771
  children?: any;
16683
16772
  symbolName?: string | undefined;
16684
16773
  doNotPlace?: boolean | undefined;
16774
+ obstructsWithinBounds?: boolean | undefined;
16685
16775
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
16686
16776
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
16687
16777
  pullupFor?: string | undefined;
@@ -16729,7 +16819,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16729
16819
  requiresVoltage?: string | number | undefined;
16730
16820
  doNotConnect?: boolean | undefined;
16731
16821
  includeInBoardPinout?: boolean | undefined;
16732
- ratsNestColor?: string | undefined;
16822
+ highlightColor?: string | undefined;
16733
16823
  }> | undefined;
16734
16824
  cadModel?: string | {
16735
16825
  stlUrl: string;
@@ -16862,6 +16952,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
16862
16952
  children?: any;
16863
16953
  symbolName?: string | undefined;
16864
16954
  doNotPlace?: boolean | undefined;
16955
+ obstructsWithinBounds?: boolean | undefined;
16865
16956
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
16866
16957
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
16867
16958
  pullupFor?: string | undefined;
@@ -20715,6 +20806,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20715
20806
  children: zod.ZodOptional<zod.ZodAny>;
20716
20807
  symbolName: zod.ZodOptional<zod.ZodString>;
20717
20808
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
20809
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
20718
20810
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
20719
20811
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
20720
20812
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -20724,7 +20816,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20724
20816
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
20725
20817
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
20726
20818
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
20727
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
20819
+ highlightColor: zod.ZodOptional<zod.ZodString>;
20728
20820
  }, "strip", zod.ZodTypeAny, {
20729
20821
  providesPower?: boolean | undefined;
20730
20822
  requiresPower?: boolean | undefined;
@@ -20734,7 +20826,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20734
20826
  requiresVoltage?: string | number | undefined;
20735
20827
  doNotConnect?: boolean | undefined;
20736
20828
  includeInBoardPinout?: boolean | undefined;
20737
- ratsNestColor?: string | undefined;
20829
+ highlightColor?: string | undefined;
20738
20830
  }, {
20739
20831
  providesPower?: boolean | undefined;
20740
20832
  requiresPower?: boolean | undefined;
@@ -20744,7 +20836,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20744
20836
  requiresVoltage?: string | number | undefined;
20745
20837
  doNotConnect?: boolean | undefined;
20746
20838
  includeInBoardPinout?: boolean | undefined;
20747
- ratsNestColor?: string | undefined;
20839
+ highlightColor?: string | undefined;
20748
20840
  }>>>;
20749
20841
  } & {
20750
20842
  capacity: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, number, string | number>>;
@@ -20789,7 +20881,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20789
20881
  requiresVoltage?: string | number | undefined;
20790
20882
  doNotConnect?: boolean | undefined;
20791
20883
  includeInBoardPinout?: boolean | undefined;
20792
- ratsNestColor?: string | undefined;
20884
+ highlightColor?: string | undefined;
20793
20885
  }> | undefined;
20794
20886
  cadModel?: string | {
20795
20887
  stlUrl: string;
@@ -20922,6 +21014,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20922
21014
  children?: any;
20923
21015
  symbolName?: string | undefined;
20924
21016
  doNotPlace?: boolean | undefined;
21017
+ obstructsWithinBounds?: boolean | undefined;
20925
21018
  voltage?: number | undefined;
20926
21019
  capacity?: number | undefined;
20927
21020
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
@@ -20966,7 +21059,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
20966
21059
  requiresVoltage?: string | number | undefined;
20967
21060
  doNotConnect?: boolean | undefined;
20968
21061
  includeInBoardPinout?: boolean | undefined;
20969
- ratsNestColor?: string | undefined;
21062
+ highlightColor?: string | undefined;
20970
21063
  }> | undefined;
20971
21064
  cadModel?: string | {
20972
21065
  stlUrl: string;
@@ -21099,6 +21192,7 @@ declare class Battery extends NormalComponent<typeof batteryProps, PassivePorts>
21099
21192
  children?: any;
21100
21193
  symbolName?: string | undefined;
21101
21194
  doNotPlace?: boolean | undefined;
21195
+ obstructsWithinBounds?: boolean | undefined;
21102
21196
  voltage?: string | number | undefined;
21103
21197
  capacity?: string | number | undefined;
21104
21198
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
@@ -21713,6 +21807,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
21713
21807
  children: zod.ZodOptional<zod.ZodAny>;
21714
21808
  symbolName: zod.ZodOptional<zod.ZodString>;
21715
21809
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
21810
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
21716
21811
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
21717
21812
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
21718
21813
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -21722,7 +21817,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
21722
21817
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
21723
21818
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
21724
21819
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
21725
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
21820
+ highlightColor: zod.ZodOptional<zod.ZodString>;
21726
21821
  }, "strip", zod.ZodTypeAny, {
21727
21822
  providesPower?: boolean | undefined;
21728
21823
  requiresPower?: boolean | undefined;
@@ -21732,7 +21827,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
21732
21827
  requiresVoltage?: string | number | undefined;
21733
21828
  doNotConnect?: boolean | undefined;
21734
21829
  includeInBoardPinout?: boolean | undefined;
21735
- ratsNestColor?: string | undefined;
21830
+ highlightColor?: string | undefined;
21736
21831
  }, {
21737
21832
  providesPower?: boolean | undefined;
21738
21833
  requiresPower?: boolean | undefined;
@@ -21742,7 +21837,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
21742
21837
  requiresVoltage?: string | number | undefined;
21743
21838
  doNotConnect?: boolean | undefined;
21744
21839
  includeInBoardPinout?: boolean | undefined;
21745
- ratsNestColor?: string | undefined;
21840
+ highlightColor?: string | undefined;
21746
21841
  }>>>;
21747
21842
  } & {
21748
21843
  pinCount: zod.ZodNumber;
@@ -21930,7 +22025,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
21930
22025
  requiresVoltage?: string | number | undefined;
21931
22026
  doNotConnect?: boolean | undefined;
21932
22027
  includeInBoardPinout?: boolean | undefined;
21933
- ratsNestColor?: string | undefined;
22028
+ highlightColor?: string | undefined;
21934
22029
  }> | undefined;
21935
22030
  cadModel?: string | {
21936
22031
  stlUrl: string;
@@ -22063,6 +22158,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22063
22158
  children?: any;
22064
22159
  symbolName?: string | undefined;
22065
22160
  doNotPlace?: boolean | undefined;
22161
+ obstructsWithinBounds?: boolean | undefined;
22066
22162
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
22067
22163
  schPinArrangement?: {
22068
22164
  leftSize?: number | undefined;
@@ -22090,10 +22186,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22090
22186
  topPinCount?: number | undefined;
22091
22187
  bottomPinCount?: number | undefined;
22092
22188
  } | undefined;
22093
- schWidth?: number | undefined;
22094
- schHeight?: number | undefined;
22095
- pinLabels?: string[] | Record<string, string> | undefined;
22096
- pcbPinLabels?: Record<string, string> | undefined;
22189
+ schPinSpacing?: number | undefined;
22097
22190
  schPinStyle?: Record<string, {
22098
22191
  marginLeft?: number | undefined;
22099
22192
  marginRight?: number | undefined;
@@ -22104,7 +22197,10 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22104
22197
  topMargin?: number | undefined;
22105
22198
  bottomMargin?: number | undefined;
22106
22199
  }> | undefined;
22107
- schPinSpacing?: number | undefined;
22200
+ schWidth?: number | undefined;
22201
+ schHeight?: number | undefined;
22202
+ pinLabels?: string[] | Record<string, string> | undefined;
22203
+ pcbPinLabels?: Record<string, string> | undefined;
22108
22204
  holeDiameter?: number | undefined;
22109
22205
  pitch?: number | undefined;
22110
22206
  schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
@@ -22155,7 +22251,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22155
22251
  requiresVoltage?: string | number | undefined;
22156
22252
  doNotConnect?: boolean | undefined;
22157
22253
  includeInBoardPinout?: boolean | undefined;
22158
- ratsNestColor?: string | undefined;
22254
+ highlightColor?: string | undefined;
22159
22255
  }> | undefined;
22160
22256
  cadModel?: string | {
22161
22257
  stlUrl: string;
@@ -22288,6 +22384,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22288
22384
  children?: any;
22289
22385
  symbolName?: string | undefined;
22290
22386
  doNotPlace?: boolean | undefined;
22387
+ obstructsWithinBounds?: boolean | undefined;
22291
22388
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
22292
22389
  schPinArrangement?: {
22293
22390
  leftSize?: number | undefined;
@@ -22315,11 +22412,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22315
22412
  topPinCount?: number | undefined;
22316
22413
  bottomPinCount?: number | undefined;
22317
22414
  } | undefined;
22318
- schWidth?: string | number | undefined;
22319
- schHeight?: string | number | undefined;
22320
- gender?: "male" | "female" | "unpopulated" | undefined;
22321
- pinLabels?: string[] | Record<string, string> | undefined;
22322
- pcbPinLabels?: Record<string, string> | undefined;
22415
+ schPinSpacing?: string | number | undefined;
22323
22416
  schPinStyle?: Record<string, {
22324
22417
  marginLeft?: string | number | undefined;
22325
22418
  marginRight?: string | number | undefined;
@@ -22330,7 +22423,11 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
22330
22423
  topMargin?: string | number | undefined;
22331
22424
  bottomMargin?: string | number | undefined;
22332
22425
  }> | undefined;
22333
- schPinSpacing?: string | number | undefined;
22426
+ schWidth?: string | number | undefined;
22427
+ schHeight?: string | number | undefined;
22428
+ gender?: "male" | "female" | "unpopulated" | undefined;
22429
+ pinLabels?: string[] | Record<string, string> | undefined;
22430
+ pcbPinLabels?: Record<string, string> | undefined;
22334
22431
  holeDiameter?: string | number | undefined;
22335
22432
  pitch?: string | number | undefined;
22336
22433
  schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
@@ -22952,6 +23049,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
22952
23049
  children: zod.ZodOptional<zod.ZodAny>;
22953
23050
  symbolName: zod.ZodOptional<zod.ZodString>;
22954
23051
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
23052
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
22955
23053
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
22956
23054
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
22957
23055
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -22961,7 +23059,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
22961
23059
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
22962
23060
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
22963
23061
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
22964
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
23062
+ highlightColor: zod.ZodOptional<zod.ZodString>;
22965
23063
  }, "strip", zod.ZodTypeAny, {
22966
23064
  providesPower?: boolean | undefined;
22967
23065
  requiresPower?: boolean | undefined;
@@ -22971,7 +23069,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
22971
23069
  requiresVoltage?: string | number | undefined;
22972
23070
  doNotConnect?: boolean | undefined;
22973
23071
  includeInBoardPinout?: boolean | undefined;
22974
- ratsNestColor?: string | undefined;
23072
+ highlightColor?: string | undefined;
22975
23073
  }, {
22976
23074
  providesPower?: boolean | undefined;
22977
23075
  requiresPower?: boolean | undefined;
@@ -22981,7 +23079,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
22981
23079
  requiresVoltage?: string | number | undefined;
22982
23080
  doNotConnect?: boolean | undefined;
22983
23081
  includeInBoardPinout?: boolean | undefined;
22984
- ratsNestColor?: string | undefined;
23082
+ highlightColor?: string | undefined;
22985
23083
  }>>>;
22986
23084
  } & {
22987
23085
  frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -23027,7 +23125,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
23027
23125
  requiresVoltage?: string | number | undefined;
23028
23126
  doNotConnect?: boolean | undefined;
23029
23127
  includeInBoardPinout?: boolean | undefined;
23030
- ratsNestColor?: string | undefined;
23128
+ highlightColor?: string | undefined;
23031
23129
  }> | undefined;
23032
23130
  cadModel?: string | {
23033
23131
  stlUrl: string;
@@ -23160,6 +23258,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
23160
23258
  children?: any;
23161
23259
  symbolName?: string | undefined;
23162
23260
  doNotPlace?: boolean | undefined;
23261
+ obstructsWithinBounds?: boolean | undefined;
23163
23262
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
23164
23263
  }, {
23165
23264
  name: string;
@@ -23203,7 +23302,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
23203
23302
  requiresVoltage?: string | number | undefined;
23204
23303
  doNotConnect?: boolean | undefined;
23205
23304
  includeInBoardPinout?: boolean | undefined;
23206
- ratsNestColor?: string | undefined;
23305
+ highlightColor?: string | undefined;
23207
23306
  }> | undefined;
23208
23307
  cadModel?: string | {
23209
23308
  stlUrl: string;
@@ -23336,6 +23435,7 @@ declare class Resonator extends NormalComponent<typeof resonatorProps> {
23336
23435
  children?: any;
23337
23436
  symbolName?: string | undefined;
23338
23437
  doNotPlace?: boolean | undefined;
23438
+ obstructsWithinBounds?: boolean | undefined;
23339
23439
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
23340
23440
  }>;
23341
23441
  shouldRenderAsSchematicBox: boolean;
@@ -23948,6 +24048,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
23948
24048
  children: zod.ZodOptional<zod.ZodAny>;
23949
24049
  symbolName: zod.ZodOptional<zod.ZodString>;
23950
24050
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
24051
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
23951
24052
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
23952
24053
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
23953
24054
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -23957,7 +24058,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
23957
24058
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
23958
24059
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
23959
24060
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
23960
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
24061
+ highlightColor: zod.ZodOptional<zod.ZodString>;
23961
24062
  }, "strip", zod.ZodTypeAny, {
23962
24063
  providesPower?: boolean | undefined;
23963
24064
  requiresPower?: boolean | undefined;
@@ -23967,7 +24068,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
23967
24068
  requiresVoltage?: string | number | undefined;
23968
24069
  doNotConnect?: boolean | undefined;
23969
24070
  includeInBoardPinout?: boolean | undefined;
23970
- ratsNestColor?: string | undefined;
24071
+ highlightColor?: string | undefined;
23971
24072
  }, {
23972
24073
  providesPower?: boolean | undefined;
23973
24074
  requiresPower?: boolean | undefined;
@@ -23977,7 +24078,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
23977
24078
  requiresVoltage?: string | number | undefined;
23978
24079
  doNotConnect?: boolean | undefined;
23979
24080
  includeInBoardPinout?: boolean | undefined;
23980
- ratsNestColor?: string | undefined;
24081
+ highlightColor?: string | undefined;
23981
24082
  }>>>;
23982
24083
  } & {
23983
24084
  inductance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -24023,7 +24124,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
24023
24124
  requiresVoltage?: string | number | undefined;
24024
24125
  doNotConnect?: boolean | undefined;
24025
24126
  includeInBoardPinout?: boolean | undefined;
24026
- ratsNestColor?: string | undefined;
24127
+ highlightColor?: string | undefined;
24027
24128
  }> | undefined;
24028
24129
  cadModel?: string | {
24029
24130
  stlUrl: string;
@@ -24156,6 +24257,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
24156
24257
  children?: any;
24157
24258
  symbolName?: string | undefined;
24158
24259
  doNotPlace?: boolean | undefined;
24260
+ obstructsWithinBounds?: boolean | undefined;
24159
24261
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
24160
24262
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
24161
24263
  maxCurrentRating?: string | number | undefined;
@@ -24200,7 +24302,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
24200
24302
  requiresVoltage?: string | number | undefined;
24201
24303
  doNotConnect?: boolean | undefined;
24202
24304
  includeInBoardPinout?: boolean | undefined;
24203
- ratsNestColor?: string | undefined;
24305
+ highlightColor?: string | undefined;
24204
24306
  }> | undefined;
24205
24307
  cadModel?: string | {
24206
24308
  stlUrl: string;
@@ -24333,6 +24435,7 @@ declare class Inductor extends NormalComponent<typeof inductorProps, PassivePort
24333
24435
  children?: any;
24334
24436
  symbolName?: string | undefined;
24335
24437
  doNotPlace?: boolean | undefined;
24438
+ obstructsWithinBounds?: boolean | undefined;
24336
24439
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
24337
24440
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
24338
24441
  maxCurrentRating?: string | number | undefined;
@@ -24947,6 +25050,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
24947
25050
  children: zod.ZodOptional<zod.ZodAny>;
24948
25051
  symbolName: zod.ZodOptional<zod.ZodString>;
24949
25052
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
25053
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
24950
25054
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
24951
25055
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
24952
25056
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -24956,7 +25060,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
24956
25060
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
24957
25061
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
24958
25062
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
24959
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
25063
+ highlightColor: zod.ZodOptional<zod.ZodString>;
24960
25064
  }, "strip", zod.ZodTypeAny, {
24961
25065
  providesPower?: boolean | undefined;
24962
25066
  requiresPower?: boolean | undefined;
@@ -24966,7 +25070,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
24966
25070
  requiresVoltage?: string | number | undefined;
24967
25071
  doNotConnect?: boolean | undefined;
24968
25072
  includeInBoardPinout?: boolean | undefined;
24969
- ratsNestColor?: string | undefined;
25073
+ highlightColor?: string | undefined;
24970
25074
  }, {
24971
25075
  providesPower?: boolean | undefined;
24972
25076
  requiresPower?: boolean | undefined;
@@ -24976,7 +25080,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
24976
25080
  requiresVoltage?: string | number | undefined;
24977
25081
  doNotConnect?: boolean | undefined;
24978
25082
  includeInBoardPinout?: boolean | undefined;
24979
- ratsNestColor?: string | undefined;
25083
+ highlightColor?: string | undefined;
24980
25084
  }>>>;
24981
25085
  } & {
24982
25086
  maxResistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -25020,7 +25124,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
25020
25124
  requiresVoltage?: string | number | undefined;
25021
25125
  doNotConnect?: boolean | undefined;
25022
25126
  includeInBoardPinout?: boolean | undefined;
25023
- ratsNestColor?: string | undefined;
25127
+ highlightColor?: string | undefined;
25024
25128
  }> | undefined;
25025
25129
  cadModel?: string | {
25026
25130
  stlUrl: string;
@@ -25153,6 +25257,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
25153
25257
  children?: any;
25154
25258
  symbolName?: string | undefined;
25155
25259
  doNotPlace?: boolean | undefined;
25260
+ obstructsWithinBounds?: boolean | undefined;
25156
25261
  pinVariant?: "two_pin" | "three_pin" | undefined;
25157
25262
  }, {
25158
25263
  name: string;
@@ -25195,7 +25300,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
25195
25300
  requiresVoltage?: string | number | undefined;
25196
25301
  doNotConnect?: boolean | undefined;
25197
25302
  includeInBoardPinout?: boolean | undefined;
25198
- ratsNestColor?: string | undefined;
25303
+ highlightColor?: string | undefined;
25199
25304
  }> | undefined;
25200
25305
  cadModel?: string | {
25201
25306
  stlUrl: string;
@@ -25328,6 +25433,7 @@ declare class Potentiometer extends NormalComponent<typeof potentiometerProps> {
25328
25433
  children?: any;
25329
25434
  symbolName?: string | undefined;
25330
25435
  doNotPlace?: boolean | undefined;
25436
+ obstructsWithinBounds?: boolean | undefined;
25331
25437
  pinVariant?: "two_pin" | "three_pin" | undefined;
25332
25438
  }>;
25333
25439
  shouldRenderAsSchematicBox: boolean;
@@ -25939,6 +26045,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
25939
26045
  children: zod.ZodOptional<zod.ZodAny>;
25940
26046
  symbolName: zod.ZodOptional<zod.ZodString>;
25941
26047
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
26048
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
25942
26049
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
25943
26050
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
25944
26051
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -25948,7 +26055,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
25948
26055
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
25949
26056
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
25950
26057
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
25951
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
26058
+ highlightColor: zod.ZodOptional<zod.ZodString>;
25952
26059
  }, "strip", zod.ZodTypeAny, {
25953
26060
  providesPower?: boolean | undefined;
25954
26061
  requiresPower?: boolean | undefined;
@@ -25958,7 +26065,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
25958
26065
  requiresVoltage?: string | number | undefined;
25959
26066
  doNotConnect?: boolean | undefined;
25960
26067
  includeInBoardPinout?: boolean | undefined;
25961
- ratsNestColor?: string | undefined;
26068
+ highlightColor?: string | undefined;
25962
26069
  }, {
25963
26070
  providesPower?: boolean | undefined;
25964
26071
  requiresPower?: boolean | undefined;
@@ -25968,7 +26075,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
25968
26075
  requiresVoltage?: string | number | undefined;
25969
26076
  doNotConnect?: boolean | undefined;
25970
26077
  includeInBoardPinout?: boolean | undefined;
25971
- ratsNestColor?: string | undefined;
26078
+ highlightColor?: string | undefined;
25972
26079
  }>>>;
25973
26080
  } & {
25974
26081
  manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
@@ -26258,7 +26365,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26258
26365
  requiresVoltage?: string | number | undefined;
26259
26366
  doNotConnect?: boolean | undefined;
26260
26367
  includeInBoardPinout?: boolean | undefined;
26261
- ratsNestColor?: string | undefined;
26368
+ highlightColor?: string | undefined;
26262
26369
  }> | undefined;
26263
26370
  cadModel?: string | {
26264
26371
  stlUrl: string;
@@ -26391,6 +26498,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26391
26498
  children?: any;
26392
26499
  symbolName?: string | undefined;
26393
26500
  doNotPlace?: boolean | undefined;
26501
+ obstructsWithinBounds?: boolean | undefined;
26394
26502
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
26395
26503
  schPinArrangement?: {
26396
26504
  leftSize?: number | undefined;
@@ -26418,6 +26526,17 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26418
26526
  topPinCount?: number | undefined;
26419
26527
  bottomPinCount?: number | undefined;
26420
26528
  } | undefined;
26529
+ schPinSpacing?: number | undefined;
26530
+ schPinStyle?: Record<string, {
26531
+ marginLeft?: number | undefined;
26532
+ marginRight?: number | undefined;
26533
+ marginTop?: number | undefined;
26534
+ marginBottom?: number | undefined;
26535
+ leftMargin?: number | undefined;
26536
+ rightMargin?: number | undefined;
26537
+ topMargin?: number | undefined;
26538
+ bottomMargin?: number | undefined;
26539
+ }> | undefined;
26421
26540
  schWidth?: number | undefined;
26422
26541
  schHeight?: number | undefined;
26423
26542
  manufacturerPartNumber?: string | undefined;
@@ -26456,17 +26575,6 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26456
26575
  manufacturerPartNumber?: string | undefined;
26457
26576
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26458
26577
  }[] | undefined;
26459
- schPinStyle?: Record<string, {
26460
- marginLeft?: number | undefined;
26461
- marginRight?: number | undefined;
26462
- marginTop?: number | undefined;
26463
- marginBottom?: number | undefined;
26464
- leftMargin?: number | undefined;
26465
- rightMargin?: number | undefined;
26466
- topMargin?: number | undefined;
26467
- bottomMargin?: number | undefined;
26468
- }> | undefined;
26469
- schPinSpacing?: number | undefined;
26470
26578
  noSchematicRepresentation?: boolean | undefined;
26471
26579
  }, {
26472
26580
  name: string;
@@ -26508,7 +26616,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26508
26616
  requiresVoltage?: string | number | undefined;
26509
26617
  doNotConnect?: boolean | undefined;
26510
26618
  includeInBoardPinout?: boolean | undefined;
26511
- ratsNestColor?: string | undefined;
26619
+ highlightColor?: string | undefined;
26512
26620
  }> | undefined;
26513
26621
  cadModel?: string | {
26514
26622
  stlUrl: string;
@@ -26641,6 +26749,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26641
26749
  children?: any;
26642
26750
  symbolName?: string | undefined;
26643
26751
  doNotPlace?: boolean | undefined;
26752
+ obstructsWithinBounds?: boolean | undefined;
26644
26753
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
26645
26754
  schPinArrangement?: {
26646
26755
  leftSize?: number | undefined;
@@ -26668,6 +26777,17 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26668
26777
  topPinCount?: number | undefined;
26669
26778
  bottomPinCount?: number | undefined;
26670
26779
  } | undefined;
26780
+ schPinSpacing?: string | number | undefined;
26781
+ schPinStyle?: Record<string, {
26782
+ marginLeft?: string | number | undefined;
26783
+ marginRight?: string | number | undefined;
26784
+ marginTop?: string | number | undefined;
26785
+ marginBottom?: string | number | undefined;
26786
+ leftMargin?: string | number | undefined;
26787
+ rightMargin?: string | number | undefined;
26788
+ topMargin?: string | number | undefined;
26789
+ bottomMargin?: string | number | undefined;
26790
+ }> | undefined;
26671
26791
  schWidth?: string | number | undefined;
26672
26792
  schHeight?: string | number | undefined;
26673
26793
  manufacturerPartNumber?: string | undefined;
@@ -26706,17 +26826,6 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
26706
26826
  manufacturerPartNumber?: string | undefined;
26707
26827
  supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26708
26828
  }[] | undefined;
26709
- schPinStyle?: Record<string, {
26710
- marginLeft?: string | number | undefined;
26711
- marginRight?: string | number | undefined;
26712
- marginTop?: string | number | undefined;
26713
- marginBottom?: string | number | undefined;
26714
- leftMargin?: string | number | undefined;
26715
- rightMargin?: string | number | undefined;
26716
- topMargin?: string | number | undefined;
26717
- bottomMargin?: string | number | undefined;
26718
- }> | undefined;
26719
- schPinSpacing?: string | number | undefined;
26720
26829
  noSchematicRepresentation?: boolean | undefined;
26721
26830
  }>;
26722
26831
  sourceFtype: "simple_push_button";
@@ -27329,6 +27438,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27329
27438
  children: zod.ZodOptional<zod.ZodAny>;
27330
27439
  symbolName: zod.ZodOptional<zod.ZodString>;
27331
27440
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
27441
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
27332
27442
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
27333
27443
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
27334
27444
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -27338,7 +27448,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27338
27448
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
27339
27449
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
27340
27450
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
27341
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
27451
+ highlightColor: zod.ZodOptional<zod.ZodString>;
27342
27452
  }, "strip", zod.ZodTypeAny, {
27343
27453
  providesPower?: boolean | undefined;
27344
27454
  requiresPower?: boolean | undefined;
@@ -27348,7 +27458,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27348
27458
  requiresVoltage?: string | number | undefined;
27349
27459
  doNotConnect?: boolean | undefined;
27350
27460
  includeInBoardPinout?: boolean | undefined;
27351
- ratsNestColor?: string | undefined;
27461
+ highlightColor?: string | undefined;
27352
27462
  }, {
27353
27463
  providesPower?: boolean | undefined;
27354
27464
  requiresPower?: boolean | undefined;
@@ -27358,7 +27468,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27358
27468
  requiresVoltage?: string | number | undefined;
27359
27469
  doNotConnect?: boolean | undefined;
27360
27470
  includeInBoardPinout?: boolean | undefined;
27361
- ratsNestColor?: string | undefined;
27471
+ highlightColor?: string | undefined;
27362
27472
  }>>>;
27363
27473
  } & {
27364
27474
  frequency: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
@@ -27408,7 +27518,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27408
27518
  requiresVoltage?: string | number | undefined;
27409
27519
  doNotConnect?: boolean | undefined;
27410
27520
  includeInBoardPinout?: boolean | undefined;
27411
- ratsNestColor?: string | undefined;
27521
+ highlightColor?: string | undefined;
27412
27522
  }> | undefined;
27413
27523
  cadModel?: string | {
27414
27524
  stlUrl: string;
@@ -27541,6 +27651,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27541
27651
  children?: any;
27542
27652
  symbolName?: string | undefined;
27543
27653
  doNotPlace?: boolean | undefined;
27654
+ obstructsWithinBounds?: boolean | undefined;
27544
27655
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
27545
27656
  manufacturerPartNumber?: string | undefined;
27546
27657
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -27588,7 +27699,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27588
27699
  requiresVoltage?: string | number | undefined;
27589
27700
  doNotConnect?: boolean | undefined;
27590
27701
  includeInBoardPinout?: boolean | undefined;
27591
- ratsNestColor?: string | undefined;
27702
+ highlightColor?: string | undefined;
27592
27703
  }> | undefined;
27593
27704
  cadModel?: string | {
27594
27705
  stlUrl: string;
@@ -27721,6 +27832,7 @@ declare class Crystal extends NormalComponent<typeof crystalProps, PolarizedPass
27721
27832
  children?: any;
27722
27833
  symbolName?: string | undefined;
27723
27834
  doNotPlace?: boolean | undefined;
27835
+ obstructsWithinBounds?: boolean | undefined;
27724
27836
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
27725
27837
  manufacturerPartNumber?: string | undefined;
27726
27838
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -28337,6 +28449,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28337
28449
  children: zod.ZodOptional<zod.ZodAny>;
28338
28450
  symbolName: zod.ZodOptional<zod.ZodString>;
28339
28451
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
28452
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
28340
28453
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
28341
28454
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
28342
28455
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -28346,7 +28459,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28346
28459
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
28347
28460
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
28348
28461
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
28349
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
28462
+ highlightColor: zod.ZodOptional<zod.ZodString>;
28350
28463
  }, "strip", zod.ZodTypeAny, {
28351
28464
  providesPower?: boolean | undefined;
28352
28465
  requiresPower?: boolean | undefined;
@@ -28356,7 +28469,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28356
28469
  requiresVoltage?: string | number | undefined;
28357
28470
  doNotConnect?: boolean | undefined;
28358
28471
  includeInBoardPinout?: boolean | undefined;
28359
- ratsNestColor?: string | undefined;
28472
+ highlightColor?: string | undefined;
28360
28473
  }, {
28361
28474
  providesPower?: boolean | undefined;
28362
28475
  requiresPower?: boolean | undefined;
@@ -28366,7 +28479,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28366
28479
  requiresVoltage?: string | number | undefined;
28367
28480
  doNotConnect?: boolean | undefined;
28368
28481
  includeInBoardPinout?: boolean | undefined;
28369
- ratsNestColor?: string | undefined;
28482
+ highlightColor?: string | undefined;
28370
28483
  }>>>;
28371
28484
  } & {
28372
28485
  type: zod.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
@@ -28410,7 +28523,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28410
28523
  requiresVoltage?: string | number | undefined;
28411
28524
  doNotConnect?: boolean | undefined;
28412
28525
  includeInBoardPinout?: boolean | undefined;
28413
- ratsNestColor?: string | undefined;
28526
+ highlightColor?: string | undefined;
28414
28527
  }> | undefined;
28415
28528
  cadModel?: string | {
28416
28529
  stlUrl: string;
@@ -28543,6 +28656,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28543
28656
  children?: any;
28544
28657
  symbolName?: string | undefined;
28545
28658
  doNotPlace?: boolean | undefined;
28659
+ obstructsWithinBounds?: boolean | undefined;
28546
28660
  connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
28547
28661
  }, {
28548
28662
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
@@ -28585,7 +28699,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28585
28699
  requiresVoltage?: string | number | undefined;
28586
28700
  doNotConnect?: boolean | undefined;
28587
28701
  includeInBoardPinout?: boolean | undefined;
28588
- ratsNestColor?: string | undefined;
28702
+ highlightColor?: string | undefined;
28589
28703
  }> | undefined;
28590
28704
  cadModel?: string | {
28591
28705
  stlUrl: string;
@@ -28718,6 +28832,7 @@ declare class Transistor extends NormalComponent<typeof transistorProps, Transis
28718
28832
  children?: any;
28719
28833
  symbolName?: string | undefined;
28720
28834
  doNotPlace?: boolean | undefined;
28835
+ obstructsWithinBounds?: boolean | undefined;
28721
28836
  connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
28722
28837
  }>;
28723
28838
  sourceFtype: Ftype;
@@ -29335,6 +29450,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29335
29450
  children: zod.ZodOptional<zod.ZodAny>;
29336
29451
  symbolName: zod.ZodOptional<zod.ZodString>;
29337
29452
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
29453
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
29338
29454
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
29339
29455
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
29340
29456
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -29344,7 +29460,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29344
29460
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
29345
29461
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
29346
29462
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
29347
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
29463
+ highlightColor: zod.ZodOptional<zod.ZodString>;
29348
29464
  }, "strip", zod.ZodTypeAny, {
29349
29465
  providesPower?: boolean | undefined;
29350
29466
  requiresPower?: boolean | undefined;
@@ -29354,7 +29470,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29354
29470
  requiresVoltage?: string | number | undefined;
29355
29471
  doNotConnect?: boolean | undefined;
29356
29472
  includeInBoardPinout?: boolean | undefined;
29357
- ratsNestColor?: string | undefined;
29473
+ highlightColor?: string | undefined;
29358
29474
  }, {
29359
29475
  providesPower?: boolean | undefined;
29360
29476
  requiresPower?: boolean | undefined;
@@ -29364,7 +29480,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29364
29480
  requiresVoltage?: string | number | undefined;
29365
29481
  doNotConnect?: boolean | undefined;
29366
29482
  includeInBoardPinout?: boolean | undefined;
29367
- ratsNestColor?: string | undefined;
29483
+ highlightColor?: string | undefined;
29368
29484
  }>>>;
29369
29485
  } & {
29370
29486
  channelType: zod.ZodEnum<["n", "p"]>;
@@ -29409,7 +29525,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29409
29525
  requiresVoltage?: string | number | undefined;
29410
29526
  doNotConnect?: boolean | undefined;
29411
29527
  includeInBoardPinout?: boolean | undefined;
29412
- ratsNestColor?: string | undefined;
29528
+ highlightColor?: string | undefined;
29413
29529
  }> | undefined;
29414
29530
  cadModel?: string | {
29415
29531
  stlUrl: string;
@@ -29542,6 +29658,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29542
29658
  children?: any;
29543
29659
  symbolName?: string | undefined;
29544
29660
  doNotPlace?: boolean | undefined;
29661
+ obstructsWithinBounds?: boolean | undefined;
29545
29662
  }, {
29546
29663
  name: string;
29547
29664
  channelType: "n" | "p";
@@ -29584,7 +29701,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29584
29701
  requiresVoltage?: string | number | undefined;
29585
29702
  doNotConnect?: boolean | undefined;
29586
29703
  includeInBoardPinout?: boolean | undefined;
29587
- ratsNestColor?: string | undefined;
29704
+ highlightColor?: string | undefined;
29588
29705
  }> | undefined;
29589
29706
  cadModel?: string | {
29590
29707
  stlUrl: string;
@@ -29717,6 +29834,7 @@ declare class Mosfet extends NormalComponent<typeof mosfetProps> {
29717
29834
  children?: any;
29718
29835
  symbolName?: string | undefined;
29719
29836
  doNotPlace?: boolean | undefined;
29837
+ obstructsWithinBounds?: boolean | undefined;
29720
29838
  }>;
29721
29839
  shouldRenderAsSchematicBox: boolean;
29722
29840
  };
@@ -30327,6 +30445,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30327
30445
  children: zod.ZodOptional<zod.ZodAny>;
30328
30446
  symbolName: zod.ZodOptional<zod.ZodString>;
30329
30447
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
30448
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
30330
30449
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
30331
30450
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
30332
30451
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -30336,7 +30455,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30336
30455
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
30337
30456
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
30338
30457
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
30339
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
30458
+ highlightColor: zod.ZodOptional<zod.ZodString>;
30340
30459
  }, "strip", zod.ZodTypeAny, {
30341
30460
  providesPower?: boolean | undefined;
30342
30461
  requiresPower?: boolean | undefined;
@@ -30346,7 +30465,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30346
30465
  requiresVoltage?: string | number | undefined;
30347
30466
  doNotConnect?: boolean | undefined;
30348
30467
  includeInBoardPinout?: boolean | undefined;
30349
- ratsNestColor?: string | undefined;
30468
+ highlightColor?: string | undefined;
30350
30469
  }, {
30351
30470
  providesPower?: boolean | undefined;
30352
30471
  requiresPower?: boolean | undefined;
@@ -30356,7 +30475,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30356
30475
  requiresVoltage?: string | number | undefined;
30357
30476
  doNotConnect?: boolean | undefined;
30358
30477
  includeInBoardPinout?: boolean | undefined;
30359
- ratsNestColor?: string | undefined;
30478
+ highlightColor?: string | undefined;
30360
30479
  }>>>;
30361
30480
  } & {
30362
30481
  type: zod.ZodOptional<zod.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
@@ -30405,7 +30524,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30405
30524
  requiresVoltage?: string | number | undefined;
30406
30525
  doNotConnect?: boolean | undefined;
30407
30526
  includeInBoardPinout?: boolean | undefined;
30408
- ratsNestColor?: string | undefined;
30527
+ highlightColor?: string | undefined;
30409
30528
  }> | undefined;
30410
30529
  cadModel?: string | {
30411
30530
  stlUrl: string;
@@ -30538,6 +30657,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30538
30657
  children?: any;
30539
30658
  symbolName?: string | undefined;
30540
30659
  doNotPlace?: boolean | undefined;
30660
+ obstructsWithinBounds?: boolean | undefined;
30541
30661
  spst?: boolean | undefined;
30542
30662
  spdt?: boolean | undefined;
30543
30663
  dpst?: boolean | undefined;
@@ -30583,7 +30703,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30583
30703
  requiresVoltage?: string | number | undefined;
30584
30704
  doNotConnect?: boolean | undefined;
30585
30705
  includeInBoardPinout?: boolean | undefined;
30586
- ratsNestColor?: string | undefined;
30706
+ highlightColor?: string | undefined;
30587
30707
  }> | undefined;
30588
30708
  cadModel?: string | {
30589
30709
  stlUrl: string;
@@ -30716,6 +30836,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30716
30836
  children?: any;
30717
30837
  symbolName?: string | undefined;
30718
30838
  doNotPlace?: boolean | undefined;
30839
+ obstructsWithinBounds?: boolean | undefined;
30719
30840
  spst?: boolean | undefined;
30720
30841
  spdt?: boolean | undefined;
30721
30842
  dpst?: boolean | undefined;
@@ -30762,7 +30883,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30762
30883
  requiresVoltage?: string | number | undefined;
30763
30884
  doNotConnect?: boolean | undefined;
30764
30885
  includeInBoardPinout?: boolean | undefined;
30765
- ratsNestColor?: string | undefined;
30886
+ highlightColor?: string | undefined;
30766
30887
  }> | undefined;
30767
30888
  cadModel?: string | {
30768
30889
  stlUrl: string;
@@ -30895,6 +31016,7 @@ declare class Switch extends NormalComponent<typeof switchProps> {
30895
31016
  children?: any;
30896
31017
  symbolName?: string | undefined;
30897
31018
  doNotPlace?: boolean | undefined;
31019
+ obstructsWithinBounds?: boolean | undefined;
30898
31020
  spst?: boolean | undefined;
30899
31021
  spdt?: boolean | undefined;
30900
31022
  dpst?: boolean | undefined;
@@ -31509,6 +31631,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31509
31631
  children: zod.ZodOptional<zod.ZodAny>;
31510
31632
  symbolName: zod.ZodOptional<zod.ZodString>;
31511
31633
  doNotPlace: zod.ZodOptional<zod.ZodBoolean>;
31634
+ obstructsWithinBounds: zod.ZodOptional<zod.ZodBoolean>;
31512
31635
  pinAttributes: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodObject<{
31513
31636
  providesPower: zod.ZodOptional<zod.ZodBoolean>;
31514
31637
  requiresPower: zod.ZodOptional<zod.ZodBoolean>;
@@ -31518,7 +31641,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31518
31641
  requiresVoltage: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
31519
31642
  doNotConnect: zod.ZodOptional<zod.ZodBoolean>;
31520
31643
  includeInBoardPinout: zod.ZodOptional<zod.ZodBoolean>;
31521
- ratsNestColor: zod.ZodOptional<zod.ZodString>;
31644
+ highlightColor: zod.ZodOptional<zod.ZodString>;
31522
31645
  }, "strip", zod.ZodTypeAny, {
31523
31646
  providesPower?: boolean | undefined;
31524
31647
  requiresPower?: boolean | undefined;
@@ -31528,7 +31651,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31528
31651
  requiresVoltage?: string | number | undefined;
31529
31652
  doNotConnect?: boolean | undefined;
31530
31653
  includeInBoardPinout?: boolean | undefined;
31531
- ratsNestColor?: string | undefined;
31654
+ highlightColor?: string | undefined;
31532
31655
  }, {
31533
31656
  providesPower?: boolean | undefined;
31534
31657
  requiresPower?: boolean | undefined;
@@ -31538,7 +31661,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31538
31661
  requiresVoltage?: string | number | undefined;
31539
31662
  doNotConnect?: boolean | undefined;
31540
31663
  includeInBoardPinout?: boolean | undefined;
31541
- ratsNestColor?: string | undefined;
31664
+ highlightColor?: string | undefined;
31542
31665
  }>>>;
31543
31666
  } & {
31544
31667
  footprintVariant: zod.ZodOptional<zod.ZodEnum<["pad", "through_hole"]>>;
@@ -31586,7 +31709,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31586
31709
  requiresVoltage?: string | number | undefined;
31587
31710
  doNotConnect?: boolean | undefined;
31588
31711
  includeInBoardPinout?: boolean | undefined;
31589
- ratsNestColor?: string | undefined;
31712
+ highlightColor?: string | undefined;
31590
31713
  }> | undefined;
31591
31714
  cadModel?: string | {
31592
31715
  stlUrl: string;
@@ -31719,6 +31842,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31719
31842
  children?: any;
31720
31843
  symbolName?: string | undefined;
31721
31844
  doNotPlace?: boolean | undefined;
31845
+ obstructsWithinBounds?: boolean | undefined;
31722
31846
  width?: number | undefined;
31723
31847
  height?: number | undefined;
31724
31848
  holeDiameter?: number | undefined;
@@ -31764,7 +31888,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31764
31888
  requiresVoltage?: string | number | undefined;
31765
31889
  doNotConnect?: boolean | undefined;
31766
31890
  includeInBoardPinout?: boolean | undefined;
31767
- ratsNestColor?: string | undefined;
31891
+ highlightColor?: string | undefined;
31768
31892
  }> | undefined;
31769
31893
  cadModel?: string | {
31770
31894
  stlUrl: string;
@@ -31897,6 +32021,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31897
32021
  children?: any;
31898
32022
  symbolName?: string | undefined;
31899
32023
  doNotPlace?: boolean | undefined;
32024
+ obstructsWithinBounds?: boolean | undefined;
31900
32025
  width?: string | number | undefined;
31901
32026
  height?: string | number | undefined;
31902
32027
  holeDiameter?: string | number | undefined;
@@ -31942,7 +32067,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
31942
32067
  requiresVoltage?: string | number | undefined;
31943
32068
  doNotConnect?: boolean | undefined;
31944
32069
  includeInBoardPinout?: boolean | undefined;
31945
- ratsNestColor?: string | undefined;
32070
+ highlightColor?: string | undefined;
31946
32071
  }> | undefined;
31947
32072
  cadModel?: string | {
31948
32073
  stlUrl: string;
@@ -32075,6 +32200,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
32075
32200
  children?: any;
32076
32201
  symbolName?: string | undefined;
32077
32202
  doNotPlace?: boolean | undefined;
32203
+ obstructsWithinBounds?: boolean | undefined;
32078
32204
  width?: number | undefined;
32079
32205
  height?: number | undefined;
32080
32206
  holeDiameter?: number | undefined;
@@ -32120,7 +32246,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
32120
32246
  requiresVoltage?: string | number | undefined;
32121
32247
  doNotConnect?: boolean | undefined;
32122
32248
  includeInBoardPinout?: boolean | undefined;
32123
- ratsNestColor?: string | undefined;
32249
+ highlightColor?: string | undefined;
32124
32250
  }> | undefined;
32125
32251
  cadModel?: string | {
32126
32252
  stlUrl: string;
@@ -32253,6 +32379,7 @@ declare class TestPoint extends NormalComponent<typeof testpointProps> {
32253
32379
  children?: any;
32254
32380
  symbolName?: string | undefined;
32255
32381
  doNotPlace?: boolean | undefined;
32382
+ obstructsWithinBounds?: boolean | undefined;
32256
32383
  width?: string | number | undefined;
32257
32384
  height?: string | number | undefined;
32258
32385
  holeDiameter?: string | number | undefined;
@@ -32783,7 +32910,7 @@ declare const useLed: <PropsFromHook extends Omit<{
32783
32910
  requiresVoltage?: string | number | undefined;
32784
32911
  doNotConnect?: boolean | undefined;
32785
32912
  includeInBoardPinout?: boolean | undefined;
32786
- ratsNestColor?: string | undefined;
32913
+ highlightColor?: string | undefined;
32787
32914
  }> | undefined;
32788
32915
  cadModel?: string | {
32789
32916
  stlUrl: string;
@@ -32916,6 +33043,7 @@ declare const useLed: <PropsFromHook extends Omit<{
32916
33043
  children?: any;
32917
33044
  symbolName?: string | undefined;
32918
33045
  doNotPlace?: boolean | undefined;
33046
+ obstructsWithinBounds?: boolean | undefined;
32919
33047
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
32920
33048
  color?: string | undefined;
32921
33049
  wavelength?: string | undefined;
@@ -32962,7 +33090,7 @@ declare const useLed: <PropsFromHook extends Omit<{
32962
33090
  requiresVoltage?: string | number | undefined;
32963
33091
  doNotConnect?: boolean | undefined;
32964
33092
  includeInBoardPinout?: boolean | undefined;
32965
- ratsNestColor?: string | undefined;
33093
+ highlightColor?: string | undefined;
32966
33094
  }> | undefined;
32967
33095
  cadModel?: string | {
32968
33096
  stlUrl: string;
@@ -33095,6 +33223,7 @@ declare const useLed: <PropsFromHook extends Omit<{
33095
33223
  children?: any;
33096
33224
  symbolName?: string | undefined;
33097
33225
  doNotPlace?: boolean | undefined;
33226
+ obstructsWithinBounds?: boolean | undefined;
33098
33227
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
33099
33228
  color?: string | undefined;
33100
33229
  wavelength?: string | undefined;