@tscircuit/core 0.0.1087 → 0.0.1089
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.d.ts +1 -0
- package/dist/index.js +10 -8
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -12509,6 +12509,7 @@ var getSimpleRouteJsonFromCircuitJson = ({
|
|
|
12509
12509
|
return {
|
|
12510
12510
|
name: trace.source_trace_id ?? connMap.getNetConnectedToId(trace.source_trace_id) ?? "",
|
|
12511
12511
|
source_trace_id: trace.source_trace_id,
|
|
12512
|
+
nominalTraceWidth: trace.min_trace_thickness,
|
|
12512
12513
|
width: trace.min_trace_thickness,
|
|
12513
12514
|
pointsToConnect: [
|
|
12514
12515
|
{
|
|
@@ -18199,7 +18200,7 @@ import { identity as identity5 } from "transformation-matrix";
|
|
|
18199
18200
|
var package_default = {
|
|
18200
18201
|
name: "@tscircuit/core",
|
|
18201
18202
|
type: "module",
|
|
18202
|
-
version: "0.0.
|
|
18203
|
+
version: "0.0.1088",
|
|
18203
18204
|
types: "dist/index.d.ts",
|
|
18204
18205
|
main: "dist/index.js",
|
|
18205
18206
|
module: "dist/index.js",
|
|
@@ -18231,9 +18232,9 @@ var package_default = {
|
|
|
18231
18232
|
"@biomejs/biome": "^1.8.3",
|
|
18232
18233
|
"@resvg/resvg-js": "^2.6.2",
|
|
18233
18234
|
"@tscircuit/alphabet": "0.0.18",
|
|
18234
|
-
"@tscircuit/capacity-autorouter": "^0.0.
|
|
18235
|
-
"@tscircuit/checks": "0.0.
|
|
18236
|
-
"@tscircuit/circuit-json-util": "^0.0.
|
|
18235
|
+
"@tscircuit/capacity-autorouter": "^0.0.317",
|
|
18236
|
+
"@tscircuit/checks": "0.0.103",
|
|
18237
|
+
"@tscircuit/circuit-json-util": "^0.0.82",
|
|
18237
18238
|
"@tscircuit/common": "^0.0.20",
|
|
18238
18239
|
"@tscircuit/copper-pour-solver": "^0.0.20",
|
|
18239
18240
|
"@tscircuit/footprinter": "^0.0.316",
|
|
@@ -18244,7 +18245,7 @@ var package_default = {
|
|
|
18244
18245
|
"@tscircuit/math-utils": "^0.0.29",
|
|
18245
18246
|
"@tscircuit/miniflex": "^0.0.4",
|
|
18246
18247
|
"@tscircuit/ngspice-spice-engine": "^0.0.8",
|
|
18247
|
-
"@tscircuit/props": "^0.0.
|
|
18248
|
+
"@tscircuit/props": "^0.0.490",
|
|
18248
18249
|
"@tscircuit/schematic-match-adapt": "^0.0.16",
|
|
18249
18250
|
"@tscircuit/schematic-trace-solver": "^v0.0.45",
|
|
18250
18251
|
"@tscircuit/solver-utils": "^0.0.3",
|
|
@@ -19119,12 +19120,13 @@ var Board = class extends Group6 {
|
|
|
19119
19120
|
const { db } = this.root;
|
|
19120
19121
|
const routingDisabled = this.root?.pcbRoutingDisabled || this.getInheritedProperty("routingDisabled");
|
|
19121
19122
|
const pcbDisabled = this.root?.pcbDisabled;
|
|
19123
|
+
const drcChecksDisabled = this.root?.platform?.drcChecksDisabled ?? this.getInheritedProperty("drcChecksDisabled");
|
|
19122
19124
|
const netlistDrcChecksDisabled = this.root?.platform?.netlistDrcChecksDisabled ?? this.getInheritedProperty("netlistDrcChecksDisabled");
|
|
19123
19125
|
const placementDrcChecksDisabled = this.root?.platform?.placementDrcChecksDisabled ?? this.getInheritedProperty("placementDrcChecksDisabled");
|
|
19124
19126
|
const routingDrcChecksDisabled = this.root?.platform?.routingDrcChecksDisabled ?? this.getInheritedProperty("routingDrcChecksDisabled");
|
|
19125
|
-
const shouldRunNetlistChecks = !netlistDrcChecksDisabled;
|
|
19126
|
-
const shouldRunPlacementChecks = !pcbDisabled && !placementDrcChecksDisabled;
|
|
19127
|
-
const shouldRunRoutingChecks = !pcbDisabled && !routingDisabled && !routingDrcChecksDisabled;
|
|
19127
|
+
const shouldRunNetlistChecks = !drcChecksDisabled && !netlistDrcChecksDisabled;
|
|
19128
|
+
const shouldRunPlacementChecks = !drcChecksDisabled && !pcbDisabled && !placementDrcChecksDisabled;
|
|
19129
|
+
const shouldRunRoutingChecks = !drcChecksDisabled && !pcbDisabled && !routingDisabled && !routingDrcChecksDisabled;
|
|
19128
19130
|
if (shouldRunRoutingChecks && this._hasIncompleteAsyncEffectsInSubtreeForPhase("PcbTraceRender"))
|
|
19129
19131
|
return;
|
|
19130
19132
|
const hasTracesToRoute = this._hasTracesToRoute();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.1089",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"@biomejs/biome": "^1.8.3",
|
|
34
34
|
"@resvg/resvg-js": "^2.6.2",
|
|
35
35
|
"@tscircuit/alphabet": "0.0.18",
|
|
36
|
-
"@tscircuit/capacity-autorouter": "^0.0.
|
|
37
|
-
"@tscircuit/checks": "0.0.
|
|
38
|
-
"@tscircuit/circuit-json-util": "^0.0.
|
|
36
|
+
"@tscircuit/capacity-autorouter": "^0.0.317",
|
|
37
|
+
"@tscircuit/checks": "0.0.103",
|
|
38
|
+
"@tscircuit/circuit-json-util": "^0.0.82",
|
|
39
39
|
"@tscircuit/common": "^0.0.20",
|
|
40
40
|
"@tscircuit/copper-pour-solver": "^0.0.20",
|
|
41
41
|
"@tscircuit/footprinter": "^0.0.316",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@tscircuit/math-utils": "^0.0.29",
|
|
47
47
|
"@tscircuit/miniflex": "^0.0.4",
|
|
48
48
|
"@tscircuit/ngspice-spice-engine": "^0.0.8",
|
|
49
|
-
"@tscircuit/props": "^0.0.
|
|
49
|
+
"@tscircuit/props": "^0.0.490",
|
|
50
50
|
"@tscircuit/schematic-match-adapt": "^0.0.16",
|
|
51
51
|
"@tscircuit/schematic-trace-solver": "^v0.0.45",
|
|
52
52
|
"@tscircuit/solver-utils": "^0.0.3",
|