@tscircuit/core 0.0.659 → 0.0.660

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3172,9 +3172,7 @@ var Port = class extends PrimitiveComponent2 {
3172
3172
  const allSubcircuitTraces = this.getSubcircuit().selectAll(
3173
3173
  "trace"
3174
3174
  );
3175
- const connectedTraces = allSubcircuitTraces.filter(
3176
- (trace) => trace._isExplicitlyConnectedToPort(this)
3177
- );
3175
+ const connectedTraces = allSubcircuitTraces.filter((trace) => !trace._couldNotFindPort).filter((trace) => trace._isExplicitlyConnectedToPort(this));
3178
3176
  return connectedTraces;
3179
3177
  }
3180
3178
  doInitialSourceRender() {
@@ -13769,7 +13767,7 @@ import { identity as identity5 } from "transformation-matrix";
13769
13767
  var package_default = {
13770
13768
  name: "@tscircuit/core",
13771
13769
  type: "module",
13772
- version: "0.0.658",
13770
+ version: "0.0.659",
13773
13771
  types: "dist/index.d.ts",
13774
13772
  main: "dist/index.js",
13775
13773
  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.659",
4
+ "version": "0.0.660",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",