@tscircuit/props 0.0.354 → 0.0.356

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -255,6 +255,7 @@ export interface CadAssemblyProps {
255
255
  ```ts
256
256
  export interface CadModelProps extends CadModelBase {
257
257
  modelUrl: string;
258
+ stepUrl?: string;
258
259
  pcbX?: Distance;
259
260
  pcbY?: Distance;
260
261
  pcbZ?: Distance;
package/dist/index.d.ts CHANGED
@@ -43763,6 +43763,81 @@ declare const fabricationNoteTextProps: z.ZodObject<{
43763
43763
  }>;
43764
43764
  type FabricationNoteTextProps = z.input<typeof fabricationNoteTextProps>;
43765
43765
 
43766
+ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
43767
+ pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43768
+ pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43769
+ pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43770
+ pcbPositionAnchor: z.ZodOptional<z.ZodString>;
43771
+ layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
43772
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
43773
+ }, "strip", z.ZodTypeAny, {
43774
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
43775
+ }, {
43776
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
43777
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
43778
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
43779
+ }>>;
43780
+ pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43781
+ pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43782
+ pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43783
+ pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43784
+ pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43785
+ pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43786
+ pcbRelative: z.ZodOptional<z.ZodBoolean>;
43787
+ relative: z.ZodOptional<z.ZodBoolean>;
43788
+ }, "pcbRotation"> & {
43789
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
43790
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
43791
+ strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43792
+ isFilled: z.ZodOptional<z.ZodBoolean>;
43793
+ hasStroke: z.ZodOptional<z.ZodBoolean>;
43794
+ isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
43795
+ color: z.ZodOptional<z.ZodString>;
43796
+ }, "strip", z.ZodTypeAny, {
43797
+ width: number;
43798
+ height: number;
43799
+ pcbX?: number | undefined;
43800
+ pcbY?: number | undefined;
43801
+ pcbPositionAnchor?: string | undefined;
43802
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
43803
+ pcbMarginTop?: number | undefined;
43804
+ pcbMarginRight?: number | undefined;
43805
+ pcbMarginBottom?: number | undefined;
43806
+ pcbMarginLeft?: number | undefined;
43807
+ pcbMarginX?: number | undefined;
43808
+ pcbMarginY?: number | undefined;
43809
+ pcbRelative?: boolean | undefined;
43810
+ relative?: boolean | undefined;
43811
+ strokeWidth?: number | undefined;
43812
+ color?: string | undefined;
43813
+ isFilled?: boolean | undefined;
43814
+ hasStroke?: boolean | undefined;
43815
+ isStrokeDashed?: boolean | undefined;
43816
+ }, {
43817
+ width: string | number;
43818
+ height: string | number;
43819
+ pcbX?: string | number | undefined;
43820
+ pcbY?: string | number | undefined;
43821
+ pcbPositionAnchor?: string | undefined;
43822
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
43823
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
43824
+ } | undefined;
43825
+ pcbMarginTop?: string | number | undefined;
43826
+ pcbMarginRight?: string | number | undefined;
43827
+ pcbMarginBottom?: string | number | undefined;
43828
+ pcbMarginLeft?: string | number | undefined;
43829
+ pcbMarginX?: string | number | undefined;
43830
+ pcbMarginY?: string | number | undefined;
43831
+ pcbRelative?: boolean | undefined;
43832
+ relative?: boolean | undefined;
43833
+ strokeWidth?: string | number | undefined;
43834
+ color?: string | undefined;
43835
+ isFilled?: boolean | undefined;
43836
+ hasStroke?: boolean | undefined;
43837
+ isStrokeDashed?: boolean | undefined;
43838
+ }>;
43839
+ type FabricationNoteRectProps = z.input<typeof fabricationNoteRectProps>;
43840
+
43766
43841
  declare const fabricationNotePathProps: z.ZodObject<Omit<{
43767
43842
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
43768
43843
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -45619,6 +45694,161 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
45619
45694
  }>]>;
45620
45695
  type PcbKeepoutProps = z.input<typeof pcbKeepoutProps>;
45621
45696
 
45697
+ declare const courtyardRectProps: z.ZodObject<Omit<{
45698
+ pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45699
+ pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45700
+ pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45701
+ pcbPositionAnchor: z.ZodOptional<z.ZodString>;
45702
+ layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
45703
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
45704
+ }, "strip", z.ZodTypeAny, {
45705
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45706
+ }, {
45707
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45708
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
45709
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45710
+ }>>;
45711
+ pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45712
+ pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45713
+ pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45714
+ pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45715
+ pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45716
+ pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45717
+ pcbRelative: z.ZodOptional<z.ZodBoolean>;
45718
+ relative: z.ZodOptional<z.ZodBoolean>;
45719
+ }, "pcbRotation"> & {
45720
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
45721
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
45722
+ strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45723
+ isFilled: z.ZodOptional<z.ZodBoolean>;
45724
+ hasStroke: z.ZodOptional<z.ZodBoolean>;
45725
+ isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
45726
+ color: z.ZodOptional<z.ZodString>;
45727
+ }, "strip", z.ZodTypeAny, {
45728
+ width: number;
45729
+ height: number;
45730
+ pcbX?: number | undefined;
45731
+ pcbY?: number | undefined;
45732
+ pcbPositionAnchor?: string | undefined;
45733
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
45734
+ pcbMarginTop?: number | undefined;
45735
+ pcbMarginRight?: number | undefined;
45736
+ pcbMarginBottom?: number | undefined;
45737
+ pcbMarginLeft?: number | undefined;
45738
+ pcbMarginX?: number | undefined;
45739
+ pcbMarginY?: number | undefined;
45740
+ pcbRelative?: boolean | undefined;
45741
+ relative?: boolean | undefined;
45742
+ strokeWidth?: number | undefined;
45743
+ color?: string | undefined;
45744
+ isFilled?: boolean | undefined;
45745
+ hasStroke?: boolean | undefined;
45746
+ isStrokeDashed?: boolean | undefined;
45747
+ }, {
45748
+ width: string | number;
45749
+ height: string | number;
45750
+ pcbX?: string | number | undefined;
45751
+ pcbY?: string | number | undefined;
45752
+ pcbPositionAnchor?: string | undefined;
45753
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
45754
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45755
+ } | undefined;
45756
+ pcbMarginTop?: string | number | undefined;
45757
+ pcbMarginRight?: string | number | undefined;
45758
+ pcbMarginBottom?: string | number | undefined;
45759
+ pcbMarginLeft?: string | number | undefined;
45760
+ pcbMarginX?: string | number | undefined;
45761
+ pcbMarginY?: string | number | undefined;
45762
+ pcbRelative?: boolean | undefined;
45763
+ relative?: boolean | undefined;
45764
+ strokeWidth?: string | number | undefined;
45765
+ color?: string | undefined;
45766
+ isFilled?: boolean | undefined;
45767
+ hasStroke?: boolean | undefined;
45768
+ isStrokeDashed?: boolean | undefined;
45769
+ }>;
45770
+ type CourtyardRectProps = z.input<typeof courtyardRectProps>;
45771
+
45772
+ declare const courtyardOutlineProps: z.ZodObject<Omit<{
45773
+ pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45774
+ pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45775
+ pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45776
+ pcbPositionAnchor: z.ZodOptional<z.ZodString>;
45777
+ layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
45778
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
45779
+ }, "strip", z.ZodTypeAny, {
45780
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45781
+ }, {
45782
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45783
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
45784
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45785
+ }>>;
45786
+ pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45787
+ pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45788
+ pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45789
+ pcbMarginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45790
+ pcbMarginX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45791
+ pcbMarginY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45792
+ pcbRelative: z.ZodOptional<z.ZodBoolean>;
45793
+ relative: z.ZodOptional<z.ZodBoolean>;
45794
+ }, "pcbX" | "pcbY" | "pcbRotation"> & {
45795
+ outline: z.ZodArray<z.ZodObject<{
45796
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
45797
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
45798
+ }, "strip", z.ZodTypeAny, {
45799
+ x: number;
45800
+ y: number;
45801
+ }, {
45802
+ x: string | number;
45803
+ y: string | number;
45804
+ }>, "many">;
45805
+ strokeWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45806
+ isClosed: z.ZodOptional<z.ZodBoolean>;
45807
+ isStrokeDashed: z.ZodOptional<z.ZodBoolean>;
45808
+ color: z.ZodOptional<z.ZodString>;
45809
+ }, "strip", z.ZodTypeAny, {
45810
+ outline: {
45811
+ x: number;
45812
+ y: number;
45813
+ }[];
45814
+ pcbPositionAnchor?: string | undefined;
45815
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
45816
+ pcbMarginTop?: number | undefined;
45817
+ pcbMarginRight?: number | undefined;
45818
+ pcbMarginBottom?: number | undefined;
45819
+ pcbMarginLeft?: number | undefined;
45820
+ pcbMarginX?: number | undefined;
45821
+ pcbMarginY?: number | undefined;
45822
+ pcbRelative?: boolean | undefined;
45823
+ relative?: boolean | undefined;
45824
+ strokeWidth?: number | undefined;
45825
+ color?: string | undefined;
45826
+ isStrokeDashed?: boolean | undefined;
45827
+ isClosed?: boolean | undefined;
45828
+ }, {
45829
+ outline: {
45830
+ x: string | number;
45831
+ y: string | number;
45832
+ }[];
45833
+ pcbPositionAnchor?: string | undefined;
45834
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
45835
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
45836
+ } | undefined;
45837
+ pcbMarginTop?: string | number | undefined;
45838
+ pcbMarginRight?: string | number | undefined;
45839
+ pcbMarginBottom?: string | number | undefined;
45840
+ pcbMarginLeft?: string | number | undefined;
45841
+ pcbMarginX?: string | number | undefined;
45842
+ pcbMarginY?: string | number | undefined;
45843
+ pcbRelative?: boolean | undefined;
45844
+ relative?: boolean | undefined;
45845
+ strokeWidth?: string | number | undefined;
45846
+ color?: string | undefined;
45847
+ isStrokeDashed?: boolean | undefined;
45848
+ isClosed?: boolean | undefined;
45849
+ }>;
45850
+ type CourtyardOutlineProps = z.input<typeof courtyardOutlineProps>;
45851
+
45622
45852
  interface CopperPourProps {
45623
45853
  name?: string;
45624
45854
  layer: LayerRefInput;
@@ -45695,6 +45925,7 @@ type CadAssemblyPropsInput = z.input<typeof cadassemblyProps>;
45695
45925
 
45696
45926
  interface CadModelProps extends CadModelBase {
45697
45927
  modelUrl: string;
45928
+ stepUrl?: string;
45698
45929
  pcbX?: Distance;
45699
45930
  pcbY?: Distance;
45700
45931
  pcbZ?: Distance;
@@ -45742,6 +45973,7 @@ declare const cadmodelProps: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
45742
45973
  modelUnitToMmScale: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45743
45974
  } & {
45744
45975
  modelUrl: z.ZodString;
45976
+ stepUrl: z.ZodOptional<z.ZodString>;
45745
45977
  } & {
45746
45978
  pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
45747
45979
  pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -45764,6 +45996,7 @@ declare const cadmodelProps: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
45764
45996
  z: number;
45765
45997
  } | undefined;
45766
45998
  modelUnitToMmScale?: number | undefined;
45999
+ stepUrl?: string | undefined;
45767
46000
  pcbX?: number | undefined;
45768
46001
  pcbY?: number | undefined;
45769
46002
  pcbZ?: number | undefined;
@@ -45785,6 +46018,7 @@ declare const cadmodelProps: z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
45785
46018
  z: string | number;
45786
46019
  } | undefined;
45787
46020
  modelUnitToMmScale?: string | number | undefined;
46021
+ stepUrl?: string | undefined;
45788
46022
  pcbX?: string | number | undefined;
45789
46023
  pcbY?: string | number | undefined;
45790
46024
  pcbZ?: string | number | undefined;
@@ -48968,8 +49202,8 @@ declare const schematicCircleProps: z.ZodObject<{
48968
49202
  };
48969
49203
  radius: number;
48970
49204
  color: string;
48971
- isDashed: boolean;
48972
49205
  isFilled: boolean;
49206
+ isDashed: boolean;
48973
49207
  strokeWidth?: number | undefined;
48974
49208
  fillColor?: string | undefined;
48975
49209
  }, {
@@ -48980,8 +49214,8 @@ declare const schematicCircleProps: z.ZodObject<{
48980
49214
  radius: string | number;
48981
49215
  strokeWidth?: string | number | undefined;
48982
49216
  color?: string | undefined;
48983
- isDashed?: boolean | undefined;
48984
49217
  isFilled?: boolean | undefined;
49218
+ isDashed?: boolean | undefined;
48985
49219
  fillColor?: string | undefined;
48986
49220
  }>;
48987
49221
  type SchematicCircleProps = z.input<typeof schematicCircleProps>;
@@ -49001,8 +49235,8 @@ declare const schematicRectProps: z.ZodObject<{
49001
49235
  width: number;
49002
49236
  height: number;
49003
49237
  color: string;
49004
- isDashed: boolean;
49005
49238
  isFilled: boolean;
49239
+ isDashed: boolean;
49006
49240
  rotation: number;
49007
49241
  schX?: number | undefined;
49008
49242
  schY?: number | undefined;
@@ -49015,8 +49249,8 @@ declare const schematicRectProps: z.ZodObject<{
49015
49249
  schY?: string | number | undefined;
49016
49250
  strokeWidth?: string | number | undefined;
49017
49251
  color?: string | undefined;
49018
- isDashed?: boolean | undefined;
49019
49252
  isFilled?: boolean | undefined;
49253
+ isDashed?: boolean | undefined;
49020
49254
  fillColor?: string | undefined;
49021
49255
  rotation?: string | number | undefined;
49022
49256
  }>;
@@ -49960,4 +50194,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
49960
50194
  }
49961
50195
  declare const projectConfig: z.ZodType<ProjectConfig>;
49962
50196
 
49963
- export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
50197
+ export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CourtyardOutlineProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type KicadAutocompleteStringPath, type KicadPath, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, courtyardOutlineProps, courtyardRectProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, symbolProp, symbolProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };