@tscircuit/core 0.0.1266 → 0.0.1268

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 +6 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -21550,7 +21550,7 @@ import { identity as identity5 } from "transformation-matrix";
21550
21550
  var package_default = {
21551
21551
  name: "@tscircuit/core",
21552
21552
  type: "module",
21553
- version: "0.0.1265",
21553
+ version: "0.0.1267",
21554
21554
  types: "dist/index.d.ts",
21555
21555
  main: "dist/index.js",
21556
21556
  module: "dist/index.js",
@@ -21583,7 +21583,7 @@ var package_default = {
21583
21583
  "@resvg/resvg-js": "^2.6.2",
21584
21584
  "@tscircuit/alphabet": "0.0.25",
21585
21585
  "@tscircuit/capacity-autorouter": "^0.0.529",
21586
- "@tscircuit/checks": "0.0.131",
21586
+ "@tscircuit/checks": "0.0.132",
21587
21587
  "@tscircuit/circuit-json-util": "^0.0.94",
21588
21588
  "@tscircuit/common": "^0.0.20",
21589
21589
  "@tscircuit/copper-pour-solver": "^0.0.29",
@@ -25934,6 +25934,7 @@ var PinHeader = class extends NormalComponent3 {
25934
25934
  const pitch = this._parsedProps.pitch;
25935
25935
  const showSilkscreenPinLabels = this._parsedProps.showSilkscreenPinLabels;
25936
25936
  const rows = this._parsedProps.doubleRow ? 2 : 1;
25937
+ const gender = this._parsedProps.gender;
25937
25938
  if (pinCount > 0) {
25938
25939
  let footprintString;
25939
25940
  if (pitch) {
@@ -25952,6 +25953,9 @@ var PinHeader = class extends NormalComponent3 {
25952
25953
  if (showSilkscreenPinLabels !== true) {
25953
25954
  footprintString += "_nopinlabels";
25954
25955
  }
25956
+ if (gender === "female") {
25957
+ footprintString += "_female";
25958
+ }
25955
25959
  if (rows > 1) {
25956
25960
  footprintString += `_rows${rows}`;
25957
25961
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.1266",
4
+ "version": "0.0.1268",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -34,7 +34,7 @@
34
34
  "@resvg/resvg-js": "^2.6.2",
35
35
  "@tscircuit/alphabet": "0.0.25",
36
36
  "@tscircuit/capacity-autorouter": "^0.0.529",
37
- "@tscircuit/checks": "0.0.131",
37
+ "@tscircuit/checks": "0.0.132",
38
38
  "@tscircuit/circuit-json-util": "^0.0.94",
39
39
  "@tscircuit/common": "^0.0.20",
40
40
  "@tscircuit/copper-pour-solver": "^0.0.29",