@tscircuit/core 0.0.803 → 0.0.804
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1949,6 +1949,7 @@ var SmtPad = class extends PrimitiveComponent2 {
|
|
|
1949
1949
|
shape: "rect",
|
|
1950
1950
|
width: isRotated90Degrees ? props.height : props.width,
|
|
1951
1951
|
height: isRotated90Degrees ? props.width : props.height,
|
|
1952
|
+
corner_radius: props.cornerRadius ?? 0,
|
|
1952
1953
|
port_hints: props.portHints.map((ph) => ph.toString()),
|
|
1953
1954
|
is_covered_with_solder_mask: isCoveredWithSolderMask,
|
|
1954
1955
|
x: position.x,
|
|
@@ -1961,6 +1962,7 @@ var SmtPad = class extends PrimitiveComponent2 {
|
|
|
1961
1962
|
shape: "rotated_rect",
|
|
1962
1963
|
width: props.width,
|
|
1963
1964
|
height: props.height,
|
|
1965
|
+
corner_radius: props.cornerRadius ?? 0,
|
|
1964
1966
|
x: position.x,
|
|
1965
1967
|
y: position.y,
|
|
1966
1968
|
ccw_rotation: finalRotationDegrees,
|
|
@@ -17110,7 +17112,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
17110
17112
|
var package_default = {
|
|
17111
17113
|
name: "@tscircuit/core",
|
|
17112
17114
|
type: "module",
|
|
17113
|
-
version: "0.0.
|
|
17115
|
+
version: "0.0.803",
|
|
17114
17116
|
types: "dist/index.d.ts",
|
|
17115
17117
|
main: "dist/index.js",
|
|
17116
17118
|
module: "dist/index.js",
|