@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.
- package/dist/index.js +2 -4
- 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.
|
|
13770
|
+
version: "0.0.659",
|
|
13773
13771
|
types: "dist/index.d.ts",
|
|
13774
13772
|
main: "dist/index.js",
|
|
13775
13773
|
module: "dist/index.js",
|