@tscircuit/core 0.0.1267 → 0.0.1269

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.1266",
21553
+ version: "0.0.1268",
21554
21554
  types: "dist/index.d.ts",
21555
21555
  main: "dist/index.js",
21556
21556
  module: "dist/index.js",
@@ -21614,7 +21614,7 @@ var package_default = {
21614
21614
  "circuit-json": "^0.0.425",
21615
21615
  "circuit-json-to-bpc": "^0.0.13",
21616
21616
  "circuit-json-to-connectivity-map": "^0.0.23",
21617
- "circuit-json-to-gltf": "^0.0.96",
21617
+ "circuit-json-to-gltf": "^0.0.102",
21618
21618
  "circuit-json-to-simple-3d": "^0.0.9",
21619
21619
  "circuit-json-to-spice": "^0.0.34",
21620
21620
  "circuit-to-svg": "^0.0.350",
@@ -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.1267",
4
+ "version": "0.0.1269",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -65,7 +65,7 @@
65
65
  "circuit-json": "^0.0.425",
66
66
  "circuit-json-to-bpc": "^0.0.13",
67
67
  "circuit-json-to-connectivity-map": "^0.0.23",
68
- "circuit-json-to-gltf": "^0.0.96",
68
+ "circuit-json-to-gltf": "^0.0.102",
69
69
  "circuit-json-to-simple-3d": "^0.0.9",
70
70
  "circuit-json-to-spice": "^0.0.34",
71
71
  "circuit-to-svg": "^0.0.350",