@tscircuit/core 0.0.750 → 0.0.751

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 CHANGED
@@ -7721,7 +7721,8 @@ var NormalComponent3 = class extends PrimitiveComponent2 {
7721
7721
  rotation: props.pcbRotation ?? accumulatedRotation,
7722
7722
  source_component_id: this.source_component_id,
7723
7723
  subcircuit_id: subcircuit.subcircuit_id ?? void 0,
7724
- do_not_place: props.doNotPlace ?? false
7724
+ do_not_place: props.doNotPlace ?? false,
7725
+ obstructs_within_bounds: props.obstructsWithinBounds ?? true
7725
7726
  });
7726
7727
  const footprint = props.footprint ?? this._getImpliedFootprintString();
7727
7728
  if (!footprint && !this.isGroup) {
@@ -13039,7 +13040,8 @@ var Chip = class extends NormalComponent3 {
13039
13040
  rotation: props.pcbRotation ?? 0,
13040
13041
  source_component_id: this.source_component_id,
13041
13042
  subcircuit_id: this.getSubcircuit().subcircuit_id ?? void 0,
13042
- do_not_place: props.doNotPlace ?? false
13043
+ do_not_place: props.doNotPlace ?? false,
13044
+ obstructs_within_bounds: props.obstructsWithinBounds ?? true
13043
13045
  });
13044
13046
  this.pcb_component_id = pcb_component.pcb_component_id;
13045
13047
  }
@@ -13264,7 +13266,8 @@ var Jumper = class extends NormalComponent3 {
13264
13266
  rotation: props.pcbRotation ?? 0,
13265
13267
  source_component_id: this.source_component_id,
13266
13268
  subcircuit_id: this.getSubcircuit().subcircuit_id ?? void 0,
13267
- do_not_place: props.doNotPlace ?? false
13269
+ do_not_place: props.doNotPlace ?? false,
13270
+ obstructs_within_bounds: props.obstructsWithinBounds ?? true
13268
13271
  });
13269
13272
  this.pcb_component_id = pcb_component.pcb_component_id;
13270
13273
  }
@@ -13419,7 +13422,8 @@ var SolderJumper = class extends NormalComponent3 {
13419
13422
  rotation: props.pcbRotation ?? 0,
13420
13423
  source_component_id: this.source_component_id,
13421
13424
  subcircuit_id: this.getSubcircuit().subcircuit_id ?? void 0,
13422
- do_not_place: props.doNotPlace ?? false
13425
+ do_not_place: props.doNotPlace ?? false,
13426
+ obstructs_within_bounds: props.obstructsWithinBounds ?? true
13423
13427
  });
13424
13428
  this.pcb_component_id = pcb_component.pcb_component_id;
13425
13429
  }
@@ -14397,7 +14401,8 @@ var Via = class extends PrimitiveComponent2 {
14397
14401
  layer: props.fromLayer ?? "top",
14398
14402
  rotation: 0,
14399
14403
  source_component_id: this.source_component_id,
14400
- subcircuit_id: subcircuit?.subcircuit_id ?? void 0
14404
+ subcircuit_id: subcircuit?.subcircuit_id ?? void 0,
14405
+ obstructs_within_bounds: true
14401
14406
  });
14402
14407
  this.pcb_component_id = pcb_component.pcb_component_id;
14403
14408
  }
@@ -15773,7 +15778,7 @@ import { identity as identity6 } from "transformation-matrix";
15773
15778
  var package_default = {
15774
15779
  name: "@tscircuit/core",
15775
15780
  type: "module",
15776
- version: "0.0.749",
15781
+ version: "0.0.750",
15777
15782
  types: "dist/index.d.ts",
15778
15783
  main: "dist/index.js",
15779
15784
  module: "dist/index.js",
@@ -15812,7 +15817,7 @@ var package_default = {
15812
15817
  "@tscircuit/matchpack": "^0.0.16",
15813
15818
  "@tscircuit/math-utils": "^0.0.21",
15814
15819
  "@tscircuit/miniflex": "^0.0.4",
15815
- "@tscircuit/props": "0.0.335",
15820
+ "@tscircuit/props": "0.0.341",
15816
15821
  "@tscircuit/schematic-autolayout": "^0.0.6",
15817
15822
  "@tscircuit/schematic-match-adapt": "^0.0.16",
15818
15823
  "@tscircuit/schematic-trace-solver": "^0.0.40",
@@ -15826,7 +15831,7 @@ var package_default = {
15826
15831
  "bun-match-svg": "0.0.12",
15827
15832
  "calculate-elbow": "^0.0.12",
15828
15833
  "chokidar-cli": "^3.0.0",
15829
- "circuit-json": "^0.0.265",
15834
+ "circuit-json": "^0.0.267",
15830
15835
  "circuit-json-to-bpc": "^0.0.13",
15831
15836
  "circuit-json-to-connectivity-map": "^0.0.22",
15832
15837
  "circuit-json-to-simple-3d": "^0.0.9",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.750",
4
+ "version": "0.0.751",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -40,7 +40,7 @@
40
40
  "@tscircuit/matchpack": "^0.0.16",
41
41
  "@tscircuit/math-utils": "^0.0.21",
42
42
  "@tscircuit/miniflex": "^0.0.4",
43
- "@tscircuit/props": "0.0.335",
43
+ "@tscircuit/props": "0.0.341",
44
44
  "@tscircuit/schematic-autolayout": "^0.0.6",
45
45
  "@tscircuit/schematic-match-adapt": "^0.0.16",
46
46
  "@tscircuit/schematic-trace-solver": "^0.0.40",
@@ -54,7 +54,7 @@
54
54
  "bun-match-svg": "0.0.12",
55
55
  "calculate-elbow": "^0.0.12",
56
56
  "chokidar-cli": "^3.0.0",
57
- "circuit-json": "^0.0.265",
57
+ "circuit-json": "^0.0.267",
58
58
  "circuit-json-to-bpc": "^0.0.13",
59
59
  "circuit-json-to-connectivity-map": "^0.0.22",
60
60
  "circuit-json-to-simple-3d": "^0.0.9",