jscad-electronics 0.0.131 → 0.0.133
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 +2 -2
package/dist/vanilla.js
CHANGED
|
@@ -1607,7 +1607,7 @@ var FemaleHeaderRow = ({
|
|
|
1607
1607
|
const row = Math.floor(i / pinsPerRow);
|
|
1608
1608
|
const col = i % pinsPerRow;
|
|
1609
1609
|
const x = xoff + col * pitch;
|
|
1610
|
-
const y = -row * rowSpacing;
|
|
1610
|
+
const y = ((rows - 1) / 2 - row) * rowSpacing;
|
|
1611
1611
|
return /* @__PURE__ */ jsx(
|
|
1612
1612
|
FemaleHeader,
|
|
1613
1613
|
{
|