@tscircuit/core 0.0.1025 → 0.0.1026
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 +5 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ interface SimpleRouteJson {
|
|
|
101
101
|
}>;
|
|
102
102
|
traces?: SimplifiedPcbTrace[];
|
|
103
103
|
allowJumpers?: boolean;
|
|
104
|
+
availableJumperTypes?: Array<"1206x4" | "0603">;
|
|
104
105
|
}
|
|
105
106
|
|
|
106
107
|
type RootCircuitEventName = "asyncEffect:start" | "asyncEffect:end" | "renderable:renderLifecycle:anyEvent" | `renderable:renderLifecycle:${RenderPhase}:start` | `renderable:renderLifecycle:${RenderPhase}:end` | `board:renderPhaseStarted` | "external:evalError" | "autorouting:start" | "autorouting:end" | "autorouting:error" | "autorouting:progress" | "packing:start" | "packing:end" | "packing:error" | "solver:started" | "renderComplete" | "debug:logOutput";
|
package/dist/index.js
CHANGED
|
@@ -14662,7 +14662,7 @@ import { identity as identity4 } from "transformation-matrix";
|
|
|
14662
14662
|
var package_default = {
|
|
14663
14663
|
name: "@tscircuit/core",
|
|
14664
14664
|
type: "module",
|
|
14665
|
-
version: "0.0.
|
|
14665
|
+
version: "0.0.1025",
|
|
14666
14666
|
types: "dist/index.d.ts",
|
|
14667
14667
|
main: "dist/index.js",
|
|
14668
14668
|
module: "dist/index.js",
|
|
@@ -14694,7 +14694,7 @@ var package_default = {
|
|
|
14694
14694
|
"@biomejs/biome": "^1.8.3",
|
|
14695
14695
|
"@resvg/resvg-js": "^2.6.2",
|
|
14696
14696
|
"@tscircuit/alphabet": "0.0.18",
|
|
14697
|
-
"@tscircuit/capacity-autorouter": "^0.0.
|
|
14697
|
+
"@tscircuit/capacity-autorouter": "^0.0.269",
|
|
14698
14698
|
"@tscircuit/checks": "^0.0.88",
|
|
14699
14699
|
"@tscircuit/circuit-json-util": "^0.0.77",
|
|
14700
14700
|
"@tscircuit/common": "^0.0.20",
|
|
@@ -15441,6 +15441,9 @@ var Group6 = class extends NormalComponent3 {
|
|
|
15441
15441
|
});
|
|
15442
15442
|
if (isAutoJumperPreset) {
|
|
15443
15443
|
simpleRouteJson.allowJumpers = true;
|
|
15444
|
+
if (autorouterConfig.availableJumperTypes) {
|
|
15445
|
+
simpleRouteJson.availableJumperTypes = autorouterConfig.availableJumperTypes;
|
|
15446
|
+
}
|
|
15444
15447
|
}
|
|
15445
15448
|
if (debug11.enabled) {
|
|
15446
15449
|
;
|
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.1026",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
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.
|
|
36
|
+
"@tscircuit/capacity-autorouter": "^0.0.269",
|
|
37
37
|
"@tscircuit/checks": "^0.0.88",
|
|
38
38
|
"@tscircuit/circuit-json-util": "^0.0.77",
|
|
39
39
|
"@tscircuit/common": "^0.0.20",
|