@tscircuit/core 0.0.1193 → 0.0.1194

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.d.ts CHANGED
@@ -73,6 +73,7 @@ type Obstacle = {
73
73
  };
74
74
  width: number;
75
75
  height: number;
76
+ ccwRotationDegrees?: number;
76
77
  connectedTo: string[];
77
78
  isCopperPour?: boolean;
78
79
  netIsAssignable?: boolean;
package/dist/index.js CHANGED
@@ -2780,6 +2780,7 @@ var getObstaclesFromCircuitJson = (soup, connMap) => {
2780
2780
  center: rect.center,
2781
2781
  width: rect.width,
2782
2782
  height: rect.height,
2783
+ ...singleRect ? {} : { ccwRotationDegrees: element.ccw_rotation },
2783
2784
  connectedTo: withNetId([element.pcb_smtpad_id])
2784
2785
  });
2785
2786
  }
@@ -20024,7 +20025,7 @@ import { identity as identity5 } from "transformation-matrix";
20024
20025
  var package_default = {
20025
20026
  name: "@tscircuit/core",
20026
20027
  type: "module",
20027
- version: "0.0.1192",
20028
+ version: "0.0.1193",
20028
20029
  types: "dist/index.d.ts",
20029
20030
  main: "dist/index.js",
20030
20031
  module: "dist/index.js",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.1193",
4
+ "version": "0.0.1194",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",