@tscircuit/footprinter 0.0.244 → 0.0.246

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 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("1mm")
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, p / 4, 0.5);
2113
+ const silkscreenRefText = silkscreenRef(0, 1.5, 0.5);
2114
2114
  return {
2115
2115
  circuitJson: [
2116
2116
  ...plated_holes,
@@ -2921,6 +2921,9 @@ var stampreceiver = (raw_params) => {
2921
2921
  // src/fn/lqfp.ts
2922
2922
  var lqfp = (parameters) => {
2923
2923
  parameters.legsoutside = true;
2924
+ if (!parameters.pl) {
2925
+ parameters.pl = 1.5;
2926
+ }
2924
2927
  return quad(parameters);
2925
2928
  };
2926
2929