jscad-electronics 0.0.137 → 0.0.138

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/vanilla.js CHANGED
@@ -1097,14 +1097,14 @@ var QFN = ({
1097
1097
  /* @__PURE__ */ jsx(Colorize, { color: "grey", children: /* @__PURE__ */ jsx(
1098
1098
  Cuboid,
1099
1099
  {
1100
- center: { x: 0, y: 0, z: bodyThickness / 2 },
1100
+ center: [0, 0, bodyThickness / 2],
1101
1101
  size: [bodyWidth, bodyLength10, bodyThickness]
1102
1102
  }
1103
1103
  ) }),
1104
1104
  pinPositions.map((p, i) => /* @__PURE__ */ jsx(
1105
1105
  Cuboid,
1106
1106
  {
1107
- center: { x: p.x, y: p.y, z: thermalPadThickness / 2 },
1107
+ center: [p.x, p.y, thermalPadThickness / 2],
1108
1108
  size: [p.pw, p.pl, thermalPadThickness]
1109
1109
  },
1110
1110
  i
@@ -1112,7 +1112,7 @@ var QFN = ({
1112
1112
  thermalPadSize?.length !== void 0 && thermalPadSize?.width !== void 0 && /* @__PURE__ */ jsx(
1113
1113
  Cuboid,
1114
1114
  {
1115
- center: { x: 0, y: 0, z: thermalPadThickness / 2 },
1115
+ center: [0, 0, thermalPadThickness / 2],
1116
1116
  size: [
1117
1117
  thermalPadSize.width,
1118
1118
  thermalPadSize.length,