@tscircuit/core 0.0.888 → 0.0.889

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 +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -17674,6 +17674,7 @@ var PinHeader = class extends NormalComponent3 {
17674
17674
  const platedDiameter = this._parsedProps.platedDiameter;
17675
17675
  const pitch = this._parsedProps.pitch;
17676
17676
  const showSilkscreenPinLabels = this._parsedProps.showSilkscreenPinLabels;
17677
+ const rows = this._parsedProps.doubleRow ? 2 : 1;
17677
17678
  if (pinCount > 0) {
17678
17679
  let footprintString;
17679
17680
  if (pitch) {
@@ -17692,6 +17693,9 @@ var PinHeader = class extends NormalComponent3 {
17692
17693
  if (showSilkscreenPinLabels !== true) {
17693
17694
  footprintString += "_nopinlabels";
17694
17695
  }
17696
+ if (rows > 1) {
17697
+ footprintString += `_rows${rows}`;
17698
+ }
17695
17699
  return footprintString;
17696
17700
  }
17697
17701
  return null;
@@ -18862,7 +18866,7 @@ import { identity as identity6 } from "transformation-matrix";
18862
18866
  var package_default = {
18863
18867
  name: "@tscircuit/core",
18864
18868
  type: "module",
18865
- version: "0.0.887",
18869
+ version: "0.0.888",
18866
18870
  types: "dist/index.d.ts",
18867
18871
  main: "dist/index.js",
18868
18872
  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.888",
4
+ "version": "0.0.889",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",