@tscircuit/footprinter 0.0.15 → 0.0.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/fn/quad.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/footprinter",
3
3
  "type": "module",
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
5
5
  "description": "",
6
6
  "main": "dist/index.cjs",
7
7
  "scripts": {
package/src/fn/quad.ts CHANGED
@@ -117,7 +117,7 @@ export const quad = (raw_params: {
117
117
  ;[pw, pl] = [pl, pw]
118
118
  }
119
119
 
120
- const pn = getQuadPinMap(params)[i + 1]
120
+ const pn = pin_map[i + 1]
121
121
  pads.push(rectpad(pn!, x, y, pw, pl))
122
122
  }
123
123
  return pads