jscad-electronics 0.0.127 → 0.0.129
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +1 -1
- package/dist/vanilla.js.map +1 -1
- package/package.json +4 -3
package/dist/vanilla.js
CHANGED
|
@@ -914,7 +914,7 @@ var PinRow = ({
|
|
|
914
914
|
const row = Math.floor(i / pinsPerRow);
|
|
915
915
|
const col = i % pinsPerRow;
|
|
916
916
|
const x = xoff + col * pitch;
|
|
917
|
-
const y = -row * rowSpacing;
|
|
917
|
+
const y = ((rows - 1) / 2 - row) * rowSpacing;
|
|
918
918
|
return /* @__PURE__ */ jsx(
|
|
919
919
|
PinHeader,
|
|
920
920
|
{
|