@tscircuit/core 0.0.1006 → 0.0.1008
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +933 -219
- package/dist/index.js +83 -12
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as circuit_json from 'circuit-json';
|
|
2
2
|
import { PcbTraceError, PcbPlacementError, PcbManualEditConflictWarning, PcbViaClearanceError, LayerRef, AnyCircuitElement, Size, AnySourceComponent, PcbTraceRoutePoint, PcbTrace as PcbTrace$1, PcbVia, SchematicPort, SchematicComponent, RouteHintPoint, CircuitJson } from 'circuit-json';
|
|
3
3
|
import * as _tscircuit_props from '@tscircuit/props';
|
|
4
|
-
import { PlatformConfig, subcircuitGroupProps, AutorouterConfig, traceProps, SupplierPartNumbers, CadModelProp, SchematicPortArrangement, groupProps, boardProps, subpanelProps, capacitorProps, chipProps, pinoutProps, diodeProps, fuseProps, jumperProps, interconnectProps, solderjumperProps, ledProps, powerSourceProps, voltageSourceProps, currentSourceProps, resistorProps, constraintProps, fabricationNoteRectProps, fabricationNotePathProps, fabricationNoteTextProps, fabricationNoteDimensionProps, pcbNoteLineProps, pcbNoteRectProps, pcbNoteTextProps, pcbNotePathProps, pcbNoteDimensionProps, footprintProps, subcircuitProps, breakoutProps, breakoutPointProps, holeProps, pcbKeepoutProps, netLabelProps, cadmodelProps, cadassemblyProps, platedHoleProps, silkscreenCircleProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, silkscreenLineProps, smtPadProps, fiducialProps, traceHintProps, viaProps, copperPourProps, copperTextProps, cutoutProps, batteryProps, pinHeaderProps, resonatorProps, inductorProps, potentiometerProps, pushButtonProps, crystalProps, transistorProps, mosfetProps, opampProps, OpAmpPinLabels, switchProps, SwitchProps, testpointProps, schematicTextProps, schematicLineProps, schematicRectProps, schematicArcProps, schematicCircleProps, schematicPathProps, schematicBoxProps, schematicTableProps, schematicRowProps, schematicCellProps, symbolProps, analogSimulationProps, voltageProbeProps, CapacitorProps, ChipProps, DiodeProps, ResistorProps, ManualEditEvent, ManualEditsFile, ChipConnections, manual_edits_file } from '@tscircuit/props';
|
|
4
|
+
import { PlatformConfig, subcircuitGroupProps, AutorouterConfig, traceProps, SupplierPartNumbers, CadModelProp, SchematicPortArrangement, groupProps, boardProps, subpanelProps, capacitorProps, chipProps, pinoutProps, diodeProps, fuseProps, jumperProps, interconnectProps, solderjumperProps, ledProps, powerSourceProps, voltageSourceProps, currentSourceProps, resistorProps, constraintProps, fabricationNoteRectProps, fabricationNotePathProps, fabricationNoteTextProps, fabricationNoteDimensionProps, pcbNoteLineProps, pcbNoteRectProps, pcbNoteTextProps, pcbNotePathProps, pcbNoteDimensionProps, footprintProps, subcircuitProps, breakoutProps, breakoutPointProps, holeProps, pcbKeepoutProps, netLabelProps, cadmodelProps, cadassemblyProps, platedHoleProps, courtyardCircleProps, silkscreenCircleProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, silkscreenLineProps, smtPadProps, fiducialProps, traceHintProps, viaProps, copperPourProps, copperTextProps, cutoutProps, batteryProps, pinHeaderProps, resonatorProps, inductorProps, potentiometerProps, pushButtonProps, crystalProps, transistorProps, mosfetProps, opampProps, OpAmpPinLabels, switchProps, SwitchProps, testpointProps, schematicTextProps, schematicLineProps, schematicRectProps, schematicArcProps, schematicCircleProps, schematicPathProps, schematicBoxProps, schematicTableProps, schematicRowProps, schematicCellProps, symbolProps, analogSimulationProps, voltageProbeProps, CapacitorProps, ChipProps, DiodeProps, ResistorProps, ManualEditEvent, ManualEditsFile, ChipConnections, manual_edits_file } from '@tscircuit/props';
|
|
5
5
|
import * as react from 'react';
|
|
6
6
|
import react__default, { ReactElement, DetailedHTMLProps, SVGProps } from 'react';
|
|
7
7
|
export { createElement } from 'react';
|
|
@@ -781,25 +781,117 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
781
781
|
trace_width?: string | number | undefined;
|
|
782
782
|
}>, "many">>;
|
|
783
783
|
pcbPathRelativeTo: z.ZodOptional<z.ZodString>;
|
|
784
|
-
pcbPath: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
784
|
+
pcbPath: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
785
785
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
786
786
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
787
|
+
} & {
|
|
788
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
789
|
+
fromLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
790
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
791
|
+
}, "strip", z.ZodTypeAny, {
|
|
792
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
793
|
+
}, {
|
|
794
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
795
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
796
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
797
|
+
}>>;
|
|
798
|
+
toLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
799
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
800
|
+
}, "strip", z.ZodTypeAny, {
|
|
801
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
802
|
+
}, {
|
|
803
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
804
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
805
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
806
|
+
}>>;
|
|
787
807
|
}, "strip", z.ZodTypeAny, {
|
|
788
808
|
x: number;
|
|
789
809
|
y: number;
|
|
810
|
+
via?: boolean | undefined;
|
|
811
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
812
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
790
813
|
}, {
|
|
791
814
|
x: string | number;
|
|
792
815
|
y: string | number;
|
|
816
|
+
via?: boolean | undefined;
|
|
817
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
818
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
819
|
+
} | undefined;
|
|
820
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
821
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
822
|
+
} | undefined;
|
|
823
|
+
}>, {
|
|
824
|
+
x: number;
|
|
825
|
+
y: number;
|
|
826
|
+
via?: boolean | undefined;
|
|
827
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
828
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
829
|
+
}, {
|
|
830
|
+
x: string | number;
|
|
831
|
+
y: string | number;
|
|
832
|
+
via?: boolean | undefined;
|
|
833
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
834
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
835
|
+
} | undefined;
|
|
836
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
837
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
838
|
+
} | undefined;
|
|
793
839
|
}>, z.ZodString]>, "many">>;
|
|
794
|
-
pcbPaths: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
840
|
+
pcbPaths: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
795
841
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
796
842
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
843
|
+
} & {
|
|
844
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
845
|
+
fromLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
846
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
847
|
+
}, "strip", z.ZodTypeAny, {
|
|
848
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
849
|
+
}, {
|
|
850
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
851
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
852
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
853
|
+
}>>;
|
|
854
|
+
toLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
855
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
856
|
+
}, "strip", z.ZodTypeAny, {
|
|
857
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
858
|
+
}, {
|
|
859
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
860
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
861
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
862
|
+
}>>;
|
|
797
863
|
}, "strip", z.ZodTypeAny, {
|
|
798
864
|
x: number;
|
|
799
865
|
y: number;
|
|
866
|
+
via?: boolean | undefined;
|
|
867
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
868
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
800
869
|
}, {
|
|
801
870
|
x: string | number;
|
|
802
871
|
y: string | number;
|
|
872
|
+
via?: boolean | undefined;
|
|
873
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
874
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
875
|
+
} | undefined;
|
|
876
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
877
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
878
|
+
} | undefined;
|
|
879
|
+
}>, {
|
|
880
|
+
x: number;
|
|
881
|
+
y: number;
|
|
882
|
+
via?: boolean | undefined;
|
|
883
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
884
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
885
|
+
}, {
|
|
886
|
+
x: string | number;
|
|
887
|
+
y: string | number;
|
|
888
|
+
via?: boolean | undefined;
|
|
889
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
890
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
891
|
+
} | undefined;
|
|
892
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
893
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
894
|
+
} | undefined;
|
|
803
895
|
}>, z.ZodString]>, "many">, "many">>;
|
|
804
896
|
pcbStraightLine: z.ZodOptional<z.ZodBoolean>;
|
|
805
897
|
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -838,10 +930,16 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
838
930
|
pcbPath?: (string | {
|
|
839
931
|
x: number;
|
|
840
932
|
y: number;
|
|
933
|
+
via?: boolean | undefined;
|
|
934
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
935
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
841
936
|
})[] | undefined;
|
|
842
937
|
pcbPaths?: (string | {
|
|
843
938
|
x: number;
|
|
844
939
|
y: number;
|
|
940
|
+
via?: boolean | undefined;
|
|
941
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
942
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
845
943
|
})[][] | undefined;
|
|
846
944
|
pcbStraightLine?: boolean | undefined;
|
|
847
945
|
schDisplayLabel?: string | undefined;
|
|
@@ -873,10 +971,24 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
873
971
|
pcbPath?: (string | {
|
|
874
972
|
x: string | number;
|
|
875
973
|
y: string | number;
|
|
974
|
+
via?: boolean | undefined;
|
|
975
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
976
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
977
|
+
} | undefined;
|
|
978
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
979
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
980
|
+
} | undefined;
|
|
876
981
|
})[] | undefined;
|
|
877
982
|
pcbPaths?: (string | {
|
|
878
983
|
x: string | number;
|
|
879
984
|
y: string | number;
|
|
985
|
+
via?: boolean | undefined;
|
|
986
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
987
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
988
|
+
} | undefined;
|
|
989
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
990
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
991
|
+
} | undefined;
|
|
880
992
|
})[][] | undefined;
|
|
881
993
|
pcbStraightLine?: boolean | undefined;
|
|
882
994
|
schDisplayLabel?: string | undefined;
|
|
@@ -925,25 +1037,117 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
925
1037
|
trace_width?: string | number | undefined;
|
|
926
1038
|
}>, "many">>;
|
|
927
1039
|
pcbPathRelativeTo: z.ZodOptional<z.ZodString>;
|
|
928
|
-
pcbPath: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1040
|
+
pcbPath: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
929
1041
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
930
1042
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1043
|
+
} & {
|
|
1044
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
1045
|
+
fromLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1046
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1047
|
+
}, "strip", z.ZodTypeAny, {
|
|
1048
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1049
|
+
}, {
|
|
1050
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1051
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1052
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1053
|
+
}>>;
|
|
1054
|
+
toLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1055
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1056
|
+
}, "strip", z.ZodTypeAny, {
|
|
1057
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1058
|
+
}, {
|
|
1059
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1060
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1061
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1062
|
+
}>>;
|
|
931
1063
|
}, "strip", z.ZodTypeAny, {
|
|
932
1064
|
x: number;
|
|
933
1065
|
y: number;
|
|
1066
|
+
via?: boolean | undefined;
|
|
1067
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1068
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
934
1069
|
}, {
|
|
935
1070
|
x: string | number;
|
|
936
1071
|
y: string | number;
|
|
1072
|
+
via?: boolean | undefined;
|
|
1073
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1074
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1077
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1078
|
+
} | undefined;
|
|
1079
|
+
}>, {
|
|
1080
|
+
x: number;
|
|
1081
|
+
y: number;
|
|
1082
|
+
via?: boolean | undefined;
|
|
1083
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1084
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1085
|
+
}, {
|
|
1086
|
+
x: string | number;
|
|
1087
|
+
y: string | number;
|
|
1088
|
+
via?: boolean | undefined;
|
|
1089
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1090
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1091
|
+
} | undefined;
|
|
1092
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1093
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1094
|
+
} | undefined;
|
|
937
1095
|
}>, z.ZodString]>, "many">>;
|
|
938
|
-
pcbPaths: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1096
|
+
pcbPaths: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
939
1097
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
940
1098
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1099
|
+
} & {
|
|
1100
|
+
via: z.ZodOptional<z.ZodBoolean>;
|
|
1101
|
+
fromLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1102
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1103
|
+
}, "strip", z.ZodTypeAny, {
|
|
1104
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1105
|
+
}, {
|
|
1106
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1107
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1108
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1109
|
+
}>>;
|
|
1110
|
+
toLayer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1111
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1112
|
+
}, "strip", z.ZodTypeAny, {
|
|
1113
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1114
|
+
}, {
|
|
1115
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1116
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1117
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1118
|
+
}>>;
|
|
941
1119
|
}, "strip", z.ZodTypeAny, {
|
|
942
1120
|
x: number;
|
|
943
1121
|
y: number;
|
|
1122
|
+
via?: boolean | undefined;
|
|
1123
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1124
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1125
|
+
}, {
|
|
1126
|
+
x: string | number;
|
|
1127
|
+
y: string | number;
|
|
1128
|
+
via?: boolean | undefined;
|
|
1129
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1130
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1131
|
+
} | undefined;
|
|
1132
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1133
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1134
|
+
} | undefined;
|
|
1135
|
+
}>, {
|
|
1136
|
+
x: number;
|
|
1137
|
+
y: number;
|
|
1138
|
+
via?: boolean | undefined;
|
|
1139
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1140
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
944
1141
|
}, {
|
|
945
1142
|
x: string | number;
|
|
946
1143
|
y: string | number;
|
|
1144
|
+
via?: boolean | undefined;
|
|
1145
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1146
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1147
|
+
} | undefined;
|
|
1148
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1149
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1150
|
+
} | undefined;
|
|
947
1151
|
}>, z.ZodString]>, "many">, "many">>;
|
|
948
1152
|
pcbStraightLine: z.ZodOptional<z.ZodBoolean>;
|
|
949
1153
|
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -990,10 +1194,16 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
990
1194
|
pcbPath?: (string | {
|
|
991
1195
|
x: number;
|
|
992
1196
|
y: number;
|
|
1197
|
+
via?: boolean | undefined;
|
|
1198
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1199
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
993
1200
|
})[] | undefined;
|
|
994
1201
|
pcbPaths?: (string | {
|
|
995
1202
|
x: number;
|
|
996
1203
|
y: number;
|
|
1204
|
+
via?: boolean | undefined;
|
|
1205
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
1206
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
997
1207
|
})[][] | undefined;
|
|
998
1208
|
pcbStraightLine?: boolean | undefined;
|
|
999
1209
|
schDisplayLabel?: string | undefined;
|
|
@@ -1028,10 +1238,24 @@ declare class Trace extends PrimitiveComponent<typeof traceProps> implements Tra
|
|
|
1028
1238
|
pcbPath?: (string | {
|
|
1029
1239
|
x: string | number;
|
|
1030
1240
|
y: string | number;
|
|
1241
|
+
via?: boolean | undefined;
|
|
1242
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1243
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1244
|
+
} | undefined;
|
|
1245
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1246
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1247
|
+
} | undefined;
|
|
1031
1248
|
})[] | undefined;
|
|
1032
1249
|
pcbPaths?: (string | {
|
|
1033
1250
|
x: string | number;
|
|
1034
1251
|
y: string | number;
|
|
1252
|
+
via?: boolean | undefined;
|
|
1253
|
+
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1254
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1255
|
+
} | undefined;
|
|
1256
|
+
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
1257
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
1258
|
+
} | undefined;
|
|
1035
1259
|
})[][] | undefined;
|
|
1036
1260
|
pcbStraightLine?: boolean | undefined;
|
|
1037
1261
|
schDisplayLabel?: string | undefined;
|
|
@@ -1978,7 +2202,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
1978
2202
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
1979
2203
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
1980
2204
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
1981
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
2205
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
1982
2206
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
1983
2207
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
1984
2208
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -1987,8 +2211,14 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
1987
2211
|
}, {
|
|
1988
2212
|
pins: (string | number)[];
|
|
1989
2213
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2214
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
2215
|
+
pins: (string | number)[];
|
|
2216
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2217
|
+
}, (string | number)[] | {
|
|
2218
|
+
pins: (string | number)[];
|
|
2219
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
1990
2220
|
}>>;
|
|
1991
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
2221
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
1992
2222
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
1993
2223
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
1994
2224
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -1997,8 +2227,14 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
1997
2227
|
}, {
|
|
1998
2228
|
pins: (string | number)[];
|
|
1999
2229
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2230
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
2231
|
+
pins: (string | number)[];
|
|
2232
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2233
|
+
}, (string | number)[] | {
|
|
2234
|
+
pins: (string | number)[];
|
|
2235
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2000
2236
|
}>>;
|
|
2001
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
2237
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
2002
2238
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2003
2239
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2004
2240
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -2007,8 +2243,14 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2007
2243
|
}, {
|
|
2008
2244
|
pins: (string | number)[];
|
|
2009
2245
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2246
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
2247
|
+
pins: (string | number)[];
|
|
2248
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2249
|
+
}, (string | number)[] | {
|
|
2250
|
+
pins: (string | number)[];
|
|
2251
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2010
2252
|
}>>;
|
|
2011
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
2253
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
2012
2254
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
2013
2255
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
2014
2256
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -2017,6 +2259,12 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2017
2259
|
}, {
|
|
2018
2260
|
pins: (string | number)[];
|
|
2019
2261
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2262
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
2263
|
+
pins: (string | number)[];
|
|
2264
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2265
|
+
}, (string | number)[] | {
|
|
2266
|
+
pins: (string | number)[];
|
|
2267
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2020
2268
|
}>>;
|
|
2021
2269
|
}, "strip", zod.ZodTypeAny, {
|
|
2022
2270
|
leftSize?: number | undefined;
|
|
@@ -2048,19 +2296,19 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2048
2296
|
topSize?: number | undefined;
|
|
2049
2297
|
rightSize?: number | undefined;
|
|
2050
2298
|
bottomSize?: number | undefined;
|
|
2051
|
-
leftSide?: {
|
|
2299
|
+
leftSide?: (string | number)[] | {
|
|
2052
2300
|
pins: (string | number)[];
|
|
2053
2301
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2054
2302
|
} | undefined;
|
|
2055
|
-
topSide?: {
|
|
2303
|
+
topSide?: (string | number)[] | {
|
|
2056
2304
|
pins: (string | number)[];
|
|
2057
2305
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2058
2306
|
} | undefined;
|
|
2059
|
-
rightSide?: {
|
|
2307
|
+
rightSide?: (string | number)[] | {
|
|
2060
2308
|
pins: (string | number)[];
|
|
2061
2309
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2062
2310
|
} | undefined;
|
|
2063
|
-
bottomSide?: {
|
|
2311
|
+
bottomSide?: (string | number)[] | {
|
|
2064
2312
|
pins: (string | number)[];
|
|
2065
2313
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2066
2314
|
} | undefined;
|
|
@@ -2274,6 +2522,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2274
2522
|
minTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
2275
2523
|
nominalTraceWidth: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
2276
2524
|
partsEngine: zod.ZodOptional<zod.ZodType<_tscircuit_props.PartsEngine, zod.ZodTypeDef, _tscircuit_props.PartsEngine>>;
|
|
2525
|
+
_subcircuitCachingEnabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
2277
2526
|
pcbRouteCache: zod.ZodOptional<zod.ZodType<_tscircuit_props.PcbRouteCache, zod.ZodTypeDef, _tscircuit_props.PcbRouteCache>>;
|
|
2278
2527
|
autorouter: zod.ZodOptional<zod.ZodType<_tscircuit_props.AutorouterProp, zod.ZodTypeDef, _tscircuit_props.AutorouterProp>>;
|
|
2279
2528
|
autorouterEffortLevel: zod.ZodOptional<zod.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
@@ -2615,6 +2864,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2615
2864
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
2616
2865
|
schMaxTraceDistance?: number | undefined;
|
|
2617
2866
|
partsEngine?: _tscircuit_props.PartsEngine | undefined;
|
|
2867
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
2618
2868
|
pcbRouteCache?: _tscircuit_props.PcbRouteCache | undefined;
|
|
2619
2869
|
autorouter?: _tscircuit_props.AutorouterProp | undefined;
|
|
2620
2870
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
@@ -2737,19 +2987,19 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2737
2987
|
topSize?: number | undefined;
|
|
2738
2988
|
rightSize?: number | undefined;
|
|
2739
2989
|
bottomSize?: number | undefined;
|
|
2740
|
-
leftSide?: {
|
|
2990
|
+
leftSide?: (string | number)[] | {
|
|
2741
2991
|
pins: (string | number)[];
|
|
2742
2992
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2743
2993
|
} | undefined;
|
|
2744
|
-
topSide?: {
|
|
2994
|
+
topSide?: (string | number)[] | {
|
|
2745
2995
|
pins: (string | number)[];
|
|
2746
2996
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2747
2997
|
} | undefined;
|
|
2748
|
-
rightSide?: {
|
|
2998
|
+
rightSide?: (string | number)[] | {
|
|
2749
2999
|
pins: (string | number)[];
|
|
2750
3000
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2751
3001
|
} | undefined;
|
|
2752
|
-
bottomSide?: {
|
|
3002
|
+
bottomSide?: (string | number)[] | {
|
|
2753
3003
|
pins: (string | number)[];
|
|
2754
3004
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2755
3005
|
} | undefined;
|
|
@@ -2939,6 +3189,7 @@ declare class Board extends Group<typeof boardProps> implements BoardI, Subcircu
|
|
|
2939
3189
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
2940
3190
|
schMaxTraceDistance?: string | number | undefined;
|
|
2941
3191
|
partsEngine?: _tscircuit_props.PartsEngine | undefined;
|
|
3192
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
2942
3193
|
pcbRouteCache?: _tscircuit_props.PcbRouteCache | undefined;
|
|
2943
3194
|
autorouter?: _tscircuit_props.AutorouterProp | undefined;
|
|
2944
3195
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
@@ -3426,7 +3677,7 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3426
3677
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
3427
3678
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
3428
3679
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
3429
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
3680
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
3430
3681
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3431
3682
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3432
3683
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -3435,8 +3686,14 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3435
3686
|
}, {
|
|
3436
3687
|
pins: (string | number)[];
|
|
3437
3688
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3689
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
3690
|
+
pins: (string | number)[];
|
|
3691
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3692
|
+
}, (string | number)[] | {
|
|
3693
|
+
pins: (string | number)[];
|
|
3694
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3438
3695
|
}>>;
|
|
3439
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
3696
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
3440
3697
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3441
3698
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3442
3699
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -3445,8 +3702,14 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3445
3702
|
}, {
|
|
3446
3703
|
pins: (string | number)[];
|
|
3447
3704
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3705
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
3706
|
+
pins: (string | number)[];
|
|
3707
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3708
|
+
}, (string | number)[] | {
|
|
3709
|
+
pins: (string | number)[];
|
|
3710
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3448
3711
|
}>>;
|
|
3449
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
3712
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
3450
3713
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3451
3714
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3452
3715
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -3455,8 +3718,14 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3455
3718
|
}, {
|
|
3456
3719
|
pins: (string | number)[];
|
|
3457
3720
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3721
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
3722
|
+
pins: (string | number)[];
|
|
3723
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3724
|
+
}, (string | number)[] | {
|
|
3725
|
+
pins: (string | number)[];
|
|
3726
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3458
3727
|
}>>;
|
|
3459
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
3728
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
3460
3729
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
3461
3730
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
3462
3731
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -3465,6 +3734,12 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3465
3734
|
}, {
|
|
3466
3735
|
pins: (string | number)[];
|
|
3467
3736
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3737
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
3738
|
+
pins: (string | number)[];
|
|
3739
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3740
|
+
}, (string | number)[] | {
|
|
3741
|
+
pins: (string | number)[];
|
|
3742
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3468
3743
|
}>>;
|
|
3469
3744
|
}, "strip", zod.ZodTypeAny, {
|
|
3470
3745
|
leftSize?: number | undefined;
|
|
@@ -3496,19 +3771,19 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3496
3771
|
topSize?: number | undefined;
|
|
3497
3772
|
rightSize?: number | undefined;
|
|
3498
3773
|
bottomSize?: number | undefined;
|
|
3499
|
-
leftSide?: {
|
|
3774
|
+
leftSide?: (string | number)[] | {
|
|
3500
3775
|
pins: (string | number)[];
|
|
3501
3776
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3502
3777
|
} | undefined;
|
|
3503
|
-
topSide?: {
|
|
3778
|
+
topSide?: (string | number)[] | {
|
|
3504
3779
|
pins: (string | number)[];
|
|
3505
3780
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3506
3781
|
} | undefined;
|
|
3507
|
-
rightSide?: {
|
|
3782
|
+
rightSide?: (string | number)[] | {
|
|
3508
3783
|
pins: (string | number)[];
|
|
3509
3784
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3510
3785
|
} | undefined;
|
|
3511
|
-
bottomSide?: {
|
|
3786
|
+
bottomSide?: (string | number)[] | {
|
|
3512
3787
|
pins: (string | number)[];
|
|
3513
3788
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3514
3789
|
} | undefined;
|
|
@@ -3931,19 +4206,19 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
3931
4206
|
topSize?: number | undefined;
|
|
3932
4207
|
rightSize?: number | undefined;
|
|
3933
4208
|
bottomSize?: number | undefined;
|
|
3934
|
-
leftSide?: {
|
|
4209
|
+
leftSide?: (string | number)[] | {
|
|
3935
4210
|
pins: (string | number)[];
|
|
3936
4211
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3937
4212
|
} | undefined;
|
|
3938
|
-
topSide?: {
|
|
4213
|
+
topSide?: (string | number)[] | {
|
|
3939
4214
|
pins: (string | number)[];
|
|
3940
4215
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3941
4216
|
} | undefined;
|
|
3942
|
-
rightSide?: {
|
|
4217
|
+
rightSide?: (string | number)[] | {
|
|
3943
4218
|
pins: (string | number)[];
|
|
3944
4219
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3945
4220
|
} | undefined;
|
|
3946
|
-
bottomSide?: {
|
|
4221
|
+
bottomSide?: (string | number)[] | {
|
|
3947
4222
|
pins: (string | number)[];
|
|
3948
4223
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3949
4224
|
} | undefined;
|
|
@@ -4576,7 +4851,7 @@ declare class Panel extends Subpanel {
|
|
|
4576
4851
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
4577
4852
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
4578
4853
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
4579
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
4854
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
4580
4855
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
4581
4856
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
4582
4857
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -4585,8 +4860,14 @@ declare class Panel extends Subpanel {
|
|
|
4585
4860
|
}, {
|
|
4586
4861
|
pins: (string | number)[];
|
|
4587
4862
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4863
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
4864
|
+
pins: (string | number)[];
|
|
4865
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4866
|
+
}, (string | number)[] | {
|
|
4867
|
+
pins: (string | number)[];
|
|
4868
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4588
4869
|
}>>;
|
|
4589
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
4870
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
4590
4871
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
4591
4872
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
4592
4873
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -4595,8 +4876,14 @@ declare class Panel extends Subpanel {
|
|
|
4595
4876
|
}, {
|
|
4596
4877
|
pins: (string | number)[];
|
|
4597
4878
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4879
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
4880
|
+
pins: (string | number)[];
|
|
4881
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4882
|
+
}, (string | number)[] | {
|
|
4883
|
+
pins: (string | number)[];
|
|
4884
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4598
4885
|
}>>;
|
|
4599
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
4886
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
4600
4887
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
4601
4888
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
4602
4889
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -4605,8 +4892,14 @@ declare class Panel extends Subpanel {
|
|
|
4605
4892
|
}, {
|
|
4606
4893
|
pins: (string | number)[];
|
|
4607
4894
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4895
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
4896
|
+
pins: (string | number)[];
|
|
4897
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4898
|
+
}, (string | number)[] | {
|
|
4899
|
+
pins: (string | number)[];
|
|
4900
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4608
4901
|
}>>;
|
|
4609
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
4902
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
4610
4903
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
4611
4904
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
4612
4905
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -4615,6 +4908,12 @@ declare class Panel extends Subpanel {
|
|
|
4615
4908
|
}, {
|
|
4616
4909
|
pins: (string | number)[];
|
|
4617
4910
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4911
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
4912
|
+
pins: (string | number)[];
|
|
4913
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4914
|
+
}, (string | number)[] | {
|
|
4915
|
+
pins: (string | number)[];
|
|
4916
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4618
4917
|
}>>;
|
|
4619
4918
|
}, "strip", zod.ZodTypeAny, {
|
|
4620
4919
|
leftSize?: number | undefined;
|
|
@@ -4646,19 +4945,19 @@ declare class Panel extends Subpanel {
|
|
|
4646
4945
|
topSize?: number | undefined;
|
|
4647
4946
|
rightSize?: number | undefined;
|
|
4648
4947
|
bottomSize?: number | undefined;
|
|
4649
|
-
leftSide?: {
|
|
4948
|
+
leftSide?: (string | number)[] | {
|
|
4650
4949
|
pins: (string | number)[];
|
|
4651
4950
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4652
4951
|
} | undefined;
|
|
4653
|
-
topSide?: {
|
|
4952
|
+
topSide?: (string | number)[] | {
|
|
4654
4953
|
pins: (string | number)[];
|
|
4655
4954
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4656
4955
|
} | undefined;
|
|
4657
|
-
rightSide?: {
|
|
4956
|
+
rightSide?: (string | number)[] | {
|
|
4658
4957
|
pins: (string | number)[];
|
|
4659
4958
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4660
4959
|
} | undefined;
|
|
4661
|
-
bottomSide?: {
|
|
4960
|
+
bottomSide?: (string | number)[] | {
|
|
4662
4961
|
pins: (string | number)[];
|
|
4663
4962
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
4664
4963
|
} | undefined;
|
|
@@ -5081,19 +5380,19 @@ declare class Panel extends Subpanel {
|
|
|
5081
5380
|
topSize?: number | undefined;
|
|
5082
5381
|
rightSize?: number | undefined;
|
|
5083
5382
|
bottomSize?: number | undefined;
|
|
5084
|
-
leftSide?: {
|
|
5383
|
+
leftSide?: (string | number)[] | {
|
|
5085
5384
|
pins: (string | number)[];
|
|
5086
5385
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5087
5386
|
} | undefined;
|
|
5088
|
-
topSide?: {
|
|
5387
|
+
topSide?: (string | number)[] | {
|
|
5089
5388
|
pins: (string | number)[];
|
|
5090
5389
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5091
5390
|
} | undefined;
|
|
5092
|
-
rightSide?: {
|
|
5391
|
+
rightSide?: (string | number)[] | {
|
|
5093
5392
|
pins: (string | number)[];
|
|
5094
5393
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5095
5394
|
} | undefined;
|
|
5096
|
-
bottomSide?: {
|
|
5395
|
+
bottomSide?: (string | number)[] | {
|
|
5097
5396
|
pins: (string | number)[];
|
|
5098
5397
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5099
5398
|
} | undefined;
|
|
@@ -12466,7 +12765,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12466
12765
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12467
12766
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12468
12767
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12469
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
12768
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12470
12769
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12471
12770
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12472
12771
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12475,8 +12774,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12475
12774
|
}, {
|
|
12476
12775
|
pins: (string | number)[];
|
|
12477
12776
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12777
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12778
|
+
pins: (string | number)[];
|
|
12779
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12780
|
+
}, (string | number)[] | {
|
|
12781
|
+
pins: (string | number)[];
|
|
12782
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12478
12783
|
}>>;
|
|
12479
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
12784
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12480
12785
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12481
12786
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12482
12787
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12485,8 +12790,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12485
12790
|
}, {
|
|
12486
12791
|
pins: (string | number)[];
|
|
12487
12792
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12793
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12794
|
+
pins: (string | number)[];
|
|
12795
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12796
|
+
}, (string | number)[] | {
|
|
12797
|
+
pins: (string | number)[];
|
|
12798
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12488
12799
|
}>>;
|
|
12489
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
12800
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12490
12801
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12491
12802
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12492
12803
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12495,8 +12806,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12495
12806
|
}, {
|
|
12496
12807
|
pins: (string | number)[];
|
|
12497
12808
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12809
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12810
|
+
pins: (string | number)[];
|
|
12811
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12812
|
+
}, (string | number)[] | {
|
|
12813
|
+
pins: (string | number)[];
|
|
12814
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12498
12815
|
}>>;
|
|
12499
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
12816
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12500
12817
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12501
12818
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12502
12819
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12505,6 +12822,12 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12505
12822
|
}, {
|
|
12506
12823
|
pins: (string | number)[];
|
|
12507
12824
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12825
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12826
|
+
pins: (string | number)[];
|
|
12827
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12828
|
+
}, (string | number)[] | {
|
|
12829
|
+
pins: (string | number)[];
|
|
12830
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12508
12831
|
}>>;
|
|
12509
12832
|
}, "strip", z.ZodTypeAny, {
|
|
12510
12833
|
leftSize?: number | undefined;
|
|
@@ -12536,19 +12859,19 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12536
12859
|
topSize?: number | undefined;
|
|
12537
12860
|
rightSize?: number | undefined;
|
|
12538
12861
|
bottomSize?: number | undefined;
|
|
12539
|
-
leftSide?: {
|
|
12862
|
+
leftSide?: (string | number)[] | {
|
|
12540
12863
|
pins: (string | number)[];
|
|
12541
12864
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12542
12865
|
} | undefined;
|
|
12543
|
-
topSide?: {
|
|
12866
|
+
topSide?: (string | number)[] | {
|
|
12544
12867
|
pins: (string | number)[];
|
|
12545
12868
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12546
12869
|
} | undefined;
|
|
12547
|
-
rightSide?: {
|
|
12870
|
+
rightSide?: (string | number)[] | {
|
|
12548
12871
|
pins: (string | number)[];
|
|
12549
12872
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12550
12873
|
} | undefined;
|
|
12551
|
-
bottomSide?: {
|
|
12874
|
+
bottomSide?: (string | number)[] | {
|
|
12552
12875
|
pins: (string | number)[];
|
|
12553
12876
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12554
12877
|
} | undefined;
|
|
@@ -12566,7 +12889,7 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12566
12889
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12567
12890
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12568
12891
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12569
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
12892
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12570
12893
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12571
12894
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12572
12895
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12575,8 +12898,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12575
12898
|
}, {
|
|
12576
12899
|
pins: (string | number)[];
|
|
12577
12900
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12901
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12902
|
+
pins: (string | number)[];
|
|
12903
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12904
|
+
}, (string | number)[] | {
|
|
12905
|
+
pins: (string | number)[];
|
|
12906
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12578
12907
|
}>>;
|
|
12579
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
12908
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12580
12909
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12581
12910
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12582
12911
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12585,8 +12914,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12585
12914
|
}, {
|
|
12586
12915
|
pins: (string | number)[];
|
|
12587
12916
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12917
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12918
|
+
pins: (string | number)[];
|
|
12919
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12920
|
+
}, (string | number)[] | {
|
|
12921
|
+
pins: (string | number)[];
|
|
12922
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12588
12923
|
}>>;
|
|
12589
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
12924
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12590
12925
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12591
12926
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12592
12927
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12595,8 +12930,14 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12595
12930
|
}, {
|
|
12596
12931
|
pins: (string | number)[];
|
|
12597
12932
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12933
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12934
|
+
pins: (string | number)[];
|
|
12935
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12936
|
+
}, (string | number)[] | {
|
|
12937
|
+
pins: (string | number)[];
|
|
12938
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12598
12939
|
}>>;
|
|
12599
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
12940
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
12600
12941
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12601
12942
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12602
12943
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12605,6 +12946,12 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12605
12946
|
}, {
|
|
12606
12947
|
pins: (string | number)[];
|
|
12607
12948
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12949
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
12950
|
+
pins: (string | number)[];
|
|
12951
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12952
|
+
}, (string | number)[] | {
|
|
12953
|
+
pins: (string | number)[];
|
|
12954
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12608
12955
|
}>>;
|
|
12609
12956
|
}, "strip", z.ZodTypeAny, {
|
|
12610
12957
|
leftSize?: number | undefined;
|
|
@@ -12636,19 +12983,19 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
12636
12983
|
topSize?: number | undefined;
|
|
12637
12984
|
rightSize?: number | undefined;
|
|
12638
12985
|
bottomSize?: number | undefined;
|
|
12639
|
-
leftSide?: {
|
|
12986
|
+
leftSide?: (string | number)[] | {
|
|
12640
12987
|
pins: (string | number)[];
|
|
12641
12988
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12642
12989
|
} | undefined;
|
|
12643
|
-
topSide?: {
|
|
12990
|
+
topSide?: (string | number)[] | {
|
|
12644
12991
|
pins: (string | number)[];
|
|
12645
12992
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12646
12993
|
} | undefined;
|
|
12647
|
-
rightSide?: {
|
|
12994
|
+
rightSide?: (string | number)[] | {
|
|
12648
12995
|
pins: (string | number)[];
|
|
12649
12996
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12650
12997
|
} | undefined;
|
|
12651
|
-
bottomSide?: {
|
|
12998
|
+
bottomSide?: (string | number)[] | {
|
|
12652
12999
|
pins: (string | number)[];
|
|
12653
13000
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12654
13001
|
} | undefined;
|
|
@@ -13774,19 +14121,19 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
13774
14121
|
topSize?: number | undefined;
|
|
13775
14122
|
rightSize?: number | undefined;
|
|
13776
14123
|
bottomSize?: number | undefined;
|
|
13777
|
-
leftSide?: {
|
|
14124
|
+
leftSide?: (string | number)[] | {
|
|
13778
14125
|
pins: (string | number)[];
|
|
13779
14126
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13780
14127
|
} | undefined;
|
|
13781
|
-
topSide?: {
|
|
14128
|
+
topSide?: (string | number)[] | {
|
|
13782
14129
|
pins: (string | number)[];
|
|
13783
14130
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13784
14131
|
} | undefined;
|
|
13785
|
-
rightSide?: {
|
|
14132
|
+
rightSide?: (string | number)[] | {
|
|
13786
14133
|
pins: (string | number)[];
|
|
13787
14134
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13788
14135
|
} | undefined;
|
|
13789
|
-
bottomSide?: {
|
|
14136
|
+
bottomSide?: (string | number)[] | {
|
|
13790
14137
|
pins: (string | number)[];
|
|
13791
14138
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13792
14139
|
} | undefined;
|
|
@@ -13818,19 +14165,19 @@ declare class Chip<PinLabels extends string = never> extends NormalComponent<typ
|
|
|
13818
14165
|
topSize?: number | undefined;
|
|
13819
14166
|
rightSize?: number | undefined;
|
|
13820
14167
|
bottomSize?: number | undefined;
|
|
13821
|
-
leftSide?: {
|
|
14168
|
+
leftSide?: (string | number)[] | {
|
|
13822
14169
|
pins: (string | number)[];
|
|
13823
14170
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13824
14171
|
} | undefined;
|
|
13825
|
-
topSide?: {
|
|
14172
|
+
topSide?: (string | number)[] | {
|
|
13826
14173
|
pins: (string | number)[];
|
|
13827
14174
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13828
14175
|
} | undefined;
|
|
13829
|
-
rightSide?: {
|
|
14176
|
+
rightSide?: (string | number)[] | {
|
|
13830
14177
|
pins: (string | number)[];
|
|
13831
14178
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13832
14179
|
} | undefined;
|
|
13833
|
-
bottomSide?: {
|
|
14180
|
+
bottomSide?: (string | number)[] | {
|
|
13834
14181
|
pins: (string | number)[];
|
|
13835
14182
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
13836
14183
|
} | undefined;
|
|
@@ -16936,7 +17283,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
16936
17283
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16937
17284
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16938
17285
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
16939
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
17286
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16940
17287
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16941
17288
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16942
17289
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16945,8 +17292,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
16945
17292
|
}, {
|
|
16946
17293
|
pins: (string | number)[];
|
|
16947
17294
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17295
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17296
|
+
pins: (string | number)[];
|
|
17297
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17298
|
+
}, (string | number)[] | {
|
|
17299
|
+
pins: (string | number)[];
|
|
17300
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16948
17301
|
}>>;
|
|
16949
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
17302
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16950
17303
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16951
17304
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16952
17305
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16955,8 +17308,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
16955
17308
|
}, {
|
|
16956
17309
|
pins: (string | number)[];
|
|
16957
17310
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17311
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17312
|
+
pins: (string | number)[];
|
|
17313
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17314
|
+
}, (string | number)[] | {
|
|
17315
|
+
pins: (string | number)[];
|
|
17316
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16958
17317
|
}>>;
|
|
16959
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
17318
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16960
17319
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16961
17320
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16962
17321
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16965,8 +17324,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
16965
17324
|
}, {
|
|
16966
17325
|
pins: (string | number)[];
|
|
16967
17326
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17327
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17328
|
+
pins: (string | number)[];
|
|
17329
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17330
|
+
}, (string | number)[] | {
|
|
17331
|
+
pins: (string | number)[];
|
|
17332
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16968
17333
|
}>>;
|
|
16969
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
17334
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
16970
17335
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
16971
17336
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
16972
17337
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16975,6 +17340,12 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
16975
17340
|
}, {
|
|
16976
17341
|
pins: (string | number)[];
|
|
16977
17342
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17343
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17344
|
+
pins: (string | number)[];
|
|
17345
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17346
|
+
}, (string | number)[] | {
|
|
17347
|
+
pins: (string | number)[];
|
|
17348
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
16978
17349
|
}>>;
|
|
16979
17350
|
}, "strip", z.ZodTypeAny, {
|
|
16980
17351
|
leftSize?: number | undefined;
|
|
@@ -17006,19 +17377,19 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17006
17377
|
topSize?: number | undefined;
|
|
17007
17378
|
rightSize?: number | undefined;
|
|
17008
17379
|
bottomSize?: number | undefined;
|
|
17009
|
-
leftSide?: {
|
|
17380
|
+
leftSide?: (string | number)[] | {
|
|
17010
17381
|
pins: (string | number)[];
|
|
17011
17382
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17012
17383
|
} | undefined;
|
|
17013
|
-
topSide?: {
|
|
17384
|
+
topSide?: (string | number)[] | {
|
|
17014
17385
|
pins: (string | number)[];
|
|
17015
17386
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17016
17387
|
} | undefined;
|
|
17017
|
-
rightSide?: {
|
|
17388
|
+
rightSide?: (string | number)[] | {
|
|
17018
17389
|
pins: (string | number)[];
|
|
17019
17390
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17020
17391
|
} | undefined;
|
|
17021
|
-
bottomSide?: {
|
|
17392
|
+
bottomSide?: (string | number)[] | {
|
|
17022
17393
|
pins: (string | number)[];
|
|
17023
17394
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17024
17395
|
} | undefined;
|
|
@@ -17036,7 +17407,7 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17036
17407
|
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17037
17408
|
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17038
17409
|
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
17039
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
17410
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17040
17411
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17041
17412
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17042
17413
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17045,8 +17416,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17045
17416
|
}, {
|
|
17046
17417
|
pins: (string | number)[];
|
|
17047
17418
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17419
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17420
|
+
pins: (string | number)[];
|
|
17421
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17422
|
+
}, (string | number)[] | {
|
|
17423
|
+
pins: (string | number)[];
|
|
17424
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17048
17425
|
}>>;
|
|
17049
|
-
rightSide: z.ZodOptional<z.ZodObject<{
|
|
17426
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17050
17427
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17051
17428
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17052
17429
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17055,8 +17432,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17055
17432
|
}, {
|
|
17056
17433
|
pins: (string | number)[];
|
|
17057
17434
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17435
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17436
|
+
pins: (string | number)[];
|
|
17437
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17438
|
+
}, (string | number)[] | {
|
|
17439
|
+
pins: (string | number)[];
|
|
17440
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17058
17441
|
}>>;
|
|
17059
|
-
topSide: z.ZodOptional<z.ZodObject<{
|
|
17442
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17060
17443
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17061
17444
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17062
17445
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17065,8 +17448,14 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17065
17448
|
}, {
|
|
17066
17449
|
pins: (string | number)[];
|
|
17067
17450
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17451
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17452
|
+
pins: (string | number)[];
|
|
17453
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17454
|
+
}, (string | number)[] | {
|
|
17455
|
+
pins: (string | number)[];
|
|
17456
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17068
17457
|
}>>;
|
|
17069
|
-
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
17458
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
17070
17459
|
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
17071
17460
|
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
17072
17461
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17075,6 +17464,12 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17075
17464
|
}, {
|
|
17076
17465
|
pins: (string | number)[];
|
|
17077
17466
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17467
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
17468
|
+
pins: (string | number)[];
|
|
17469
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17470
|
+
}, (string | number)[] | {
|
|
17471
|
+
pins: (string | number)[];
|
|
17472
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17078
17473
|
}>>;
|
|
17079
17474
|
}, "strip", z.ZodTypeAny, {
|
|
17080
17475
|
leftSize?: number | undefined;
|
|
@@ -17106,19 +17501,19 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
17106
17501
|
topSize?: number | undefined;
|
|
17107
17502
|
rightSize?: number | undefined;
|
|
17108
17503
|
bottomSize?: number | undefined;
|
|
17109
|
-
leftSide?: {
|
|
17504
|
+
leftSide?: (string | number)[] | {
|
|
17110
17505
|
pins: (string | number)[];
|
|
17111
17506
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17112
17507
|
} | undefined;
|
|
17113
|
-
topSide?: {
|
|
17508
|
+
topSide?: (string | number)[] | {
|
|
17114
17509
|
pins: (string | number)[];
|
|
17115
17510
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17116
17511
|
} | undefined;
|
|
17117
|
-
rightSide?: {
|
|
17512
|
+
rightSide?: (string | number)[] | {
|
|
17118
17513
|
pins: (string | number)[];
|
|
17119
17514
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17120
17515
|
} | undefined;
|
|
17121
|
-
bottomSide?: {
|
|
17516
|
+
bottomSide?: (string | number)[] | {
|
|
17122
17517
|
pins: (string | number)[];
|
|
17123
17518
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
17124
17519
|
} | undefined;
|
|
@@ -18244,19 +18639,19 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
18244
18639
|
topSize?: number | undefined;
|
|
18245
18640
|
rightSize?: number | undefined;
|
|
18246
18641
|
bottomSize?: number | undefined;
|
|
18247
|
-
leftSide?: {
|
|
18642
|
+
leftSide?: (string | number)[] | {
|
|
18248
18643
|
pins: (string | number)[];
|
|
18249
18644
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18250
18645
|
} | undefined;
|
|
18251
|
-
topSide?: {
|
|
18646
|
+
topSide?: (string | number)[] | {
|
|
18252
18647
|
pins: (string | number)[];
|
|
18253
18648
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18254
18649
|
} | undefined;
|
|
18255
|
-
rightSide?: {
|
|
18650
|
+
rightSide?: (string | number)[] | {
|
|
18256
18651
|
pins: (string | number)[];
|
|
18257
18652
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18258
18653
|
} | undefined;
|
|
18259
|
-
bottomSide?: {
|
|
18654
|
+
bottomSide?: (string | number)[] | {
|
|
18260
18655
|
pins: (string | number)[];
|
|
18261
18656
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18262
18657
|
} | undefined;
|
|
@@ -18288,19 +18683,19 @@ declare class Pinout<PinLabels extends string = never> extends Chip<PinLabels> {
|
|
|
18288
18683
|
topSize?: number | undefined;
|
|
18289
18684
|
rightSize?: number | undefined;
|
|
18290
18685
|
bottomSize?: number | undefined;
|
|
18291
|
-
leftSide?: {
|
|
18686
|
+
leftSide?: (string | number)[] | {
|
|
18292
18687
|
pins: (string | number)[];
|
|
18293
18688
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18294
18689
|
} | undefined;
|
|
18295
|
-
topSide?: {
|
|
18690
|
+
topSide?: (string | number)[] | {
|
|
18296
18691
|
pins: (string | number)[];
|
|
18297
18692
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18298
18693
|
} | undefined;
|
|
18299
|
-
rightSide?: {
|
|
18694
|
+
rightSide?: (string | number)[] | {
|
|
18300
18695
|
pins: (string | number)[];
|
|
18301
18696
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18302
18697
|
} | undefined;
|
|
18303
|
-
bottomSide?: {
|
|
18698
|
+
bottomSide?: (string | number)[] | {
|
|
18304
18699
|
pins: (string | number)[];
|
|
18305
18700
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
18306
18701
|
} | undefined;
|
|
@@ -31632,7 +32027,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31632
32027
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31633
32028
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31634
32029
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31635
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
32030
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31636
32031
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31637
32032
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31638
32033
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31641,8 +32036,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31641
32036
|
}, {
|
|
31642
32037
|
pins: (string | number)[];
|
|
31643
32038
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32039
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32040
|
+
pins: (string | number)[];
|
|
32041
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32042
|
+
}, (string | number)[] | {
|
|
32043
|
+
pins: (string | number)[];
|
|
32044
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31644
32045
|
}>>;
|
|
31645
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
32046
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31646
32047
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31647
32048
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31648
32049
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31651,8 +32052,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31651
32052
|
}, {
|
|
31652
32053
|
pins: (string | number)[];
|
|
31653
32054
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32055
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32056
|
+
pins: (string | number)[];
|
|
32057
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32058
|
+
}, (string | number)[] | {
|
|
32059
|
+
pins: (string | number)[];
|
|
32060
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31654
32061
|
}>>;
|
|
31655
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
32062
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31656
32063
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31657
32064
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31658
32065
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31661,8 +32068,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31661
32068
|
}, {
|
|
31662
32069
|
pins: (string | number)[];
|
|
31663
32070
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32071
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32072
|
+
pins: (string | number)[];
|
|
32073
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32074
|
+
}, (string | number)[] | {
|
|
32075
|
+
pins: (string | number)[];
|
|
32076
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31664
32077
|
}>>;
|
|
31665
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
32078
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31666
32079
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31667
32080
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31668
32081
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31671,6 +32084,12 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31671
32084
|
}, {
|
|
31672
32085
|
pins: (string | number)[];
|
|
31673
32086
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32087
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32088
|
+
pins: (string | number)[];
|
|
32089
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32090
|
+
}, (string | number)[] | {
|
|
32091
|
+
pins: (string | number)[];
|
|
32092
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31674
32093
|
}>>;
|
|
31675
32094
|
}, "strip", zod.ZodTypeAny, {
|
|
31676
32095
|
leftSize?: number | undefined;
|
|
@@ -31702,19 +32121,19 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31702
32121
|
topSize?: number | undefined;
|
|
31703
32122
|
rightSize?: number | undefined;
|
|
31704
32123
|
bottomSize?: number | undefined;
|
|
31705
|
-
leftSide?: {
|
|
32124
|
+
leftSide?: (string | number)[] | {
|
|
31706
32125
|
pins: (string | number)[];
|
|
31707
32126
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31708
32127
|
} | undefined;
|
|
31709
|
-
topSide?: {
|
|
32128
|
+
topSide?: (string | number)[] | {
|
|
31710
32129
|
pins: (string | number)[];
|
|
31711
32130
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31712
32131
|
} | undefined;
|
|
31713
|
-
rightSide?: {
|
|
32132
|
+
rightSide?: (string | number)[] | {
|
|
31714
32133
|
pins: (string | number)[];
|
|
31715
32134
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31716
32135
|
} | undefined;
|
|
31717
|
-
bottomSide?: {
|
|
32136
|
+
bottomSide?: (string | number)[] | {
|
|
31718
32137
|
pins: (string | number)[];
|
|
31719
32138
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31720
32139
|
} | undefined;
|
|
@@ -31732,7 +32151,7 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31732
32151
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31733
32152
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31734
32153
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
31735
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
32154
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31736
32155
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31737
32156
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31738
32157
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31741,8 +32160,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31741
32160
|
}, {
|
|
31742
32161
|
pins: (string | number)[];
|
|
31743
32162
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32163
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32164
|
+
pins: (string | number)[];
|
|
32165
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32166
|
+
}, (string | number)[] | {
|
|
32167
|
+
pins: (string | number)[];
|
|
32168
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31744
32169
|
}>>;
|
|
31745
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
32170
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31746
32171
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31747
32172
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31748
32173
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31751,8 +32176,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31751
32176
|
}, {
|
|
31752
32177
|
pins: (string | number)[];
|
|
31753
32178
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32179
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32180
|
+
pins: (string | number)[];
|
|
32181
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32182
|
+
}, (string | number)[] | {
|
|
32183
|
+
pins: (string | number)[];
|
|
32184
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31754
32185
|
}>>;
|
|
31755
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
32186
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31756
32187
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31757
32188
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31758
32189
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31761,8 +32192,14 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31761
32192
|
}, {
|
|
31762
32193
|
pins: (string | number)[];
|
|
31763
32194
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32195
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32196
|
+
pins: (string | number)[];
|
|
32197
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32198
|
+
}, (string | number)[] | {
|
|
32199
|
+
pins: (string | number)[];
|
|
32200
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31764
32201
|
}>>;
|
|
31765
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
32202
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
31766
32203
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
31767
32204
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
31768
32205
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -31771,6 +32208,12 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31771
32208
|
}, {
|
|
31772
32209
|
pins: (string | number)[];
|
|
31773
32210
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32211
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
32212
|
+
pins: (string | number)[];
|
|
32213
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32214
|
+
}, (string | number)[] | {
|
|
32215
|
+
pins: (string | number)[];
|
|
32216
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31774
32217
|
}>>;
|
|
31775
32218
|
}, "strip", zod.ZodTypeAny, {
|
|
31776
32219
|
leftSize?: number | undefined;
|
|
@@ -31802,19 +32245,19 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
31802
32245
|
topSize?: number | undefined;
|
|
31803
32246
|
rightSize?: number | undefined;
|
|
31804
32247
|
bottomSize?: number | undefined;
|
|
31805
|
-
leftSide?: {
|
|
32248
|
+
leftSide?: (string | number)[] | {
|
|
31806
32249
|
pins: (string | number)[];
|
|
31807
32250
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31808
32251
|
} | undefined;
|
|
31809
|
-
topSide?: {
|
|
32252
|
+
topSide?: (string | number)[] | {
|
|
31810
32253
|
pins: (string | number)[];
|
|
31811
32254
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31812
32255
|
} | undefined;
|
|
31813
|
-
rightSide?: {
|
|
32256
|
+
rightSide?: (string | number)[] | {
|
|
31814
32257
|
pins: (string | number)[];
|
|
31815
32258
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31816
32259
|
} | undefined;
|
|
31817
|
-
bottomSide?: {
|
|
32260
|
+
bottomSide?: (string | number)[] | {
|
|
31818
32261
|
pins: (string | number)[];
|
|
31819
32262
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
31820
32263
|
} | undefined;
|
|
@@ -32896,19 +33339,19 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
32896
33339
|
topSize?: number | undefined;
|
|
32897
33340
|
rightSize?: number | undefined;
|
|
32898
33341
|
bottomSize?: number | undefined;
|
|
32899
|
-
leftSide?: {
|
|
33342
|
+
leftSide?: (string | number)[] | {
|
|
32900
33343
|
pins: (string | number)[];
|
|
32901
33344
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32902
33345
|
} | undefined;
|
|
32903
|
-
topSide?: {
|
|
33346
|
+
topSide?: (string | number)[] | {
|
|
32904
33347
|
pins: (string | number)[];
|
|
32905
33348
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32906
33349
|
} | undefined;
|
|
32907
|
-
rightSide?: {
|
|
33350
|
+
rightSide?: (string | number)[] | {
|
|
32908
33351
|
pins: (string | number)[];
|
|
32909
33352
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32910
33353
|
} | undefined;
|
|
32911
|
-
bottomSide?: {
|
|
33354
|
+
bottomSide?: (string | number)[] | {
|
|
32912
33355
|
pins: (string | number)[];
|
|
32913
33356
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32914
33357
|
} | undefined;
|
|
@@ -32938,19 +33381,19 @@ declare class Jumper<PinLabels extends string = never> extends NormalComponent<t
|
|
|
32938
33381
|
topSize?: number | undefined;
|
|
32939
33382
|
rightSize?: number | undefined;
|
|
32940
33383
|
bottomSize?: number | undefined;
|
|
32941
|
-
leftSide?: {
|
|
33384
|
+
leftSide?: (string | number)[] | {
|
|
32942
33385
|
pins: (string | number)[];
|
|
32943
33386
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32944
33387
|
} | undefined;
|
|
32945
|
-
topSide?: {
|
|
33388
|
+
topSide?: (string | number)[] | {
|
|
32946
33389
|
pins: (string | number)[];
|
|
32947
33390
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32948
33391
|
} | undefined;
|
|
32949
|
-
rightSide?: {
|
|
33392
|
+
rightSide?: (string | number)[] | {
|
|
32950
33393
|
pins: (string | number)[];
|
|
32951
33394
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32952
33395
|
} | undefined;
|
|
32953
|
-
bottomSide?: {
|
|
33396
|
+
bottomSide?: (string | number)[] | {
|
|
32954
33397
|
pins: (string | number)[];
|
|
32955
33398
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
32956
33399
|
} | undefined;
|
|
@@ -40170,7 +40613,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40170
40613
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40171
40614
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40172
40615
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40173
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
40616
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40174
40617
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40175
40618
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40176
40619
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40179,8 +40622,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40179
40622
|
}, {
|
|
40180
40623
|
pins: (string | number)[];
|
|
40181
40624
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40625
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40626
|
+
pins: (string | number)[];
|
|
40627
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40628
|
+
}, (string | number)[] | {
|
|
40629
|
+
pins: (string | number)[];
|
|
40630
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40182
40631
|
}>>;
|
|
40183
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
40632
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40184
40633
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40185
40634
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40186
40635
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40189,8 +40638,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40189
40638
|
}, {
|
|
40190
40639
|
pins: (string | number)[];
|
|
40191
40640
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40641
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40642
|
+
pins: (string | number)[];
|
|
40643
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40644
|
+
}, (string | number)[] | {
|
|
40645
|
+
pins: (string | number)[];
|
|
40646
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40192
40647
|
}>>;
|
|
40193
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
40648
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40194
40649
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40195
40650
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40196
40651
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40199,8 +40654,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40199
40654
|
}, {
|
|
40200
40655
|
pins: (string | number)[];
|
|
40201
40656
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40657
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40658
|
+
pins: (string | number)[];
|
|
40659
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40660
|
+
}, (string | number)[] | {
|
|
40661
|
+
pins: (string | number)[];
|
|
40662
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40202
40663
|
}>>;
|
|
40203
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
40664
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40204
40665
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40205
40666
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40206
40667
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40209,6 +40670,12 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40209
40670
|
}, {
|
|
40210
40671
|
pins: (string | number)[];
|
|
40211
40672
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40673
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40674
|
+
pins: (string | number)[];
|
|
40675
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40676
|
+
}, (string | number)[] | {
|
|
40677
|
+
pins: (string | number)[];
|
|
40678
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40212
40679
|
}>>;
|
|
40213
40680
|
}, "strip", zod.ZodTypeAny, {
|
|
40214
40681
|
leftSize?: number | undefined;
|
|
@@ -40240,19 +40707,19 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40240
40707
|
topSize?: number | undefined;
|
|
40241
40708
|
rightSize?: number | undefined;
|
|
40242
40709
|
bottomSize?: number | undefined;
|
|
40243
|
-
leftSide?: {
|
|
40710
|
+
leftSide?: (string | number)[] | {
|
|
40244
40711
|
pins: (string | number)[];
|
|
40245
40712
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40246
40713
|
} | undefined;
|
|
40247
|
-
topSide?: {
|
|
40714
|
+
topSide?: (string | number)[] | {
|
|
40248
40715
|
pins: (string | number)[];
|
|
40249
40716
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40250
40717
|
} | undefined;
|
|
40251
|
-
rightSide?: {
|
|
40718
|
+
rightSide?: (string | number)[] | {
|
|
40252
40719
|
pins: (string | number)[];
|
|
40253
40720
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40254
40721
|
} | undefined;
|
|
40255
|
-
bottomSide?: {
|
|
40722
|
+
bottomSide?: (string | number)[] | {
|
|
40256
40723
|
pins: (string | number)[];
|
|
40257
40724
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40258
40725
|
} | undefined;
|
|
@@ -40270,7 +40737,7 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40270
40737
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40271
40738
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40272
40739
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
40273
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
40740
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40274
40741
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40275
40742
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40276
40743
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40279,8 +40746,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40279
40746
|
}, {
|
|
40280
40747
|
pins: (string | number)[];
|
|
40281
40748
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40749
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40750
|
+
pins: (string | number)[];
|
|
40751
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40752
|
+
}, (string | number)[] | {
|
|
40753
|
+
pins: (string | number)[];
|
|
40754
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40282
40755
|
}>>;
|
|
40283
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
40756
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40284
40757
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40285
40758
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40286
40759
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40289,8 +40762,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40289
40762
|
}, {
|
|
40290
40763
|
pins: (string | number)[];
|
|
40291
40764
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40765
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40766
|
+
pins: (string | number)[];
|
|
40767
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40768
|
+
}, (string | number)[] | {
|
|
40769
|
+
pins: (string | number)[];
|
|
40770
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40292
40771
|
}>>;
|
|
40293
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
40772
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40294
40773
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40295
40774
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40296
40775
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40299,8 +40778,14 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40299
40778
|
}, {
|
|
40300
40779
|
pins: (string | number)[];
|
|
40301
40780
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40781
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40782
|
+
pins: (string | number)[];
|
|
40783
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40784
|
+
}, (string | number)[] | {
|
|
40785
|
+
pins: (string | number)[];
|
|
40786
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40302
40787
|
}>>;
|
|
40303
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
40788
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
40304
40789
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
40305
40790
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
40306
40791
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -40309,6 +40794,12 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40309
40794
|
}, {
|
|
40310
40795
|
pins: (string | number)[];
|
|
40311
40796
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40797
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
40798
|
+
pins: (string | number)[];
|
|
40799
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40800
|
+
}, (string | number)[] | {
|
|
40801
|
+
pins: (string | number)[];
|
|
40802
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40312
40803
|
}>>;
|
|
40313
40804
|
}, "strip", zod.ZodTypeAny, {
|
|
40314
40805
|
leftSize?: number | undefined;
|
|
@@ -40340,19 +40831,19 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
40340
40831
|
topSize?: number | undefined;
|
|
40341
40832
|
rightSize?: number | undefined;
|
|
40342
40833
|
bottomSize?: number | undefined;
|
|
40343
|
-
leftSide?: {
|
|
40834
|
+
leftSide?: (string | number)[] | {
|
|
40344
40835
|
pins: (string | number)[];
|
|
40345
40836
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40346
40837
|
} | undefined;
|
|
40347
|
-
topSide?: {
|
|
40838
|
+
topSide?: (string | number)[] | {
|
|
40348
40839
|
pins: (string | number)[];
|
|
40349
40840
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40350
40841
|
} | undefined;
|
|
40351
|
-
rightSide?: {
|
|
40842
|
+
rightSide?: (string | number)[] | {
|
|
40352
40843
|
pins: (string | number)[];
|
|
40353
40844
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40354
40845
|
} | undefined;
|
|
40355
|
-
bottomSide?: {
|
|
40846
|
+
bottomSide?: (string | number)[] | {
|
|
40356
40847
|
pins: (string | number)[];
|
|
40357
40848
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
40358
40849
|
} | undefined;
|
|
@@ -41439,19 +41930,19 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
41439
41930
|
topSize?: number | undefined;
|
|
41440
41931
|
rightSize?: number | undefined;
|
|
41441
41932
|
bottomSize?: number | undefined;
|
|
41442
|
-
leftSide?: {
|
|
41933
|
+
leftSide?: (string | number)[] | {
|
|
41443
41934
|
pins: (string | number)[];
|
|
41444
41935
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41445
41936
|
} | undefined;
|
|
41446
|
-
topSide?: {
|
|
41937
|
+
topSide?: (string | number)[] | {
|
|
41447
41938
|
pins: (string | number)[];
|
|
41448
41939
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41449
41940
|
} | undefined;
|
|
41450
|
-
rightSide?: {
|
|
41941
|
+
rightSide?: (string | number)[] | {
|
|
41451
41942
|
pins: (string | number)[];
|
|
41452
41943
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41453
41944
|
} | undefined;
|
|
41454
|
-
bottomSide?: {
|
|
41945
|
+
bottomSide?: (string | number)[] | {
|
|
41455
41946
|
pins: (string | number)[];
|
|
41456
41947
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41457
41948
|
} | undefined;
|
|
@@ -41481,19 +41972,19 @@ declare class SolderJumper<PinLabels extends string = never> extends NormalCompo
|
|
|
41481
41972
|
topSize?: number | undefined;
|
|
41482
41973
|
rightSize?: number | undefined;
|
|
41483
41974
|
bottomSize?: number | undefined;
|
|
41484
|
-
leftSide?: {
|
|
41975
|
+
leftSide?: (string | number)[] | {
|
|
41485
41976
|
pins: (string | number)[];
|
|
41486
41977
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41487
41978
|
} | undefined;
|
|
41488
|
-
topSide?: {
|
|
41979
|
+
topSide?: (string | number)[] | {
|
|
41489
41980
|
pins: (string | number)[];
|
|
41490
41981
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41491
41982
|
} | undefined;
|
|
41492
|
-
rightSide?: {
|
|
41983
|
+
rightSide?: (string | number)[] | {
|
|
41493
41984
|
pins: (string | number)[];
|
|
41494
41985
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41495
41986
|
} | undefined;
|
|
41496
|
-
bottomSide?: {
|
|
41987
|
+
bottomSide?: (string | number)[] | {
|
|
41497
41988
|
pins: (string | number)[];
|
|
41498
41989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
41499
41990
|
} | undefined;
|
|
@@ -60943,6 +61434,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
60943
61434
|
manufacturerPartNumber: zod.ZodOptional<zod.ZodString>;
|
|
60944
61435
|
} & {
|
|
60945
61436
|
resistance: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
61437
|
+
tolerance: zod.ZodOptional<zod.ZodPipeline<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>, zod.ZodNumber>>;
|
|
60946
61438
|
pullupFor: zod.ZodOptional<zod.ZodString>;
|
|
60947
61439
|
pullupTo: zod.ZodOptional<zod.ZodString>;
|
|
60948
61440
|
pulldownFor: zod.ZodOptional<zod.ZodString>;
|
|
@@ -61448,6 +61940,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
61448
61940
|
manufacturerPartNumber?: string | undefined;
|
|
61449
61941
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
61450
61942
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
61943
|
+
tolerance?: number | undefined;
|
|
61451
61944
|
pullupFor?: string | undefined;
|
|
61452
61945
|
pullupTo?: string | undefined;
|
|
61453
61946
|
pulldownFor?: string | undefined;
|
|
@@ -61953,6 +62446,7 @@ declare class Resistor extends NormalComponent<typeof resistorProps, PassivePort
|
|
|
61953
62446
|
manufacturerPartNumber?: string | undefined;
|
|
61954
62447
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
61955
62448
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
62449
|
+
tolerance?: string | number | undefined;
|
|
61956
62450
|
pullupFor?: string | undefined;
|
|
61957
62451
|
pullupTo?: string | undefined;
|
|
61958
62452
|
pulldownFor?: string | undefined;
|
|
@@ -66303,20 +66797,195 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
66303
66797
|
portHints?: (string | number)[] | undefined;
|
|
66304
66798
|
solderMaskMargin?: string | number | undefined;
|
|
66305
66799
|
coveredWithSolderMask?: boolean | undefined;
|
|
66306
|
-
holeOffsetX?: string | number | undefined;
|
|
66307
|
-
holeOffsetY?: string | number | undefined;
|
|
66308
|
-
holeShape?: "pill" | undefined;
|
|
66309
|
-
padShape?: "rect" | undefined;
|
|
66310
|
-
} | {
|
|
66311
|
-
shape: "hole_with_polygon_pad";
|
|
66312
|
-
holeOffsetX: string | number;
|
|
66313
|
-
holeOffsetY: string | number;
|
|
66314
|
-
holeShape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
66315
|
-
padOutline: {
|
|
66316
|
-
x: string | number;
|
|
66317
|
-
y: string | number;
|
|
66318
|
-
}[];
|
|
66319
|
-
name?: string | undefined;
|
|
66800
|
+
holeOffsetX?: string | number | undefined;
|
|
66801
|
+
holeOffsetY?: string | number | undefined;
|
|
66802
|
+
holeShape?: "pill" | undefined;
|
|
66803
|
+
padShape?: "rect" | undefined;
|
|
66804
|
+
} | {
|
|
66805
|
+
shape: "hole_with_polygon_pad";
|
|
66806
|
+
holeOffsetX: string | number;
|
|
66807
|
+
holeOffsetY: string | number;
|
|
66808
|
+
holeShape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
66809
|
+
padOutline: {
|
|
66810
|
+
x: string | number;
|
|
66811
|
+
y: string | number;
|
|
66812
|
+
}[];
|
|
66813
|
+
name?: string | undefined;
|
|
66814
|
+
pcbX?: string | number | undefined;
|
|
66815
|
+
pcbY?: string | number | undefined;
|
|
66816
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
66817
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
66818
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66819
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66820
|
+
pcbOffsetX?: string | number | undefined;
|
|
66821
|
+
pcbOffsetY?: string | number | undefined;
|
|
66822
|
+
pcbPositionAnchor?: string | undefined;
|
|
66823
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66824
|
+
pcbMarginTop?: string | number | undefined;
|
|
66825
|
+
pcbMarginRight?: string | number | undefined;
|
|
66826
|
+
pcbMarginBottom?: string | number | undefined;
|
|
66827
|
+
pcbMarginLeft?: string | number | undefined;
|
|
66828
|
+
pcbMarginX?: string | number | undefined;
|
|
66829
|
+
pcbMarginY?: string | number | undefined;
|
|
66830
|
+
pcbStyle?: {
|
|
66831
|
+
silkscreenFontSize?: string | number | undefined;
|
|
66832
|
+
viaPadDiameter?: string | number | undefined;
|
|
66833
|
+
viaHoleDiameter?: string | number | undefined;
|
|
66834
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66835
|
+
offsetX: number;
|
|
66836
|
+
offsetY: number;
|
|
66837
|
+
} | undefined;
|
|
66838
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66839
|
+
} | undefined;
|
|
66840
|
+
pcbRelative?: boolean | undefined;
|
|
66841
|
+
relative?: boolean | undefined;
|
|
66842
|
+
connectsTo?: string | string[] | undefined;
|
|
66843
|
+
holeDiameter?: string | number | undefined;
|
|
66844
|
+
portHints?: (string | number)[] | undefined;
|
|
66845
|
+
solderMaskMargin?: string | number | undefined;
|
|
66846
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
66847
|
+
holeWidth?: string | number | undefined;
|
|
66848
|
+
holeHeight?: string | number | undefined;
|
|
66849
|
+
}>;
|
|
66850
|
+
};
|
|
66851
|
+
getAvailablePcbLayers(): string[];
|
|
66852
|
+
getPcbSize(): {
|
|
66853
|
+
width: number;
|
|
66854
|
+
height: number;
|
|
66855
|
+
};
|
|
66856
|
+
_getPcbCircuitJsonBounds(): {
|
|
66857
|
+
center: {
|
|
66858
|
+
x: number;
|
|
66859
|
+
y: number;
|
|
66860
|
+
};
|
|
66861
|
+
bounds: {
|
|
66862
|
+
left: number;
|
|
66863
|
+
top: number;
|
|
66864
|
+
right: number;
|
|
66865
|
+
bottom: number;
|
|
66866
|
+
};
|
|
66867
|
+
width: number;
|
|
66868
|
+
height: number;
|
|
66869
|
+
};
|
|
66870
|
+
_setPositionFromLayout(newCenter: {
|
|
66871
|
+
x: number;
|
|
66872
|
+
y: number;
|
|
66873
|
+
}): void;
|
|
66874
|
+
doInitialPortMatching(): void;
|
|
66875
|
+
doInitialPcbPrimitiveRender(): void;
|
|
66876
|
+
doInitialPcbPortAttachment(): void;
|
|
66877
|
+
_moveCircuitJsonElements({ deltaX, deltaY, }: {
|
|
66878
|
+
deltaX: number;
|
|
66879
|
+
deltaY: number;
|
|
66880
|
+
}): void;
|
|
66881
|
+
}
|
|
66882
|
+
|
|
66883
|
+
declare class CourtyardCircle extends PrimitiveComponent<typeof courtyardCircleProps> {
|
|
66884
|
+
pcb_courtyard_circle_id: string | null;
|
|
66885
|
+
isPcbPrimitive: boolean;
|
|
66886
|
+
get config(): {
|
|
66887
|
+
componentName: string;
|
|
66888
|
+
zodProps: zod.ZodObject<Omit<{
|
|
66889
|
+
pcbX: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66890
|
+
pcbY: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66891
|
+
pcbLeftEdgeX: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66892
|
+
pcbRightEdgeX: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66893
|
+
pcbTopEdgeY: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66894
|
+
pcbBottomEdgeY: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>]>>;
|
|
66895
|
+
pcbOffsetX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66896
|
+
pcbOffsetY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66897
|
+
pcbRotation: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66898
|
+
pcbPositionAnchor: zod.ZodOptional<zod.ZodString>;
|
|
66899
|
+
pcbPositionMode: zod.ZodOptional<zod.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
66900
|
+
layer: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, zod.ZodObject<{
|
|
66901
|
+
name: zod.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
66902
|
+
}, "strip", zod.ZodTypeAny, {
|
|
66903
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
66904
|
+
}, {
|
|
66905
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
66906
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
66907
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
66908
|
+
}>>;
|
|
66909
|
+
pcbMarginTop: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66910
|
+
pcbMarginRight: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66911
|
+
pcbMarginBottom: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66912
|
+
pcbMarginLeft: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66913
|
+
pcbMarginX: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66914
|
+
pcbMarginY: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66915
|
+
pcbStyle: zod.ZodOptional<zod.ZodObject<{
|
|
66916
|
+
silkscreenFontSize: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66917
|
+
viaPadDiameter: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66918
|
+
viaHoleDiameter: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
66919
|
+
silkscreenTextPosition: zod.ZodOptional<zod.ZodUnion<[zod.ZodEnum<["centered", "outside", "none"]>, zod.ZodObject<{
|
|
66920
|
+
offsetX: zod.ZodNumber;
|
|
66921
|
+
offsetY: zod.ZodNumber;
|
|
66922
|
+
}, "strip", zod.ZodTypeAny, {
|
|
66923
|
+
offsetX: number;
|
|
66924
|
+
offsetY: number;
|
|
66925
|
+
}, {
|
|
66926
|
+
offsetX: number;
|
|
66927
|
+
offsetY: number;
|
|
66928
|
+
}>]>>;
|
|
66929
|
+
silkscreenTextVisibility: zod.ZodOptional<zod.ZodEnum<["hidden", "visible", "inherit"]>>;
|
|
66930
|
+
}, "strip", zod.ZodTypeAny, {
|
|
66931
|
+
silkscreenFontSize?: number | undefined;
|
|
66932
|
+
viaPadDiameter?: number | undefined;
|
|
66933
|
+
viaHoleDiameter?: number | undefined;
|
|
66934
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66935
|
+
offsetX: number;
|
|
66936
|
+
offsetY: number;
|
|
66937
|
+
} | undefined;
|
|
66938
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66939
|
+
}, {
|
|
66940
|
+
silkscreenFontSize?: string | number | undefined;
|
|
66941
|
+
viaPadDiameter?: string | number | undefined;
|
|
66942
|
+
viaHoleDiameter?: string | number | undefined;
|
|
66943
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66944
|
+
offsetX: number;
|
|
66945
|
+
offsetY: number;
|
|
66946
|
+
} | undefined;
|
|
66947
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66948
|
+
}>>;
|
|
66949
|
+
pcbRelative: zod.ZodOptional<zod.ZodBoolean>;
|
|
66950
|
+
relative: zod.ZodOptional<zod.ZodBoolean>;
|
|
66951
|
+
}, "pcbRotation"> & {
|
|
66952
|
+
radius: zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>;
|
|
66953
|
+
}, "strip", zod.ZodTypeAny, {
|
|
66954
|
+
radius: number;
|
|
66955
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
66956
|
+
pcbX?: string | number | undefined;
|
|
66957
|
+
pcbY?: string | number | undefined;
|
|
66958
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
66959
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
66960
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66961
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66962
|
+
pcbOffsetX?: number | undefined;
|
|
66963
|
+
pcbOffsetY?: number | undefined;
|
|
66964
|
+
pcbPositionAnchor?: string | undefined;
|
|
66965
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66966
|
+
pcbMarginTop?: number | undefined;
|
|
66967
|
+
pcbMarginRight?: number | undefined;
|
|
66968
|
+
pcbMarginBottom?: number | undefined;
|
|
66969
|
+
pcbMarginLeft?: number | undefined;
|
|
66970
|
+
pcbMarginX?: number | undefined;
|
|
66971
|
+
pcbMarginY?: number | undefined;
|
|
66972
|
+
pcbStyle?: {
|
|
66973
|
+
silkscreenFontSize?: number | undefined;
|
|
66974
|
+
viaPadDiameter?: number | undefined;
|
|
66975
|
+
viaHoleDiameter?: number | undefined;
|
|
66976
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66977
|
+
offsetX: number;
|
|
66978
|
+
offsetY: number;
|
|
66979
|
+
} | undefined;
|
|
66980
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66981
|
+
} | undefined;
|
|
66982
|
+
pcbRelative?: boolean | undefined;
|
|
66983
|
+
relative?: boolean | undefined;
|
|
66984
|
+
}, {
|
|
66985
|
+
radius: string | number;
|
|
66986
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
66987
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
66988
|
+
} | undefined;
|
|
66320
66989
|
pcbX?: string | number | undefined;
|
|
66321
66990
|
pcbY?: string | number | undefined;
|
|
66322
66991
|
pcbLeftEdgeX?: string | number | undefined;
|
|
@@ -66345,41 +67014,13 @@ declare class PlatedHole extends PrimitiveComponent<typeof platedHoleProps> {
|
|
|
66345
67014
|
} | undefined;
|
|
66346
67015
|
pcbRelative?: boolean | undefined;
|
|
66347
67016
|
relative?: boolean | undefined;
|
|
66348
|
-
connectsTo?: string | string[] | undefined;
|
|
66349
|
-
holeDiameter?: string | number | undefined;
|
|
66350
|
-
portHints?: (string | number)[] | undefined;
|
|
66351
|
-
solderMaskMargin?: string | number | undefined;
|
|
66352
|
-
coveredWithSolderMask?: boolean | undefined;
|
|
66353
|
-
holeWidth?: string | number | undefined;
|
|
66354
|
-
holeHeight?: string | number | undefined;
|
|
66355
67017
|
}>;
|
|
66356
67018
|
};
|
|
66357
|
-
|
|
67019
|
+
doInitialPcbPrimitiveRender(): void;
|
|
66358
67020
|
getPcbSize(): {
|
|
66359
67021
|
width: number;
|
|
66360
67022
|
height: number;
|
|
66361
67023
|
};
|
|
66362
|
-
_getPcbCircuitJsonBounds(): {
|
|
66363
|
-
center: {
|
|
66364
|
-
x: number;
|
|
66365
|
-
y: number;
|
|
66366
|
-
};
|
|
66367
|
-
bounds: {
|
|
66368
|
-
left: number;
|
|
66369
|
-
top: number;
|
|
66370
|
-
right: number;
|
|
66371
|
-
bottom: number;
|
|
66372
|
-
};
|
|
66373
|
-
width: number;
|
|
66374
|
-
height: number;
|
|
66375
|
-
};
|
|
66376
|
-
_setPositionFromLayout(newCenter: {
|
|
66377
|
-
x: number;
|
|
66378
|
-
y: number;
|
|
66379
|
-
}): void;
|
|
66380
|
-
doInitialPortMatching(): void;
|
|
66381
|
-
doInitialPcbPrimitiveRender(): void;
|
|
66382
|
-
doInitialPcbPortAttachment(): void;
|
|
66383
67024
|
_moveCircuitJsonElements({ deltaX, deltaY, }: {
|
|
66384
67025
|
deltaX: number;
|
|
66385
67026
|
deltaY: number;
|
|
@@ -80678,7 +81319,7 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80678
81319
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
80679
81320
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
80680
81321
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
80681
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
81322
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
80682
81323
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
80683
81324
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
80684
81325
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -80687,8 +81328,14 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80687
81328
|
}, {
|
|
80688
81329
|
pins: (string | number)[];
|
|
80689
81330
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81331
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
81332
|
+
pins: (string | number)[];
|
|
81333
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81334
|
+
}, (string | number)[] | {
|
|
81335
|
+
pins: (string | number)[];
|
|
81336
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80690
81337
|
}>>;
|
|
80691
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
81338
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
80692
81339
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
80693
81340
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
80694
81341
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -80697,8 +81344,14 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80697
81344
|
}, {
|
|
80698
81345
|
pins: (string | number)[];
|
|
80699
81346
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81347
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
81348
|
+
pins: (string | number)[];
|
|
81349
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81350
|
+
}, (string | number)[] | {
|
|
81351
|
+
pins: (string | number)[];
|
|
81352
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80700
81353
|
}>>;
|
|
80701
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
81354
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
80702
81355
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
80703
81356
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
80704
81357
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -80707,8 +81360,14 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80707
81360
|
}, {
|
|
80708
81361
|
pins: (string | number)[];
|
|
80709
81362
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81363
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
81364
|
+
pins: (string | number)[];
|
|
81365
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81366
|
+
}, (string | number)[] | {
|
|
81367
|
+
pins: (string | number)[];
|
|
81368
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80710
81369
|
}>>;
|
|
80711
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
81370
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
80712
81371
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
80713
81372
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
80714
81373
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -80717,6 +81376,12 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80717
81376
|
}, {
|
|
80718
81377
|
pins: (string | number)[];
|
|
80719
81378
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81379
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
81380
|
+
pins: (string | number)[];
|
|
81381
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81382
|
+
}, (string | number)[] | {
|
|
81383
|
+
pins: (string | number)[];
|
|
81384
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80720
81385
|
}>>;
|
|
80721
81386
|
}, "strip", zod.ZodTypeAny, {
|
|
80722
81387
|
leftSize?: number | undefined;
|
|
@@ -80748,19 +81413,19 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
80748
81413
|
topSize?: number | undefined;
|
|
80749
81414
|
rightSize?: number | undefined;
|
|
80750
81415
|
bottomSize?: number | undefined;
|
|
80751
|
-
leftSide?: {
|
|
81416
|
+
leftSide?: (string | number)[] | {
|
|
80752
81417
|
pins: (string | number)[];
|
|
80753
81418
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80754
81419
|
} | undefined;
|
|
80755
|
-
topSide?: {
|
|
81420
|
+
topSide?: (string | number)[] | {
|
|
80756
81421
|
pins: (string | number)[];
|
|
80757
81422
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80758
81423
|
} | undefined;
|
|
80759
|
-
rightSide?: {
|
|
81424
|
+
rightSide?: (string | number)[] | {
|
|
80760
81425
|
pins: (string | number)[];
|
|
80761
81426
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80762
81427
|
} | undefined;
|
|
80763
|
-
bottomSide?: {
|
|
81428
|
+
bottomSide?: (string | number)[] | {
|
|
80764
81429
|
pins: (string | number)[];
|
|
80765
81430
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
80766
81431
|
} | undefined;
|
|
@@ -81852,19 +82517,19 @@ declare class PinHeader extends NormalComponent<typeof pinHeaderProps> {
|
|
|
81852
82517
|
topSize?: number | undefined;
|
|
81853
82518
|
rightSize?: number | undefined;
|
|
81854
82519
|
bottomSize?: number | undefined;
|
|
81855
|
-
leftSide?: {
|
|
82520
|
+
leftSide?: (string | number)[] | {
|
|
81856
82521
|
pins: (string | number)[];
|
|
81857
82522
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81858
82523
|
} | undefined;
|
|
81859
|
-
topSide?: {
|
|
82524
|
+
topSide?: (string | number)[] | {
|
|
81860
82525
|
pins: (string | number)[];
|
|
81861
82526
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81862
82527
|
} | undefined;
|
|
81863
|
-
rightSide?: {
|
|
82528
|
+
rightSide?: (string | number)[] | {
|
|
81864
82529
|
pins: (string | number)[];
|
|
81865
82530
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81866
82531
|
} | undefined;
|
|
81867
|
-
bottomSide?: {
|
|
82532
|
+
bottomSide?: (string | number)[] | {
|
|
81868
82533
|
pins: (string | number)[];
|
|
81869
82534
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
81870
82535
|
} | undefined;
|
|
@@ -97221,7 +97886,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97221
97886
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97222
97887
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97223
97888
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97224
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
97889
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97225
97890
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97226
97891
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97227
97892
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97230,8 +97895,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97230
97895
|
}, {
|
|
97231
97896
|
pins: (string | number)[];
|
|
97232
97897
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97898
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
97899
|
+
pins: (string | number)[];
|
|
97900
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97901
|
+
}, (string | number)[] | {
|
|
97902
|
+
pins: (string | number)[];
|
|
97903
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97233
97904
|
}>>;
|
|
97234
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
97905
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97235
97906
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97236
97907
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97237
97908
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97240,8 +97911,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97240
97911
|
}, {
|
|
97241
97912
|
pins: (string | number)[];
|
|
97242
97913
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97914
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
97915
|
+
pins: (string | number)[];
|
|
97916
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97917
|
+
}, (string | number)[] | {
|
|
97918
|
+
pins: (string | number)[];
|
|
97919
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97243
97920
|
}>>;
|
|
97244
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
97921
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97245
97922
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97246
97923
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97247
97924
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97250,8 +97927,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97250
97927
|
}, {
|
|
97251
97928
|
pins: (string | number)[];
|
|
97252
97929
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97930
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
97931
|
+
pins: (string | number)[];
|
|
97932
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97933
|
+
}, (string | number)[] | {
|
|
97934
|
+
pins: (string | number)[];
|
|
97935
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97253
97936
|
}>>;
|
|
97254
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
97937
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97255
97938
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97256
97939
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97257
97940
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97260,6 +97943,12 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97260
97943
|
}, {
|
|
97261
97944
|
pins: (string | number)[];
|
|
97262
97945
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97946
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
97947
|
+
pins: (string | number)[];
|
|
97948
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97949
|
+
}, (string | number)[] | {
|
|
97950
|
+
pins: (string | number)[];
|
|
97951
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97263
97952
|
}>>;
|
|
97264
97953
|
}, "strip", zod.ZodTypeAny, {
|
|
97265
97954
|
leftSize?: number | undefined;
|
|
@@ -97291,19 +97980,19 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97291
97980
|
topSize?: number | undefined;
|
|
97292
97981
|
rightSize?: number | undefined;
|
|
97293
97982
|
bottomSize?: number | undefined;
|
|
97294
|
-
leftSide?: {
|
|
97983
|
+
leftSide?: (string | number)[] | {
|
|
97295
97984
|
pins: (string | number)[];
|
|
97296
97985
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97297
97986
|
} | undefined;
|
|
97298
|
-
topSide?: {
|
|
97987
|
+
topSide?: (string | number)[] | {
|
|
97299
97988
|
pins: (string | number)[];
|
|
97300
97989
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97301
97990
|
} | undefined;
|
|
97302
|
-
rightSide?: {
|
|
97991
|
+
rightSide?: (string | number)[] | {
|
|
97303
97992
|
pins: (string | number)[];
|
|
97304
97993
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97305
97994
|
} | undefined;
|
|
97306
|
-
bottomSide?: {
|
|
97995
|
+
bottomSide?: (string | number)[] | {
|
|
97307
97996
|
pins: (string | number)[];
|
|
97308
97997
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97309
97998
|
} | undefined;
|
|
@@ -97321,7 +98010,7 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97321
98010
|
rightPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97322
98011
|
topPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97323
98012
|
bottomPinCount: zod.ZodOptional<zod.ZodNumber>;
|
|
97324
|
-
leftSide: zod.ZodOptional<zod.ZodObject<{
|
|
98013
|
+
leftSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97325
98014
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97326
98015
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97327
98016
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97330,8 +98019,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97330
98019
|
}, {
|
|
97331
98020
|
pins: (string | number)[];
|
|
97332
98021
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98022
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
98023
|
+
pins: (string | number)[];
|
|
98024
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98025
|
+
}, (string | number)[] | {
|
|
98026
|
+
pins: (string | number)[];
|
|
98027
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97333
98028
|
}>>;
|
|
97334
|
-
rightSide: zod.ZodOptional<zod.ZodObject<{
|
|
98029
|
+
rightSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97335
98030
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97336
98031
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97337
98032
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97340,8 +98035,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97340
98035
|
}, {
|
|
97341
98036
|
pins: (string | number)[];
|
|
97342
98037
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98038
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
98039
|
+
pins: (string | number)[];
|
|
98040
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98041
|
+
}, (string | number)[] | {
|
|
98042
|
+
pins: (string | number)[];
|
|
98043
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97343
98044
|
}>>;
|
|
97344
|
-
topSide: zod.ZodOptional<zod.ZodObject<{
|
|
98045
|
+
topSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97345
98046
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97346
98047
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97347
98048
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97350,8 +98051,14 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97350
98051
|
}, {
|
|
97351
98052
|
pins: (string | number)[];
|
|
97352
98053
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98054
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
98055
|
+
pins: (string | number)[];
|
|
98056
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98057
|
+
}, (string | number)[] | {
|
|
98058
|
+
pins: (string | number)[];
|
|
98059
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97353
98060
|
}>>;
|
|
97354
|
-
bottomSide: zod.ZodOptional<zod.ZodObject<{
|
|
98061
|
+
bottomSide: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
97355
98062
|
pins: zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">;
|
|
97356
98063
|
direction: zod.ZodUnion<[zod.ZodLiteral<"top-to-bottom">, zod.ZodLiteral<"left-to-right">, zod.ZodLiteral<"bottom-to-top">, zod.ZodLiteral<"right-to-left">]>;
|
|
97357
98064
|
}, "strip", zod.ZodTypeAny, {
|
|
@@ -97360,6 +98067,12 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97360
98067
|
}, {
|
|
97361
98068
|
pins: (string | number)[];
|
|
97362
98069
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98070
|
+
}>, zod.ZodArray<zod.ZodUnion<[zod.ZodNumber, zod.ZodString]>, "many">]>, {
|
|
98071
|
+
pins: (string | number)[];
|
|
98072
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98073
|
+
}, (string | number)[] | {
|
|
98074
|
+
pins: (string | number)[];
|
|
98075
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97363
98076
|
}>>;
|
|
97364
98077
|
}, "strip", zod.ZodTypeAny, {
|
|
97365
98078
|
leftSize?: number | undefined;
|
|
@@ -97391,19 +98104,19 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
97391
98104
|
topSize?: number | undefined;
|
|
97392
98105
|
rightSize?: number | undefined;
|
|
97393
98106
|
bottomSize?: number | undefined;
|
|
97394
|
-
leftSide?: {
|
|
98107
|
+
leftSide?: (string | number)[] | {
|
|
97395
98108
|
pins: (string | number)[];
|
|
97396
98109
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97397
98110
|
} | undefined;
|
|
97398
|
-
topSide?: {
|
|
98111
|
+
topSide?: (string | number)[] | {
|
|
97399
98112
|
pins: (string | number)[];
|
|
97400
98113
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97401
98114
|
} | undefined;
|
|
97402
|
-
rightSide?: {
|
|
98115
|
+
rightSide?: (string | number)[] | {
|
|
97403
98116
|
pins: (string | number)[];
|
|
97404
98117
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97405
98118
|
} | undefined;
|
|
97406
|
-
bottomSide?: {
|
|
98119
|
+
bottomSide?: (string | number)[] | {
|
|
97407
98120
|
pins: (string | number)[];
|
|
97408
98121
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
97409
98122
|
} | undefined;
|
|
@@ -98529,19 +99242,19 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
98529
99242
|
topSize?: number | undefined;
|
|
98530
99243
|
rightSize?: number | undefined;
|
|
98531
99244
|
bottomSize?: number | undefined;
|
|
98532
|
-
leftSide?: {
|
|
99245
|
+
leftSide?: (string | number)[] | {
|
|
98533
99246
|
pins: (string | number)[];
|
|
98534
99247
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98535
99248
|
} | undefined;
|
|
98536
|
-
topSide?: {
|
|
99249
|
+
topSide?: (string | number)[] | {
|
|
98537
99250
|
pins: (string | number)[];
|
|
98538
99251
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98539
99252
|
} | undefined;
|
|
98540
|
-
rightSide?: {
|
|
99253
|
+
rightSide?: (string | number)[] | {
|
|
98541
99254
|
pins: (string | number)[];
|
|
98542
99255
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98543
99256
|
} | undefined;
|
|
98544
|
-
bottomSide?: {
|
|
99257
|
+
bottomSide?: (string | number)[] | {
|
|
98545
99258
|
pins: (string | number)[];
|
|
98546
99259
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98547
99260
|
} | undefined;
|
|
@@ -98573,19 +99286,19 @@ declare class PushButton extends NormalComponent<typeof pushButtonProps, Passive
|
|
|
98573
99286
|
topSize?: number | undefined;
|
|
98574
99287
|
rightSize?: number | undefined;
|
|
98575
99288
|
bottomSize?: number | undefined;
|
|
98576
|
-
leftSide?: {
|
|
99289
|
+
leftSide?: (string | number)[] | {
|
|
98577
99290
|
pins: (string | number)[];
|
|
98578
99291
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98579
99292
|
} | undefined;
|
|
98580
|
-
topSide?: {
|
|
99293
|
+
topSide?: (string | number)[] | {
|
|
98581
99294
|
pins: (string | number)[];
|
|
98582
99295
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98583
99296
|
} | undefined;
|
|
98584
|
-
rightSide?: {
|
|
99297
|
+
rightSide?: (string | number)[] | {
|
|
98585
99298
|
pins: (string | number)[];
|
|
98586
99299
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98587
99300
|
} | undefined;
|
|
98588
|
-
bottomSide?: {
|
|
99301
|
+
bottomSide?: (string | number)[] | {
|
|
98589
99302
|
pins: (string | number)[];
|
|
98590
99303
|
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
98591
99304
|
} | undefined;
|
|
@@ -114410,7 +115123,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
|
|
|
114410
115123
|
showAsTranslucentModel?: boolean | undefined;
|
|
114411
115124
|
mfn?: string | undefined;
|
|
114412
115125
|
manufacturerPartNumber?: string | undefined;
|
|
114413
|
-
connections?: Partial<Record<"
|
|
115126
|
+
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
114414
115127
|
}, {
|
|
114415
115128
|
name: string;
|
|
114416
115129
|
symbol?: _tscircuit_props.SymbolProp | undefined;
|
|
@@ -114908,7 +115621,7 @@ declare class OpAmp extends NormalComponent<typeof opampProps, OpAmpPinLabels> {
|
|
|
114908
115621
|
showAsTranslucentModel?: boolean | undefined;
|
|
114909
115622
|
mfn?: string | undefined;
|
|
114910
115623
|
manufacturerPartNumber?: string | undefined;
|
|
114911
|
-
connections?: Partial<Record<"
|
|
115624
|
+
connections?: Partial<Record<"output" | "inverting_input" | "non_inverting_input" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
114912
115625
|
}>;
|
|
114913
115626
|
sourceFtype: Ftype;
|
|
114914
115627
|
};
|
|
@@ -130537,6 +131250,7 @@ interface TscircuitElements {
|
|
|
130537
131250
|
silkscreenrect: _tscircuit_props.SilkscreenRectProps;
|
|
130538
131251
|
silkscreencircle: _tscircuit_props.SilkscreenCircleProps;
|
|
130539
131252
|
tracehint: _tscircuit_props.TraceHintProps;
|
|
131253
|
+
courtyardcircle: _tscircuit_props.CourtyardCircleProps;
|
|
130540
131254
|
pcbtrace: _tscircuit_props.PcbTraceProps;
|
|
130541
131255
|
fabricationnoterect: _tscircuit_props.FabricationNoteRectProps;
|
|
130542
131256
|
pcbnoteline: _tscircuit_props.PcbNoteLineProps;
|
|
@@ -130579,4 +131293,4 @@ declare module "react/jsx-runtime" {
|
|
|
130579
131293
|
}
|
|
130580
131294
|
}
|
|
130581
131295
|
|
|
130582
|
-
export { AnalogSimulation, type AsyncEffect, type AutorouterCompleteEvent, type AutorouterErrorEvent, type AutorouterEvent, type AutorouterProgressEvent, type AutoroutingEndEvent, type AutoroutingErrorEvent, type AutoroutingProgressEvent, type AutoroutingStartEvent, Battery, Board, Breakout, BreakoutPoint, CadAssembly, CadModel, Capacitor, Chip, Circuit, type ComponentWithPins, Constraint, CopperPour, CopperText, Crystal, CurrentSource, Cutout, type DebugLogOutputEvent, Diode, FabricationNoteDimension, FabricationNotePath, FabricationNoteRect, FabricationNoteText, Fiducial, Footprint, Fuse, type GenericConnectionsAndSelectorsSel, type GenericLocalAutorouter, Group, Hole, type IRenderable, Inductor, Interconnect, Jumper, Keepout, Led, type LocalCacheEngine, Mosfet, Net, NetLabel, NormalComponent, type Obstacle, OpAmp, type PackingEndEvent, type PackingErrorEvent, type PackingStartEvent, Panel, PcbNoteDimension, PcbNoteLine, PcbNotePath, PcbNoteRect, PcbNoteText, PcbTrace, PinHeader, type PinLabelSpec, Pinout, PlatedHole, Port, Potentiometer, PowerSource, PrimitiveComponent, Project, PushButton, type RenderPhase, type RenderPhaseFn, type RenderPhaseFunctions, type RenderPhaseStates, Renderable, Resistor, Resonator, RootCircuit, type RootCircuitEventName, SOLVERS, SchematicArc, SchematicBox, SchematicCell, SchematicCircle, SchematicLine, SchematicPath, SchematicRect, SchematicRow, SchematicTable, SchematicText, type Sel, SilkscreenCircle, SilkscreenLine, SilkscreenPath, SilkscreenRect, SilkscreenText, type SimpleRouteConnection, type SimpleRouteJson, type SimplifiedPcbTrace, SmtPad, SolderJumper, type SolverName, type SolverStartedEvent, Subcircuit, Subpanel, Switch, SymbolComponent as Symbol, TestPoint, Trace, TraceHint, Transistor, Via, VoltageProbe, VoltageSource, applyEditEvents, applyEditEventsToManualEditsFile, applyPcbEditEventsToManualEditsFile, applySchematicEditEventsToManualEditsFile, createUseComponent, getPhaseTimingsFromRenderEvents, getSimpleRouteJsonFromCircuitJson, normalizePinLabels, orderedRenderPhases, renderPhaseIndexMap, resolveStaticFileImport, sel, useCapacitor, useChip, useDiode, useLed, useRenderedCircuit, useResistor };
|
|
131296
|
+
export { AnalogSimulation, type AsyncEffect, type AutorouterCompleteEvent, type AutorouterErrorEvent, type AutorouterEvent, type AutorouterProgressEvent, type AutoroutingEndEvent, type AutoroutingErrorEvent, type AutoroutingProgressEvent, type AutoroutingStartEvent, Battery, Board, Breakout, BreakoutPoint, CadAssembly, CadModel, Capacitor, Chip, Circuit, type ComponentWithPins, Constraint, CopperPour, CopperText, CourtyardCircle, Crystal, CurrentSource, Cutout, type DebugLogOutputEvent, Diode, FabricationNoteDimension, FabricationNotePath, FabricationNoteRect, FabricationNoteText, Fiducial, Footprint, Fuse, type GenericConnectionsAndSelectorsSel, type GenericLocalAutorouter, Group, Hole, type IRenderable, Inductor, Interconnect, Jumper, Keepout, Led, type LocalCacheEngine, Mosfet, Net, NetLabel, NormalComponent, type Obstacle, OpAmp, type PackingEndEvent, type PackingErrorEvent, type PackingStartEvent, Panel, PcbNoteDimension, PcbNoteLine, PcbNotePath, PcbNoteRect, PcbNoteText, PcbTrace, PinHeader, type PinLabelSpec, Pinout, PlatedHole, Port, Potentiometer, PowerSource, PrimitiveComponent, Project, PushButton, type RenderPhase, type RenderPhaseFn, type RenderPhaseFunctions, type RenderPhaseStates, Renderable, Resistor, Resonator, RootCircuit, type RootCircuitEventName, SOLVERS, SchematicArc, SchematicBox, SchematicCell, SchematicCircle, SchematicLine, SchematicPath, SchematicRect, SchematicRow, SchematicTable, SchematicText, type Sel, SilkscreenCircle, SilkscreenLine, SilkscreenPath, SilkscreenRect, SilkscreenText, type SimpleRouteConnection, type SimpleRouteJson, type SimplifiedPcbTrace, SmtPad, SolderJumper, type SolverName, type SolverStartedEvent, Subcircuit, Subpanel, Switch, SymbolComponent as Symbol, TestPoint, Trace, TraceHint, Transistor, Via, VoltageProbe, VoltageSource, applyEditEvents, applyEditEventsToManualEditsFile, applyPcbEditEventsToManualEditsFile, applySchematicEditEventsToManualEditsFile, createUseComponent, getPhaseTimingsFromRenderEvents, getSimpleRouteJsonFromCircuitJson, normalizePinLabels, orderedRenderPhases, renderPhaseIndexMap, resolveStaticFileImport, sel, useCapacitor, useChip, useDiode, useLed, useRenderedCircuit, useResistor };
|