@tscircuit/core 0.0.1132 → 0.0.1133
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 +4 -4
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ import { symbols, SchSymbol, BaseSymbolName } from 'schematic-symbols';
|
|
|
12
12
|
import { CircuitJsonUtilObjects } from '@tscircuit/circuit-json-util';
|
|
13
13
|
import { Matrix } from 'transformation-matrix';
|
|
14
14
|
import { PackSolver2 } from 'calculate-packing';
|
|
15
|
-
import { AutoroutingPipelineSolver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver3_HgPortPointPathing
|
|
15
|
+
import { AutoroutingPipelineSolver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver3_HgPortPointPathing } from '@tscircuit/capacity-autorouter';
|
|
16
16
|
import { CopperPourPipelineSolver } from '@tscircuit/copper-pour-solver';
|
|
17
17
|
import { ConnectivityMap } from 'circuit-json-to-connectivity-map';
|
|
18
18
|
import { GraphicsObject } from 'graphics-debug';
|
|
@@ -24,7 +24,7 @@ declare const SOLVERS: {
|
|
|
24
24
|
AssignableAutoroutingPipeline3: typeof AssignableAutoroutingPipeline3;
|
|
25
25
|
AutoroutingPipeline1_OriginalUnravel: typeof AutoroutingPipeline1_OriginalUnravel;
|
|
26
26
|
AutoroutingPipelineSolver3_HgPortPointPathing: typeof AutoroutingPipelineSolver3_HgPortPointPathing;
|
|
27
|
-
AutoroutingPipelineSolver4: typeof
|
|
27
|
+
AutoroutingPipelineSolver4: typeof AutoroutingPipelineSolver;
|
|
28
28
|
CopperPourPipelineSolver: typeof CopperPourPipelineSolver;
|
|
29
29
|
};
|
|
30
30
|
type SolverName = keyof typeof SOLVERS;
|
|
@@ -5575,7 +5575,7 @@ declare class Subpanel extends Group<typeof subpanelProps> {
|
|
|
5575
5575
|
topMargin?: string | number | undefined;
|
|
5576
5576
|
bottomMargin?: string | number | undefined;
|
|
5577
5577
|
}>>>;
|
|
5578
|
-
}, "width" | "
|
|
5578
|
+
}, "width" | "height" | "children" | "layoutMode"> & {
|
|
5579
5579
|
width: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
5580
5580
|
height: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
5581
5581
|
children: zod.ZodOptional<zod.ZodAny>;
|
|
@@ -6768,7 +6768,7 @@ declare class Panel extends Subpanel {
|
|
|
6768
6768
|
topMargin?: string | number | undefined;
|
|
6769
6769
|
bottomMargin?: string | number | undefined;
|
|
6770
6770
|
}>>>;
|
|
6771
|
-
}, "width" | "
|
|
6771
|
+
}, "width" | "height" | "children" | "layoutMode"> & {
|
|
6772
6772
|
width: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
6773
6773
|
height: zod.ZodOptional<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>, number, string | number>>;
|
|
6774
6774
|
children: zod.ZodOptional<zod.ZodAny>;
|
package/dist/index.js
CHANGED
|
@@ -18758,8 +18758,8 @@ var package_default = {
|
|
|
18758
18758
|
"@biomejs/biome": "^1.8.3",
|
|
18759
18759
|
"@resvg/resvg-js": "^2.6.2",
|
|
18760
18760
|
"@tscircuit/alphabet": "0.0.25",
|
|
18761
|
+
"@tscircuit/capacity-autorouter": "^0.0.398",
|
|
18761
18762
|
"@tscircuit/checks": "0.0.115",
|
|
18762
|
-
"@tscircuit/capacity-autorouter": "^0.0.359",
|
|
18763
18763
|
"@tscircuit/circuit-json-util": "^0.0.90",
|
|
18764
18764
|
"@tscircuit/common": "^0.0.20",
|
|
18765
18765
|
"@tscircuit/copper-pour-solver": "^0.0.20",
|
|
@@ -18797,7 +18797,7 @@ var package_default = {
|
|
|
18797
18797
|
debug: "^4.3.6",
|
|
18798
18798
|
"eecircuit-engine": "^1.5.6",
|
|
18799
18799
|
flatbush: "^4.5.0",
|
|
18800
|
-
"graphics-debug": "^0.0.
|
|
18800
|
+
"graphics-debug": "^0.0.89",
|
|
18801
18801
|
howfat: "^0.3.8",
|
|
18802
18802
|
"live-server": "^1.2.2",
|
|
18803
18803
|
"looks-same": "^9.0.1",
|
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.1133",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"@biomejs/biome": "^1.8.3",
|
|
34
34
|
"@resvg/resvg-js": "^2.6.2",
|
|
35
35
|
"@tscircuit/alphabet": "0.0.25",
|
|
36
|
+
"@tscircuit/capacity-autorouter": "^0.0.398",
|
|
36
37
|
"@tscircuit/checks": "0.0.115",
|
|
37
|
-
"@tscircuit/capacity-autorouter": "^0.0.359",
|
|
38
38
|
"@tscircuit/circuit-json-util": "^0.0.90",
|
|
39
39
|
"@tscircuit/common": "^0.0.20",
|
|
40
40
|
"@tscircuit/copper-pour-solver": "^0.0.20",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"debug": "^4.3.6",
|
|
73
73
|
"eecircuit-engine": "^1.5.6",
|
|
74
74
|
"flatbush": "^4.5.0",
|
|
75
|
-
"graphics-debug": "^0.0.
|
|
75
|
+
"graphics-debug": "^0.0.89",
|
|
76
76
|
"howfat": "^0.3.8",
|
|
77
77
|
"live-server": "^1.2.2",
|
|
78
78
|
"looks-same": "^9.0.1",
|