@tscircuit/core 0.0.631 → 0.0.632

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 +13 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10047,7 +10047,10 @@ var Group = class extends NormalComponent {
10047
10047
  };
10048
10048
 
10049
10049
  // lib/components/normal-components/Board.ts
10050
- import { checkEachPcbTraceNonOverlapping } from "@tscircuit/checks";
10050
+ import {
10051
+ checkEachPcbPortConnectedToPcbTraces,
10052
+ checkEachPcbTraceNonOverlapping
10053
+ } from "@tscircuit/checks";
10051
10054
  var Board = class extends Group {
10052
10055
  pcb_board_id = null;
10053
10056
  _drcChecksComplete = false;
@@ -10225,6 +10228,12 @@ var Board = class extends Group {
10225
10228
  for (const error of errors) {
10226
10229
  db.pcb_trace_error.insert(error);
10227
10230
  }
10231
+ const pcbPortNotConnectedErrors = checkEachPcbPortConnectedToPcbTraces(
10232
+ db.toArray()
10233
+ );
10234
+ for (const error of pcbPortNotConnectedErrors) {
10235
+ db.pcb_port_not_connected_error.insert(error);
10236
+ }
10228
10237
  }
10229
10238
  _emitRenderLifecycleEvent(phase, startOrEnd) {
10230
10239
  super._emitRenderLifecycleEvent(phase, startOrEnd);
@@ -12518,7 +12527,7 @@ import { identity as identity5 } from "transformation-matrix";
12518
12527
  var package_default = {
12519
12528
  name: "@tscircuit/core",
12520
12529
  type: "module",
12521
- version: "0.0.630",
12530
+ version: "0.0.631",
12522
12531
  types: "dist/index.d.ts",
12523
12532
  main: "dist/index.js",
12524
12533
  module: "dist/index.js",
@@ -12542,8 +12551,8 @@ var package_default = {
12542
12551
  devDependencies: {
12543
12552
  "@biomejs/biome": "^1.8.3",
12544
12553
  "@tscircuit/capacity-autorouter": "^0.0.100",
12545
- "@tscircuit/checks": "^0.0.68",
12546
12554
  "@tscircuit/circuit-json-util": "^0.0.65",
12555
+ "@tscircuit/checks": "^0.0.71",
12547
12556
  "@tscircuit/footprinter": "^0.0.208",
12548
12557
  "@tscircuit/import-snippet": "^0.0.4",
12549
12558
  "@tscircuit/infgrid-ijump-astar": "^0.0.33",
@@ -12564,7 +12573,7 @@ var package_default = {
12564
12573
  "bun-match-svg": "0.0.12",
12565
12574
  "calculate-elbow": "^0.0.9",
12566
12575
  "chokidar-cli": "^3.0.0",
12567
- "circuit-json": "^0.0.228",
12576
+ "circuit-json": "^0.0.230",
12568
12577
  "circuit-json-to-bpc": "^0.0.13",
12569
12578
  "circuit-json-to-connectivity-map": "^0.0.22",
12570
12579
  "circuit-json-to-simple-3d": "^0.0.6",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.631",
4
+ "version": "0.0.632",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "devDependencies": {
26
26
  "@biomejs/biome": "^1.8.3",
27
27
  "@tscircuit/capacity-autorouter": "^0.0.100",
28
- "@tscircuit/checks": "^0.0.68",
29
28
  "@tscircuit/circuit-json-util": "^0.0.65",
29
+ "@tscircuit/checks": "^0.0.71",
30
30
  "@tscircuit/footprinter": "^0.0.208",
31
31
  "@tscircuit/import-snippet": "^0.0.4",
32
32
  "@tscircuit/infgrid-ijump-astar": "^0.0.33",
@@ -47,7 +47,7 @@
47
47
  "bun-match-svg": "0.0.12",
48
48
  "calculate-elbow": "^0.0.9",
49
49
  "chokidar-cli": "^3.0.0",
50
- "circuit-json": "^0.0.228",
50
+ "circuit-json": "^0.0.230",
51
51
  "circuit-json-to-bpc": "^0.0.13",
52
52
  "circuit-json-to-connectivity-map": "^0.0.22",
53
53
  "circuit-json-to-simple-3d": "^0.0.6",