@tscircuit/props 0.0.27 → 0.0.29
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 +1045 -107
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2748,124 +2748,1062 @@ declare const ledProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
2748
2748
|
}>;
|
|
2749
2749
|
declare const ledPins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
2750
2750
|
type LedProps = z.input<typeof ledProps>;
|
|
2751
|
-
declare const
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
pcbX: number;
|
|
2761
|
-
pcbY: number;
|
|
2762
|
-
width: number;
|
|
2763
|
-
height: number;
|
|
2764
|
-
children?: any;
|
|
2765
|
-
layout?: any;
|
|
2766
|
-
routingDisabled?: boolean | undefined;
|
|
2767
|
-
}, {
|
|
2768
|
-
width: string | number;
|
|
2769
|
-
height: string | number;
|
|
2770
|
-
pcbX?: string | number | undefined;
|
|
2771
|
-
pcbY?: string | number | undefined;
|
|
2772
|
-
children?: any;
|
|
2773
|
-
layout?: any;
|
|
2774
|
-
routingDisabled?: boolean | undefined;
|
|
2775
|
-
}>;
|
|
2776
|
-
type BoardProps = z.input<typeof boardProps>;
|
|
2777
|
-
declare const distanceOrMultiplier: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["2x", "3x", "4x"]>]>;
|
|
2778
|
-
declare const schematicPortArrangement: z.ZodUnion<[z.ZodObject<{
|
|
2779
|
-
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
2780
|
-
topSize: z.ZodOptional<z.ZodNumber>;
|
|
2781
|
-
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
2782
|
-
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
2783
|
-
}, "strip", z.ZodTypeAny, {
|
|
2784
|
-
leftSize?: number | undefined;
|
|
2785
|
-
topSize?: number | undefined;
|
|
2786
|
-
rightSize?: number | undefined;
|
|
2787
|
-
bottomSize?: number | undefined;
|
|
2788
|
-
}, {
|
|
2789
|
-
leftSize?: number | undefined;
|
|
2790
|
-
topSize?: number | undefined;
|
|
2791
|
-
rightSize?: number | undefined;
|
|
2792
|
-
bottomSize?: number | undefined;
|
|
2793
|
-
}>, z.ZodObject<{
|
|
2794
|
-
leftSide: z.ZodOptional<z.ZodObject<{
|
|
2795
|
-
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
2796
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
2751
|
+
declare const switchProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2752
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2753
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2754
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2755
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2756
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2757
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2758
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
2759
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
2797
2760
|
}, "strip", z.ZodTypeAny, {
|
|
2798
|
-
|
|
2799
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
2761
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2800
2762
|
}, {
|
|
2801
|
-
|
|
2802
|
-
|
|
2763
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2764
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
2765
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2803
2766
|
}>>;
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2767
|
+
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
2768
|
+
}, {
|
|
2769
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
2770
|
+
}>, {
|
|
2771
|
+
name: z.ZodString;
|
|
2772
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2773
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
2774
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2775
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2776
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2777
|
+
}, "strip", z.ZodTypeAny, {
|
|
2778
|
+
x: string | number;
|
|
2779
|
+
y: string | number;
|
|
2780
|
+
z: string | number;
|
|
2781
|
+
}, {
|
|
2782
|
+
x: string | number;
|
|
2783
|
+
y: string | number;
|
|
2784
|
+
z: string | number;
|
|
2785
|
+
}>]>>;
|
|
2786
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
2787
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2788
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2789
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2790
|
+
}, "strip", z.ZodTypeAny, {
|
|
2791
|
+
x: string | number;
|
|
2792
|
+
y: string | number;
|
|
2793
|
+
z: string | number;
|
|
2794
|
+
}, {
|
|
2795
|
+
x: string | number;
|
|
2796
|
+
y: string | number;
|
|
2797
|
+
z: string | number;
|
|
2798
|
+
}>>;
|
|
2799
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2800
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2801
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2802
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2803
|
+
}, "strip", z.ZodTypeAny, {
|
|
2804
|
+
x: string | number;
|
|
2805
|
+
y: string | number;
|
|
2806
|
+
z: string | number;
|
|
2807
|
+
}, {
|
|
2808
|
+
x: string | number;
|
|
2809
|
+
y: string | number;
|
|
2810
|
+
z: string | number;
|
|
2811
|
+
}>>;
|
|
2810
2812
|
}, {
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2813
|
+
stlUrl: z.ZodString;
|
|
2814
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2815
|
+
stlUrl: string;
|
|
2816
|
+
rotationOffset?: number | {
|
|
2817
|
+
x: string | number;
|
|
2818
|
+
y: string | number;
|
|
2819
|
+
z: string | number;
|
|
2820
|
+
} | undefined;
|
|
2821
|
+
positionOffset?: {
|
|
2822
|
+
x: string | number;
|
|
2823
|
+
y: string | number;
|
|
2824
|
+
z: string | number;
|
|
2825
|
+
} | undefined;
|
|
2826
|
+
size?: {
|
|
2827
|
+
x: string | number;
|
|
2828
|
+
y: string | number;
|
|
2829
|
+
z: string | number;
|
|
2830
|
+
} | undefined;
|
|
2820
2831
|
}, {
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2832
|
+
stlUrl: string;
|
|
2833
|
+
rotationOffset?: number | {
|
|
2834
|
+
x: string | number;
|
|
2835
|
+
y: string | number;
|
|
2836
|
+
z: string | number;
|
|
2837
|
+
} | undefined;
|
|
2838
|
+
positionOffset?: {
|
|
2839
|
+
x: string | number;
|
|
2840
|
+
y: string | number;
|
|
2841
|
+
z: string | number;
|
|
2842
|
+
} | undefined;
|
|
2843
|
+
size?: {
|
|
2844
|
+
x: string | number;
|
|
2845
|
+
y: string | number;
|
|
2846
|
+
z: string | number;
|
|
2847
|
+
} | undefined;
|
|
2848
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2849
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
2850
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2851
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2852
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2853
|
+
}, "strip", z.ZodTypeAny, {
|
|
2854
|
+
x: string | number;
|
|
2855
|
+
y: string | number;
|
|
2856
|
+
z: string | number;
|
|
2857
|
+
}, {
|
|
2858
|
+
x: string | number;
|
|
2859
|
+
y: string | number;
|
|
2860
|
+
z: string | number;
|
|
2861
|
+
}>]>>;
|
|
2862
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
2863
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2864
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2865
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2866
|
+
}, "strip", z.ZodTypeAny, {
|
|
2867
|
+
x: string | number;
|
|
2868
|
+
y: string | number;
|
|
2869
|
+
z: string | number;
|
|
2870
|
+
}, {
|
|
2871
|
+
x: string | number;
|
|
2872
|
+
y: string | number;
|
|
2873
|
+
z: string | number;
|
|
2874
|
+
}>>;
|
|
2875
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2876
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2877
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2878
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2879
|
+
}, "strip", z.ZodTypeAny, {
|
|
2880
|
+
x: string | number;
|
|
2881
|
+
y: string | number;
|
|
2882
|
+
z: string | number;
|
|
2883
|
+
}, {
|
|
2884
|
+
x: string | number;
|
|
2885
|
+
y: string | number;
|
|
2886
|
+
z: string | number;
|
|
2887
|
+
}>>;
|
|
2888
|
+
}, {
|
|
2889
|
+
objUrl: z.ZodString;
|
|
2890
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
2891
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2892
|
+
objUrl: string;
|
|
2893
|
+
rotationOffset?: number | {
|
|
2894
|
+
x: string | number;
|
|
2895
|
+
y: string | number;
|
|
2896
|
+
z: string | number;
|
|
2897
|
+
} | undefined;
|
|
2898
|
+
positionOffset?: {
|
|
2899
|
+
x: string | number;
|
|
2900
|
+
y: string | number;
|
|
2901
|
+
z: string | number;
|
|
2902
|
+
} | undefined;
|
|
2903
|
+
size?: {
|
|
2904
|
+
x: string | number;
|
|
2905
|
+
y: string | number;
|
|
2906
|
+
z: string | number;
|
|
2907
|
+
} | undefined;
|
|
2908
|
+
mtlUrl?: string | undefined;
|
|
2909
|
+
}, {
|
|
2910
|
+
objUrl: string;
|
|
2911
|
+
rotationOffset?: number | {
|
|
2912
|
+
x: string | number;
|
|
2913
|
+
y: string | number;
|
|
2914
|
+
z: string | number;
|
|
2915
|
+
} | undefined;
|
|
2916
|
+
positionOffset?: {
|
|
2917
|
+
x: string | number;
|
|
2918
|
+
y: string | number;
|
|
2919
|
+
z: string | number;
|
|
2920
|
+
} | undefined;
|
|
2921
|
+
size?: {
|
|
2922
|
+
x: string | number;
|
|
2923
|
+
y: string | number;
|
|
2924
|
+
z: string | number;
|
|
2925
|
+
} | undefined;
|
|
2926
|
+
mtlUrl?: string | undefined;
|
|
2927
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2928
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
2929
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2930
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2931
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2932
|
+
}, "strip", z.ZodTypeAny, {
|
|
2933
|
+
x: string | number;
|
|
2934
|
+
y: string | number;
|
|
2935
|
+
z: string | number;
|
|
2936
|
+
}, {
|
|
2937
|
+
x: string | number;
|
|
2938
|
+
y: string | number;
|
|
2939
|
+
z: string | number;
|
|
2940
|
+
}>]>>;
|
|
2941
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
2942
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2943
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2944
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2945
|
+
}, "strip", z.ZodTypeAny, {
|
|
2946
|
+
x: string | number;
|
|
2947
|
+
y: string | number;
|
|
2948
|
+
z: string | number;
|
|
2949
|
+
}, {
|
|
2950
|
+
x: string | number;
|
|
2951
|
+
y: string | number;
|
|
2952
|
+
z: string | number;
|
|
2953
|
+
}>>;
|
|
2954
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2955
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2956
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2957
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2958
|
+
}, "strip", z.ZodTypeAny, {
|
|
2959
|
+
x: string | number;
|
|
2960
|
+
y: string | number;
|
|
2961
|
+
z: string | number;
|
|
2962
|
+
}, {
|
|
2963
|
+
x: string | number;
|
|
2964
|
+
y: string | number;
|
|
2965
|
+
z: string | number;
|
|
2966
|
+
}>>;
|
|
2967
|
+
}, {
|
|
2968
|
+
jscad: z.ZodAny;
|
|
2969
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2970
|
+
rotationOffset?: number | {
|
|
2971
|
+
x: string | number;
|
|
2972
|
+
y: string | number;
|
|
2973
|
+
z: string | number;
|
|
2974
|
+
} | undefined;
|
|
2975
|
+
positionOffset?: {
|
|
2976
|
+
x: string | number;
|
|
2977
|
+
y: string | number;
|
|
2978
|
+
z: string | number;
|
|
2979
|
+
} | undefined;
|
|
2980
|
+
size?: {
|
|
2981
|
+
x: string | number;
|
|
2982
|
+
y: string | number;
|
|
2983
|
+
z: string | number;
|
|
2984
|
+
} | undefined;
|
|
2985
|
+
jscad?: any;
|
|
2986
|
+
}, {
|
|
2987
|
+
rotationOffset?: number | {
|
|
2988
|
+
x: string | number;
|
|
2989
|
+
y: string | number;
|
|
2990
|
+
z: string | number;
|
|
2991
|
+
} | undefined;
|
|
2992
|
+
positionOffset?: {
|
|
2993
|
+
x: string | number;
|
|
2994
|
+
y: string | number;
|
|
2995
|
+
z: string | number;
|
|
2996
|
+
} | undefined;
|
|
2997
|
+
size?: {
|
|
2998
|
+
x: string | number;
|
|
2999
|
+
y: string | number;
|
|
3000
|
+
z: string | number;
|
|
3001
|
+
} | undefined;
|
|
3002
|
+
jscad?: any;
|
|
3003
|
+
}>]>>;
|
|
3004
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
3005
|
+
}>, {
|
|
3006
|
+
ftype: z.ZodLiteral<"switch">;
|
|
3007
|
+
switchType: z.ZodDefault<z.ZodEnum<["spst"]>>;
|
|
3008
|
+
isNormallyClosed: z.ZodDefault<z.ZodBoolean>;
|
|
3009
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3010
|
+
ftype: "switch";
|
|
3011
|
+
name: string;
|
|
3012
|
+
switchType: "spst";
|
|
3013
|
+
isNormallyClosed: boolean;
|
|
3014
|
+
pcbX?: number | undefined;
|
|
3015
|
+
pcbY?: number | undefined;
|
|
3016
|
+
pcbRotation?: number | undefined;
|
|
3017
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3018
|
+
schX?: number | undefined;
|
|
3019
|
+
schY?: number | undefined;
|
|
3020
|
+
schRotation?: number | undefined;
|
|
3021
|
+
footprint?: Footprint | undefined;
|
|
3022
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3023
|
+
cadModel?: {
|
|
3024
|
+
stlUrl: string;
|
|
3025
|
+
rotationOffset?: number | {
|
|
3026
|
+
x: string | number;
|
|
3027
|
+
y: string | number;
|
|
3028
|
+
z: string | number;
|
|
3029
|
+
} | undefined;
|
|
3030
|
+
positionOffset?: {
|
|
3031
|
+
x: string | number;
|
|
3032
|
+
y: string | number;
|
|
3033
|
+
z: string | number;
|
|
3034
|
+
} | undefined;
|
|
3035
|
+
size?: {
|
|
3036
|
+
x: string | number;
|
|
3037
|
+
y: string | number;
|
|
3038
|
+
z: string | number;
|
|
3039
|
+
} | undefined;
|
|
3040
|
+
} | {
|
|
3041
|
+
objUrl: string;
|
|
3042
|
+
rotationOffset?: number | {
|
|
3043
|
+
x: string | number;
|
|
3044
|
+
y: string | number;
|
|
3045
|
+
z: string | number;
|
|
3046
|
+
} | undefined;
|
|
3047
|
+
positionOffset?: {
|
|
3048
|
+
x: string | number;
|
|
3049
|
+
y: string | number;
|
|
3050
|
+
z: string | number;
|
|
3051
|
+
} | undefined;
|
|
3052
|
+
size?: {
|
|
3053
|
+
x: string | number;
|
|
3054
|
+
y: string | number;
|
|
3055
|
+
z: string | number;
|
|
3056
|
+
} | undefined;
|
|
3057
|
+
mtlUrl?: string | undefined;
|
|
3058
|
+
} | {
|
|
3059
|
+
rotationOffset?: number | {
|
|
3060
|
+
x: string | number;
|
|
3061
|
+
y: string | number;
|
|
3062
|
+
z: string | number;
|
|
3063
|
+
} | undefined;
|
|
3064
|
+
positionOffset?: {
|
|
3065
|
+
x: string | number;
|
|
3066
|
+
y: string | number;
|
|
3067
|
+
z: string | number;
|
|
3068
|
+
} | undefined;
|
|
3069
|
+
size?: {
|
|
3070
|
+
x: string | number;
|
|
3071
|
+
y: string | number;
|
|
3072
|
+
z: string | number;
|
|
3073
|
+
} | undefined;
|
|
3074
|
+
jscad?: any;
|
|
3075
|
+
} | undefined;
|
|
3076
|
+
children?: any;
|
|
3077
|
+
}, {
|
|
3078
|
+
ftype: "switch";
|
|
3079
|
+
name: string;
|
|
3080
|
+
pcbX?: string | number | undefined;
|
|
3081
|
+
pcbY?: string | number | undefined;
|
|
3082
|
+
pcbRotation?: string | number | undefined;
|
|
3083
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3084
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3085
|
+
} | undefined;
|
|
3086
|
+
schX?: string | number | undefined;
|
|
3087
|
+
schY?: string | number | undefined;
|
|
3088
|
+
schRotation?: string | number | undefined;
|
|
3089
|
+
footprint?: Footprint | undefined;
|
|
3090
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3091
|
+
cadModel?: {
|
|
3092
|
+
stlUrl: string;
|
|
3093
|
+
rotationOffset?: number | {
|
|
3094
|
+
x: string | number;
|
|
3095
|
+
y: string | number;
|
|
3096
|
+
z: string | number;
|
|
3097
|
+
} | undefined;
|
|
3098
|
+
positionOffset?: {
|
|
3099
|
+
x: string | number;
|
|
3100
|
+
y: string | number;
|
|
3101
|
+
z: string | number;
|
|
3102
|
+
} | undefined;
|
|
3103
|
+
size?: {
|
|
3104
|
+
x: string | number;
|
|
3105
|
+
y: string | number;
|
|
3106
|
+
z: string | number;
|
|
3107
|
+
} | undefined;
|
|
3108
|
+
} | {
|
|
3109
|
+
objUrl: string;
|
|
3110
|
+
rotationOffset?: number | {
|
|
3111
|
+
x: string | number;
|
|
3112
|
+
y: string | number;
|
|
3113
|
+
z: string | number;
|
|
3114
|
+
} | undefined;
|
|
3115
|
+
positionOffset?: {
|
|
3116
|
+
x: string | number;
|
|
3117
|
+
y: string | number;
|
|
3118
|
+
z: string | number;
|
|
3119
|
+
} | undefined;
|
|
3120
|
+
size?: {
|
|
3121
|
+
x: string | number;
|
|
3122
|
+
y: string | number;
|
|
3123
|
+
z: string | number;
|
|
3124
|
+
} | undefined;
|
|
3125
|
+
mtlUrl?: string | undefined;
|
|
3126
|
+
} | {
|
|
3127
|
+
rotationOffset?: number | {
|
|
3128
|
+
x: string | number;
|
|
3129
|
+
y: string | number;
|
|
3130
|
+
z: string | number;
|
|
3131
|
+
} | undefined;
|
|
3132
|
+
positionOffset?: {
|
|
3133
|
+
x: string | number;
|
|
3134
|
+
y: string | number;
|
|
3135
|
+
z: string | number;
|
|
3136
|
+
} | undefined;
|
|
3137
|
+
size?: {
|
|
3138
|
+
x: string | number;
|
|
3139
|
+
y: string | number;
|
|
3140
|
+
z: string | number;
|
|
3141
|
+
} | undefined;
|
|
3142
|
+
jscad?: any;
|
|
3143
|
+
} | undefined;
|
|
3144
|
+
children?: any;
|
|
3145
|
+
switchType?: "spst" | undefined;
|
|
3146
|
+
isNormallyClosed?: boolean | undefined;
|
|
3147
|
+
}>;
|
|
3148
|
+
type SwitchProps = z.input<typeof switchProps>;
|
|
3149
|
+
declare const boardProps: z.ZodObject<{
|
|
3150
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3151
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3152
|
+
pcbX: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
|
|
3153
|
+
pcbY: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
|
|
3154
|
+
layout: z.ZodOptional<z.ZodAny>;
|
|
3155
|
+
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
3156
|
+
children: z.ZodAny;
|
|
3157
|
+
}, "strip", z.ZodTypeAny, {
|
|
3158
|
+
pcbX: number;
|
|
3159
|
+
pcbY: number;
|
|
3160
|
+
width: number;
|
|
3161
|
+
height: number;
|
|
3162
|
+
children?: any;
|
|
3163
|
+
layout?: any;
|
|
3164
|
+
routingDisabled?: boolean | undefined;
|
|
3165
|
+
}, {
|
|
3166
|
+
width: string | number;
|
|
3167
|
+
height: string | number;
|
|
3168
|
+
pcbX?: string | number | undefined;
|
|
3169
|
+
pcbY?: string | number | undefined;
|
|
3170
|
+
children?: any;
|
|
3171
|
+
layout?: any;
|
|
3172
|
+
routingDisabled?: boolean | undefined;
|
|
3173
|
+
}>;
|
|
3174
|
+
type BoardProps = z.input<typeof boardProps>;
|
|
3175
|
+
declare const distanceOrMultiplier: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["2x", "3x", "4x"]>]>;
|
|
3176
|
+
declare const schematicPortArrangement: z.ZodUnion<[z.ZodObject<{
|
|
3177
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
3178
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
3179
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
3180
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
3181
|
+
}, "strip", z.ZodTypeAny, {
|
|
3182
|
+
leftSize?: number | undefined;
|
|
3183
|
+
topSize?: number | undefined;
|
|
3184
|
+
rightSize?: number | undefined;
|
|
3185
|
+
bottomSize?: number | undefined;
|
|
3186
|
+
}, {
|
|
3187
|
+
leftSize?: number | undefined;
|
|
3188
|
+
topSize?: number | undefined;
|
|
3189
|
+
rightSize?: number | undefined;
|
|
3190
|
+
bottomSize?: number | undefined;
|
|
3191
|
+
}>, z.ZodObject<{
|
|
3192
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
3193
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3194
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3195
|
+
}, "strip", z.ZodTypeAny, {
|
|
3196
|
+
pins: number[];
|
|
3197
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3198
|
+
}, {
|
|
3199
|
+
pins: number[];
|
|
3200
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3201
|
+
}>>;
|
|
3202
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
3203
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3204
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3205
|
+
}, "strip", z.ZodTypeAny, {
|
|
3206
|
+
pins: number[];
|
|
3207
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3208
|
+
}, {
|
|
3209
|
+
pins: number[];
|
|
3210
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3211
|
+
}>>;
|
|
3212
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
3213
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3214
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3215
|
+
}, "strip", z.ZodTypeAny, {
|
|
3216
|
+
pins: number[];
|
|
3217
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3218
|
+
}, {
|
|
3219
|
+
pins: number[];
|
|
3220
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3221
|
+
}>>;
|
|
3222
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
3223
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3224
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3225
|
+
}, "strip", z.ZodTypeAny, {
|
|
3226
|
+
pins: number[];
|
|
3227
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3228
|
+
}, {
|
|
3229
|
+
pins: number[];
|
|
3230
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3231
|
+
}>>;
|
|
3232
|
+
}, "strip", z.ZodTypeAny, {
|
|
3233
|
+
leftSide?: {
|
|
3234
|
+
pins: number[];
|
|
3235
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3236
|
+
} | undefined;
|
|
3237
|
+
rightSide?: {
|
|
3238
|
+
pins: number[];
|
|
3239
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3240
|
+
} | undefined;
|
|
3241
|
+
topSide?: {
|
|
3242
|
+
pins: number[];
|
|
3243
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3244
|
+
} | undefined;
|
|
3245
|
+
bottomSide?: {
|
|
3246
|
+
pins: number[];
|
|
3247
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3248
|
+
} | undefined;
|
|
3249
|
+
}, {
|
|
3250
|
+
leftSide?: {
|
|
3251
|
+
pins: number[];
|
|
3252
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3253
|
+
} | undefined;
|
|
3254
|
+
rightSide?: {
|
|
3255
|
+
pins: number[];
|
|
3256
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3257
|
+
} | undefined;
|
|
3258
|
+
topSide?: {
|
|
3259
|
+
pins: number[];
|
|
3260
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3261
|
+
} | undefined;
|
|
3262
|
+
bottomSide?: {
|
|
3263
|
+
pins: number[];
|
|
3264
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3265
|
+
} | undefined;
|
|
3266
|
+
}>]>;
|
|
3267
|
+
declare const chipProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3268
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3269
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3270
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3271
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3272
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3273
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3274
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
3275
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
3276
|
+
}, "strip", z.ZodTypeAny, {
|
|
3277
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3278
|
+
}, {
|
|
3279
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3280
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3281
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3282
|
+
}>>;
|
|
3283
|
+
footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
|
|
3284
|
+
}, {
|
|
3285
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3286
|
+
}>, {
|
|
3287
|
+
name: z.ZodString;
|
|
3288
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
3289
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
3290
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3291
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3292
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3293
|
+
}, "strip", z.ZodTypeAny, {
|
|
3294
|
+
x: string | number;
|
|
3295
|
+
y: string | number;
|
|
3296
|
+
z: string | number;
|
|
3297
|
+
}, {
|
|
3298
|
+
x: string | number;
|
|
3299
|
+
y: string | number;
|
|
3300
|
+
z: string | number;
|
|
3301
|
+
}>]>>;
|
|
3302
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
3303
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3304
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3305
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3306
|
+
}, "strip", z.ZodTypeAny, {
|
|
3307
|
+
x: string | number;
|
|
3308
|
+
y: string | number;
|
|
3309
|
+
z: string | number;
|
|
3310
|
+
}, {
|
|
3311
|
+
x: string | number;
|
|
3312
|
+
y: string | number;
|
|
3313
|
+
z: string | number;
|
|
3314
|
+
}>>;
|
|
3315
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3316
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3317
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3318
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3319
|
+
}, "strip", z.ZodTypeAny, {
|
|
3320
|
+
x: string | number;
|
|
3321
|
+
y: string | number;
|
|
3322
|
+
z: string | number;
|
|
3323
|
+
}, {
|
|
3324
|
+
x: string | number;
|
|
3325
|
+
y: string | number;
|
|
3326
|
+
z: string | number;
|
|
3327
|
+
}>>;
|
|
3328
|
+
}, {
|
|
3329
|
+
stlUrl: z.ZodString;
|
|
3330
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3331
|
+
stlUrl: string;
|
|
3332
|
+
rotationOffset?: number | {
|
|
3333
|
+
x: string | number;
|
|
3334
|
+
y: string | number;
|
|
3335
|
+
z: string | number;
|
|
3336
|
+
} | undefined;
|
|
3337
|
+
positionOffset?: {
|
|
3338
|
+
x: string | number;
|
|
3339
|
+
y: string | number;
|
|
3340
|
+
z: string | number;
|
|
3341
|
+
} | undefined;
|
|
3342
|
+
size?: {
|
|
3343
|
+
x: string | number;
|
|
3344
|
+
y: string | number;
|
|
3345
|
+
z: string | number;
|
|
3346
|
+
} | undefined;
|
|
3347
|
+
}, {
|
|
3348
|
+
stlUrl: string;
|
|
3349
|
+
rotationOffset?: number | {
|
|
3350
|
+
x: string | number;
|
|
3351
|
+
y: string | number;
|
|
3352
|
+
z: string | number;
|
|
3353
|
+
} | undefined;
|
|
3354
|
+
positionOffset?: {
|
|
3355
|
+
x: string | number;
|
|
3356
|
+
y: string | number;
|
|
3357
|
+
z: string | number;
|
|
3358
|
+
} | undefined;
|
|
3359
|
+
size?: {
|
|
3360
|
+
x: string | number;
|
|
3361
|
+
y: string | number;
|
|
3362
|
+
z: string | number;
|
|
3363
|
+
} | undefined;
|
|
3364
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3365
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
3366
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3367
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3368
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3369
|
+
}, "strip", z.ZodTypeAny, {
|
|
3370
|
+
x: string | number;
|
|
3371
|
+
y: string | number;
|
|
3372
|
+
z: string | number;
|
|
3373
|
+
}, {
|
|
3374
|
+
x: string | number;
|
|
3375
|
+
y: string | number;
|
|
3376
|
+
z: string | number;
|
|
3377
|
+
}>]>>;
|
|
3378
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
3379
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3380
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3381
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3382
|
+
}, "strip", z.ZodTypeAny, {
|
|
3383
|
+
x: string | number;
|
|
3384
|
+
y: string | number;
|
|
3385
|
+
z: string | number;
|
|
3386
|
+
}, {
|
|
3387
|
+
x: string | number;
|
|
3388
|
+
y: string | number;
|
|
3389
|
+
z: string | number;
|
|
3390
|
+
}>>;
|
|
3391
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3392
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3393
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3394
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3395
|
+
}, "strip", z.ZodTypeAny, {
|
|
3396
|
+
x: string | number;
|
|
3397
|
+
y: string | number;
|
|
3398
|
+
z: string | number;
|
|
3399
|
+
}, {
|
|
3400
|
+
x: string | number;
|
|
3401
|
+
y: string | number;
|
|
3402
|
+
z: string | number;
|
|
3403
|
+
}>>;
|
|
3404
|
+
}, {
|
|
3405
|
+
objUrl: z.ZodString;
|
|
3406
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
3407
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3408
|
+
objUrl: string;
|
|
3409
|
+
rotationOffset?: number | {
|
|
3410
|
+
x: string | number;
|
|
3411
|
+
y: string | number;
|
|
3412
|
+
z: string | number;
|
|
3413
|
+
} | undefined;
|
|
3414
|
+
positionOffset?: {
|
|
3415
|
+
x: string | number;
|
|
3416
|
+
y: string | number;
|
|
3417
|
+
z: string | number;
|
|
3418
|
+
} | undefined;
|
|
3419
|
+
size?: {
|
|
3420
|
+
x: string | number;
|
|
3421
|
+
y: string | number;
|
|
3422
|
+
z: string | number;
|
|
3423
|
+
} | undefined;
|
|
3424
|
+
mtlUrl?: string | undefined;
|
|
3425
|
+
}, {
|
|
3426
|
+
objUrl: string;
|
|
3427
|
+
rotationOffset?: number | {
|
|
3428
|
+
x: string | number;
|
|
3429
|
+
y: string | number;
|
|
3430
|
+
z: string | number;
|
|
3431
|
+
} | undefined;
|
|
3432
|
+
positionOffset?: {
|
|
3433
|
+
x: string | number;
|
|
3434
|
+
y: string | number;
|
|
3435
|
+
z: string | number;
|
|
3436
|
+
} | undefined;
|
|
3437
|
+
size?: {
|
|
3438
|
+
x: string | number;
|
|
3439
|
+
y: string | number;
|
|
3440
|
+
z: string | number;
|
|
3441
|
+
} | undefined;
|
|
3442
|
+
mtlUrl?: string | undefined;
|
|
3443
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3444
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
3445
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3446
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3447
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3448
|
+
}, "strip", z.ZodTypeAny, {
|
|
3449
|
+
x: string | number;
|
|
3450
|
+
y: string | number;
|
|
3451
|
+
z: string | number;
|
|
3452
|
+
}, {
|
|
3453
|
+
x: string | number;
|
|
3454
|
+
y: string | number;
|
|
3455
|
+
z: string | number;
|
|
3456
|
+
}>]>>;
|
|
3457
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
3458
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3459
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3460
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3461
|
+
}, "strip", z.ZodTypeAny, {
|
|
3462
|
+
x: string | number;
|
|
3463
|
+
y: string | number;
|
|
3464
|
+
z: string | number;
|
|
3465
|
+
}, {
|
|
3466
|
+
x: string | number;
|
|
3467
|
+
y: string | number;
|
|
3468
|
+
z: string | number;
|
|
3469
|
+
}>>;
|
|
3470
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3471
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3472
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3473
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
3474
|
+
}, "strip", z.ZodTypeAny, {
|
|
3475
|
+
x: string | number;
|
|
3476
|
+
y: string | number;
|
|
3477
|
+
z: string | number;
|
|
3478
|
+
}, {
|
|
3479
|
+
x: string | number;
|
|
3480
|
+
y: string | number;
|
|
3481
|
+
z: string | number;
|
|
3482
|
+
}>>;
|
|
3483
|
+
}, {
|
|
3484
|
+
jscad: z.ZodAny;
|
|
3485
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3486
|
+
rotationOffset?: number | {
|
|
3487
|
+
x: string | number;
|
|
3488
|
+
y: string | number;
|
|
3489
|
+
z: string | number;
|
|
3490
|
+
} | undefined;
|
|
3491
|
+
positionOffset?: {
|
|
3492
|
+
x: string | number;
|
|
3493
|
+
y: string | number;
|
|
3494
|
+
z: string | number;
|
|
3495
|
+
} | undefined;
|
|
3496
|
+
size?: {
|
|
3497
|
+
x: string | number;
|
|
3498
|
+
y: string | number;
|
|
3499
|
+
z: string | number;
|
|
3500
|
+
} | undefined;
|
|
3501
|
+
jscad?: any;
|
|
3502
|
+
}, {
|
|
3503
|
+
rotationOffset?: number | {
|
|
3504
|
+
x: string | number;
|
|
3505
|
+
y: string | number;
|
|
3506
|
+
z: string | number;
|
|
3507
|
+
} | undefined;
|
|
3508
|
+
positionOffset?: {
|
|
3509
|
+
x: string | number;
|
|
3510
|
+
y: string | number;
|
|
3511
|
+
z: string | number;
|
|
3512
|
+
} | undefined;
|
|
3513
|
+
size?: {
|
|
3514
|
+
x: string | number;
|
|
3515
|
+
y: string | number;
|
|
3516
|
+
z: string | number;
|
|
3517
|
+
} | undefined;
|
|
3518
|
+
jscad?: any;
|
|
3519
|
+
}>]>>;
|
|
3520
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
3521
|
+
}>, {
|
|
3522
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
3523
|
+
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodNumber, z.ZodString>>;
|
|
3524
|
+
schPortArrangement: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3525
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
3526
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
3527
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
3528
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
3529
|
+
}, "strip", z.ZodTypeAny, {
|
|
3530
|
+
leftSize?: number | undefined;
|
|
3531
|
+
topSize?: number | undefined;
|
|
3532
|
+
rightSize?: number | undefined;
|
|
3533
|
+
bottomSize?: number | undefined;
|
|
3534
|
+
}, {
|
|
3535
|
+
leftSize?: number | undefined;
|
|
3536
|
+
topSize?: number | undefined;
|
|
3537
|
+
rightSize?: number | undefined;
|
|
3538
|
+
bottomSize?: number | undefined;
|
|
3539
|
+
}>, z.ZodObject<{
|
|
3540
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
3541
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3542
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3543
|
+
}, "strip", z.ZodTypeAny, {
|
|
3544
|
+
pins: number[];
|
|
3545
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3546
|
+
}, {
|
|
3547
|
+
pins: number[];
|
|
3548
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3549
|
+
}>>;
|
|
3550
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
3551
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3552
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3553
|
+
}, "strip", z.ZodTypeAny, {
|
|
3554
|
+
pins: number[];
|
|
3555
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3556
|
+
}, {
|
|
3557
|
+
pins: number[];
|
|
3558
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3559
|
+
}>>;
|
|
3560
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
3561
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3562
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3563
|
+
}, "strip", z.ZodTypeAny, {
|
|
3564
|
+
pins: number[];
|
|
3565
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3566
|
+
}, {
|
|
3567
|
+
pins: number[];
|
|
3568
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3569
|
+
}>>;
|
|
3570
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
3571
|
+
pins: z.ZodArray<z.ZodNumber, "many">;
|
|
3572
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
3573
|
+
}, "strip", z.ZodTypeAny, {
|
|
3574
|
+
pins: number[];
|
|
3575
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3576
|
+
}, {
|
|
3577
|
+
pins: number[];
|
|
3578
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3579
|
+
}>>;
|
|
2827
3580
|
}, "strip", z.ZodTypeAny, {
|
|
2828
|
-
|
|
2829
|
-
|
|
3581
|
+
leftSide?: {
|
|
3582
|
+
pins: number[];
|
|
3583
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3584
|
+
} | undefined;
|
|
3585
|
+
rightSide?: {
|
|
3586
|
+
pins: number[];
|
|
3587
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3588
|
+
} | undefined;
|
|
3589
|
+
topSide?: {
|
|
3590
|
+
pins: number[];
|
|
3591
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3592
|
+
} | undefined;
|
|
3593
|
+
bottomSide?: {
|
|
3594
|
+
pins: number[];
|
|
3595
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3596
|
+
} | undefined;
|
|
2830
3597
|
}, {
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
}
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
3598
|
+
leftSide?: {
|
|
3599
|
+
pins: number[];
|
|
3600
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3601
|
+
} | undefined;
|
|
3602
|
+
rightSide?: {
|
|
3603
|
+
pins: number[];
|
|
3604
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3605
|
+
} | undefined;
|
|
3606
|
+
topSide?: {
|
|
3607
|
+
pins: number[];
|
|
3608
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3609
|
+
} | undefined;
|
|
3610
|
+
bottomSide?: {
|
|
3611
|
+
pins: number[];
|
|
3612
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3613
|
+
} | undefined;
|
|
3614
|
+
}>]>>;
|
|
3615
|
+
schPinSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["2x", "3x", "4x"]>]>, z.ZodLiteral<"auto">]>>>;
|
|
3616
|
+
schWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEnum<["2x", "3x", "4x"]>]>, z.ZodLiteral<"auto">]>>>;
|
|
3617
|
+
}>, "strip", z.ZodTypeAny, {
|
|
3618
|
+
name: string;
|
|
3619
|
+
schPinSpacing: number | "2x" | "3x" | "4x" | "auto";
|
|
3620
|
+
schWidth: number | "2x" | "3x" | "4x" | "auto";
|
|
3621
|
+
pcbX?: number | undefined;
|
|
3622
|
+
pcbY?: number | undefined;
|
|
3623
|
+
pcbRotation?: number | undefined;
|
|
3624
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
3625
|
+
schX?: number | undefined;
|
|
3626
|
+
schY?: number | undefined;
|
|
3627
|
+
schRotation?: number | undefined;
|
|
3628
|
+
footprint?: Footprint | undefined;
|
|
3629
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3630
|
+
cadModel?: {
|
|
3631
|
+
stlUrl: string;
|
|
3632
|
+
rotationOffset?: number | {
|
|
3633
|
+
x: string | number;
|
|
3634
|
+
y: string | number;
|
|
3635
|
+
z: string | number;
|
|
3636
|
+
} | undefined;
|
|
3637
|
+
positionOffset?: {
|
|
3638
|
+
x: string | number;
|
|
3639
|
+
y: string | number;
|
|
3640
|
+
z: string | number;
|
|
3641
|
+
} | undefined;
|
|
3642
|
+
size?: {
|
|
3643
|
+
x: string | number;
|
|
3644
|
+
y: string | number;
|
|
3645
|
+
z: string | number;
|
|
3646
|
+
} | undefined;
|
|
3647
|
+
} | {
|
|
3648
|
+
objUrl: string;
|
|
3649
|
+
rotationOffset?: number | {
|
|
3650
|
+
x: string | number;
|
|
3651
|
+
y: string | number;
|
|
3652
|
+
z: string | number;
|
|
3653
|
+
} | undefined;
|
|
3654
|
+
positionOffset?: {
|
|
3655
|
+
x: string | number;
|
|
3656
|
+
y: string | number;
|
|
3657
|
+
z: string | number;
|
|
3658
|
+
} | undefined;
|
|
3659
|
+
size?: {
|
|
3660
|
+
x: string | number;
|
|
3661
|
+
y: string | number;
|
|
3662
|
+
z: string | number;
|
|
3663
|
+
} | undefined;
|
|
3664
|
+
mtlUrl?: string | undefined;
|
|
3665
|
+
} | {
|
|
3666
|
+
rotationOffset?: number | {
|
|
3667
|
+
x: string | number;
|
|
3668
|
+
y: string | number;
|
|
3669
|
+
z: string | number;
|
|
3670
|
+
} | undefined;
|
|
3671
|
+
positionOffset?: {
|
|
3672
|
+
x: string | number;
|
|
3673
|
+
y: string | number;
|
|
3674
|
+
z: string | number;
|
|
3675
|
+
} | undefined;
|
|
3676
|
+
size?: {
|
|
3677
|
+
x: string | number;
|
|
3678
|
+
y: string | number;
|
|
3679
|
+
z: string | number;
|
|
3680
|
+
} | undefined;
|
|
3681
|
+
jscad?: any;
|
|
2846
3682
|
} | undefined;
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
3683
|
+
children?: any;
|
|
3684
|
+
manufacturerPartNumber?: string | undefined;
|
|
3685
|
+
pinLabels?: Record<number, string> | undefined;
|
|
3686
|
+
schPortArrangement?: {
|
|
3687
|
+
leftSize?: number | undefined;
|
|
3688
|
+
topSize?: number | undefined;
|
|
3689
|
+
rightSize?: number | undefined;
|
|
3690
|
+
bottomSize?: number | undefined;
|
|
3691
|
+
} | {
|
|
3692
|
+
leftSide?: {
|
|
3693
|
+
pins: number[];
|
|
3694
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3695
|
+
} | undefined;
|
|
3696
|
+
rightSide?: {
|
|
3697
|
+
pins: number[];
|
|
3698
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3699
|
+
} | undefined;
|
|
3700
|
+
topSide?: {
|
|
3701
|
+
pins: number[];
|
|
3702
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3703
|
+
} | undefined;
|
|
3704
|
+
bottomSide?: {
|
|
3705
|
+
pins: number[];
|
|
3706
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3707
|
+
} | undefined;
|
|
2850
3708
|
} | undefined;
|
|
2851
3709
|
}, {
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3710
|
+
name: string;
|
|
3711
|
+
pcbX?: string | number | undefined;
|
|
3712
|
+
pcbY?: string | number | undefined;
|
|
3713
|
+
pcbRotation?: string | number | undefined;
|
|
3714
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
3715
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
2859
3716
|
} | undefined;
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
3717
|
+
schX?: string | number | undefined;
|
|
3718
|
+
schY?: string | number | undefined;
|
|
3719
|
+
schRotation?: string | number | undefined;
|
|
3720
|
+
footprint?: Footprint | undefined;
|
|
3721
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3722
|
+
cadModel?: {
|
|
3723
|
+
stlUrl: string;
|
|
3724
|
+
rotationOffset?: number | {
|
|
3725
|
+
x: string | number;
|
|
3726
|
+
y: string | number;
|
|
3727
|
+
z: string | number;
|
|
3728
|
+
} | undefined;
|
|
3729
|
+
positionOffset?: {
|
|
3730
|
+
x: string | number;
|
|
3731
|
+
y: string | number;
|
|
3732
|
+
z: string | number;
|
|
3733
|
+
} | undefined;
|
|
3734
|
+
size?: {
|
|
3735
|
+
x: string | number;
|
|
3736
|
+
y: string | number;
|
|
3737
|
+
z: string | number;
|
|
3738
|
+
} | undefined;
|
|
3739
|
+
} | {
|
|
3740
|
+
objUrl: string;
|
|
3741
|
+
rotationOffset?: number | {
|
|
3742
|
+
x: string | number;
|
|
3743
|
+
y: string | number;
|
|
3744
|
+
z: string | number;
|
|
3745
|
+
} | undefined;
|
|
3746
|
+
positionOffset?: {
|
|
3747
|
+
x: string | number;
|
|
3748
|
+
y: string | number;
|
|
3749
|
+
z: string | number;
|
|
3750
|
+
} | undefined;
|
|
3751
|
+
size?: {
|
|
3752
|
+
x: string | number;
|
|
3753
|
+
y: string | number;
|
|
3754
|
+
z: string | number;
|
|
3755
|
+
} | undefined;
|
|
3756
|
+
mtlUrl?: string | undefined;
|
|
3757
|
+
} | {
|
|
3758
|
+
rotationOffset?: number | {
|
|
3759
|
+
x: string | number;
|
|
3760
|
+
y: string | number;
|
|
3761
|
+
z: string | number;
|
|
3762
|
+
} | undefined;
|
|
3763
|
+
positionOffset?: {
|
|
3764
|
+
x: string | number;
|
|
3765
|
+
y: string | number;
|
|
3766
|
+
z: string | number;
|
|
3767
|
+
} | undefined;
|
|
3768
|
+
size?: {
|
|
3769
|
+
x: string | number;
|
|
3770
|
+
y: string | number;
|
|
3771
|
+
z: string | number;
|
|
3772
|
+
} | undefined;
|
|
3773
|
+
jscad?: any;
|
|
2863
3774
|
} | undefined;
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
3775
|
+
children?: any;
|
|
3776
|
+
manufacturerPartNumber?: string | undefined;
|
|
3777
|
+
pinLabels?: Record<number, string> | undefined;
|
|
3778
|
+
schPortArrangement?: {
|
|
3779
|
+
leftSize?: number | undefined;
|
|
3780
|
+
topSize?: number | undefined;
|
|
3781
|
+
rightSize?: number | undefined;
|
|
3782
|
+
bottomSize?: number | undefined;
|
|
3783
|
+
} | {
|
|
3784
|
+
leftSide?: {
|
|
3785
|
+
pins: number[];
|
|
3786
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3787
|
+
} | undefined;
|
|
3788
|
+
rightSide?: {
|
|
3789
|
+
pins: number[];
|
|
3790
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3791
|
+
} | undefined;
|
|
3792
|
+
topSide?: {
|
|
3793
|
+
pins: number[];
|
|
3794
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3795
|
+
} | undefined;
|
|
3796
|
+
bottomSide?: {
|
|
3797
|
+
pins: number[];
|
|
3798
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
3799
|
+
} | undefined;
|
|
2867
3800
|
} | undefined;
|
|
2868
|
-
|
|
3801
|
+
schPinSpacing?: string | number | undefined;
|
|
3802
|
+
schWidth?: string | number | undefined;
|
|
3803
|
+
}>;
|
|
3804
|
+
/**
|
|
3805
|
+
* @deprecated Use ChipProps instead.
|
|
3806
|
+
*/
|
|
2869
3807
|
declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
2870
3808
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
2871
3809
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3403,7 +4341,7 @@ declare const bugProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
3403
4341
|
schPinSpacing?: string | number | undefined;
|
|
3404
4342
|
schWidth?: string | number | undefined;
|
|
3405
4343
|
}>;
|
|
3406
|
-
type
|
|
4344
|
+
type ChipProps = z.input<typeof chipProps>;
|
|
3407
4345
|
declare const viaProps: z.ZodObject<z.objectUtil.extendShape<{
|
|
3408
4346
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3409
4347
|
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5299,4 +6237,4 @@ declare const fabricationNotePathProps: z.ZodObject<z.objectUtil.extendShape<Omi
|
|
|
5299
6237
|
}>;
|
|
5300
6238
|
type FabricationNotePathProps = z.input<typeof fabricationNotePathProps>;
|
|
5301
6239
|
|
|
5302
|
-
export { type BoardProps, type
|
|
6240
|
+
export { type BoardProps, type CapacitorProps, type ChipProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConstrainedLayoutProps, type ConstraintProps, type DiodeProps, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type GroupProps, type HoleProps, type InductorProps, type LedProps, type NetAliasProps, type PcbTraceProps, type PlatedHoleProps, type PortProps, type PowerSourceProps, type ResistorProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type ViaProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelStl, capacitorPins, capacitorProps, chipProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, diodePins, diodeProps, direction, distanceOrMultiplier, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProps, groupProps, holeProps, inductorPins, inductorProps, ledPins, ledProps, lrPins, lrPolarPins, netAliasProps, pcbLayoutProps, pcbTraceProps, platedHoleProps, portHints, portProps, powerSourceProps, relativeDirection, resistorPins, resistorProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, supplierProps, switchProps, traceHintProps, traceProps, viaProps };
|