@tscircuit/core 0.0.839 → 0.0.840

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 +4 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -12343,7 +12343,7 @@ var debug7 = Debug9("Group_doInitialSchematicTraceRender");
12343
12343
  function applyTracesFromSolverOutput(args) {
12344
12344
  const { group, solver, pinIdToSchematicPortId, userNetIdToSck } = args;
12345
12345
  const { db } = group.root;
12346
- const traces = solver.traceLabelOverlapAvoidanceSolver?.getOutput().traces ?? solver.schematicTraceLinesSolver?.solvedTracePaths;
12346
+ const traces = solver.traceCleanupSolver?.getOutput().traces ?? solver.traceLabelOverlapAvoidanceSolver?.getOutput().traces ?? solver.schematicTraceLinesSolver?.solvedTracePaths;
12347
12347
  const pendingTraces = [];
12348
12348
  debug7(`Traces inside SchematicTraceSolver output: ${(traces ?? []).length}`);
12349
12349
  for (const solvedTracePath of traces ?? []) {
@@ -12467,7 +12467,7 @@ function applyNetLabelPlacements(args) {
12467
12467
  schematicPortIdsWithRoutedTraces
12468
12468
  } = args;
12469
12469
  const { db } = group.root;
12470
- const netLabelPlacements = solver.traceLabelOverlapAvoidanceSolver?.getOutput().netLabelPlacements ?? [];
12470
+ const netLabelPlacements = solver.netLabelPlacementSolver?.netLabelPlacements ?? solver.traceLabelOverlapAvoidanceSolver?.getOutput().netLabelPlacements ?? [];
12471
12471
  const globalConnMap = solver.mspConnectionPairSolver.globalConnMap;
12472
12472
  for (const placement of netLabelPlacements) {
12473
12473
  debug8(`processing placement: ${placement.netId}`);
@@ -17706,7 +17706,7 @@ import { identity as identity6 } from "transformation-matrix";
17706
17706
  var package_default = {
17707
17707
  name: "@tscircuit/core",
17708
17708
  type: "module",
17709
- version: "0.0.838",
17709
+ version: "0.0.839",
17710
17710
  types: "dist/index.d.ts",
17711
17711
  main: "dist/index.js",
17712
17712
  module: "dist/index.js",
@@ -17752,7 +17752,7 @@ var package_default = {
17752
17752
  "@tscircuit/props": "^0.0.387",
17753
17753
  "@tscircuit/schematic-autolayout": "^0.0.6",
17754
17754
  "@tscircuit/schematic-match-adapt": "^0.0.16",
17755
- "@tscircuit/schematic-trace-solver": "^0.0.41",
17755
+ "@tscircuit/schematic-trace-solver": "^0.0.43",
17756
17756
  "@types/bun": "^1.2.16",
17757
17757
  "@types/debug": "^4.1.12",
17758
17758
  "@types/react": "^19.1.8",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/core",
3
3
  "type": "module",
4
- "version": "0.0.839",
4
+ "version": "0.0.840",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
@@ -47,7 +47,7 @@
47
47
  "@tscircuit/props": "^0.0.387",
48
48
  "@tscircuit/schematic-autolayout": "^0.0.6",
49
49
  "@tscircuit/schematic-match-adapt": "^0.0.16",
50
- "@tscircuit/schematic-trace-solver": "^0.0.41",
50
+ "@tscircuit/schematic-trace-solver": "^0.0.43",
51
51
  "@types/bun": "^1.2.16",
52
52
  "@types/debug": "^4.1.12",
53
53
  "@types/react": "^19.1.8",