@tscircuit/footprinter 0.0.245 → 0.0.247
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.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2090,7 +2090,7 @@ var axial_def = z15.object({
|
|
|
2090
2090
|
fn: z15.string(),
|
|
2091
2091
|
p: length8.optional().default("2.54mm"),
|
|
2092
2092
|
id: length8.optional().default("0.7mm"),
|
|
2093
|
-
od: length8.optional().default("
|
|
2093
|
+
od: length8.optional().default("1.4mm")
|
|
2094
2094
|
});
|
|
2095
2095
|
var axial = (raw_params) => {
|
|
2096
2096
|
const parameters = axial_def.parse(raw_params);
|
|
@@ -2110,7 +2110,7 @@ var axial = (raw_params) => {
|
|
|
2110
2110
|
stroke_width: 0.1,
|
|
2111
2111
|
pcb_silkscreen_path_id: ""
|
|
2112
2112
|
};
|
|
2113
|
-
const silkscreenRefText = silkscreenRef(0,
|
|
2113
|
+
const silkscreenRefText = silkscreenRef(0, 1.5, 0.5);
|
|
2114
2114
|
return {
|
|
2115
2115
|
circuitJson: [
|
|
2116
2116
|
...plated_holes,
|
|
@@ -2924,6 +2924,9 @@ var lqfp = (parameters) => {
|
|
|
2924
2924
|
if (!parameters.pl) {
|
|
2925
2925
|
parameters.pl = 1.5;
|
|
2926
2926
|
}
|
|
2927
|
+
if (!parameters.pw) {
|
|
2928
|
+
parameters.pw = 0.3;
|
|
2929
|
+
}
|
|
2927
2930
|
return quad(parameters);
|
|
2928
2931
|
};
|
|
2929
2932
|
|