@tscircuit/core 0.0.772 → 0.0.773
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8086,7 +8086,7 @@ var NormalComponent3 = class extends PrimitiveComponent2 {
|
|
|
8086
8086
|
for (const [pinName, target] of Object.entries(props.connections)) {
|
|
8087
8087
|
const targets = Array.isArray(target) ? target : [target];
|
|
8088
8088
|
for (const targetPath of targets) {
|
|
8089
|
-
propsWithConnections.push(targetPath);
|
|
8089
|
+
propsWithConnections.push(String(targetPath));
|
|
8090
8090
|
}
|
|
8091
8091
|
}
|
|
8092
8092
|
}
|
|
@@ -8336,8 +8336,8 @@ var NormalComponent3 = class extends PrimitiveComponent2 {
|
|
|
8336
8336
|
for (const targetPath of targets) {
|
|
8337
8337
|
this.add(
|
|
8338
8338
|
new Trace3({
|
|
8339
|
-
from:
|
|
8340
|
-
to: targetPath
|
|
8339
|
+
from: `.${this.name} > .${pinName}`,
|
|
8340
|
+
to: String(targetPath)
|
|
8341
8341
|
})
|
|
8342
8342
|
);
|
|
8343
8343
|
}
|
|
@@ -16125,7 +16125,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
16125
16125
|
var package_default = {
|
|
16126
16126
|
name: "@tscircuit/core",
|
|
16127
16127
|
type: "module",
|
|
16128
|
-
version: "0.0.
|
|
16128
|
+
version: "0.0.772",
|
|
16129
16129
|
types: "dist/index.d.ts",
|
|
16130
16130
|
main: "dist/index.js",
|
|
16131
16131
|
module: "dist/index.js",
|