@tscircuit/core 0.0.632 → 0.0.633

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 +7 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6194,7 +6194,12 @@ var NormalComponent = class extends PrimitiveComponent2 {
6194
6194
  return [];
6195
6195
  }
6196
6196
  get internallyConnectedPinNames() {
6197
- return this._parsedProps.internallyConnectedPins ?? this.defaultInternallyConnectedPinNames;
6197
+ const rawPins = this._parsedProps.internallyConnectedPins ?? this.defaultInternallyConnectedPinNames;
6198
+ return rawPins.map(
6199
+ (pinGroup) => pinGroup.map(
6200
+ (pin) => typeof pin === "number" ? `pin${pin}` : pin
6201
+ )
6202
+ );
6198
6203
  }
6199
6204
  constructor(props) {
6200
6205
  super(props);
@@ -12527,7 +12532,7 @@ import { identity as identity5 } from "transformation-matrix";
12527
12532
  var package_default = {
12528
12533
  name: "@tscircuit/core",
12529
12534
  type: "module",
12530
- version: "0.0.631",
12535
+ version: "0.0.632",
12531
12536
  types: "dist/index.d.ts",
12532
12537
  main: "dist/index.js",
12533
12538
  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.632",
4
+ "version": "0.0.633",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",