easyeda 0.0.122 → 0.0.124
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.
|
@@ -2610,7 +2610,7 @@ var generateFootprintTsx = (circuitJson) => {
|
|
|
2610
2610
|
for (const platedHole of platedHoles) {
|
|
2611
2611
|
if (platedHole.shape === "oval" || platedHole.shape === "pill") {
|
|
2612
2612
|
elementStrings.push(
|
|
2613
|
-
`<platedhole portHints={${JSON.stringify(platedHole.port_hints)}} pcbX="${mmStr(platedHole.x)}" pcbY="${mmStr(platedHole.y)}" outerHeight="${mmStr(platedHole.outer_height)}" outerWidth="${mmStr(platedHole.outer_width)}" holeHeight="${mmStr(platedHole.hole_height)}" holeWidth="${mmStr(platedHole.hole_width)}"
|
|
2613
|
+
`<platedhole portHints={${JSON.stringify(platedHole.port_hints)}} pcbX="${mmStr(platedHole.x)}" pcbY="${mmStr(platedHole.y)}" outerHeight="${mmStr(platedHole.outer_height)}" outerWidth="${mmStr(platedHole.outer_width)}" holeHeight="${mmStr(platedHole.hole_height)}" holeWidth="${mmStr(platedHole.hole_width)}" shape="${platedHole.shape}" />`
|
|
2614
2614
|
);
|
|
2615
2615
|
} else if (platedHole.shape === "circle") {
|
|
2616
2616
|
elementStrings.push(
|
|
@@ -2850,4 +2850,4 @@ export {
|
|
|
2850
2850
|
convertRawEasyToTsx,
|
|
2851
2851
|
convertEasyEdaJsonToVariousFormats
|
|
2852
2852
|
};
|
|
2853
|
-
//# sourceMappingURL=chunk-
|
|
2853
|
+
//# sourceMappingURL=chunk-2SZ5LCBA.js.map
|