@tscircuit/core 0.0.807 → 0.0.809
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.js +18 -4
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -3027,6 +3027,19 @@ var createComponentsFromCircuitJson = ({
|
|
|
3027
3027
|
portHints: elm.port_hints
|
|
3028
3028
|
})
|
|
3029
3029
|
);
|
|
3030
|
+
} else if (elm.type === "pcb_smtpad" && elm.shape === "pill") {
|
|
3031
|
+
components.push(
|
|
3032
|
+
new SmtPad({
|
|
3033
|
+
shape: "pill",
|
|
3034
|
+
height: elm.height,
|
|
3035
|
+
width: elm.width,
|
|
3036
|
+
radius: elm.radius,
|
|
3037
|
+
portHints: elm.port_hints,
|
|
3038
|
+
pcbX: elm.x,
|
|
3039
|
+
pcbY: elm.y,
|
|
3040
|
+
layer: elm.layer
|
|
3041
|
+
})
|
|
3042
|
+
);
|
|
3030
3043
|
} else if (elm.type === "pcb_silkscreen_path") {
|
|
3031
3044
|
components.push(
|
|
3032
3045
|
new SilkscreenPath({
|
|
@@ -17198,7 +17211,7 @@ import { identity as identity6 } from "transformation-matrix";
|
|
|
17198
17211
|
var package_default = {
|
|
17199
17212
|
name: "@tscircuit/core",
|
|
17200
17213
|
type: "module",
|
|
17201
|
-
version: "0.0.
|
|
17214
|
+
version: "0.0.808",
|
|
17202
17215
|
types: "dist/index.d.ts",
|
|
17203
17216
|
main: "dist/index.js",
|
|
17204
17217
|
module: "dist/index.js",
|
|
@@ -17227,6 +17240,7 @@ var package_default = {
|
|
|
17227
17240
|
},
|
|
17228
17241
|
devDependencies: {
|
|
17229
17242
|
"@biomejs/biome": "^1.8.3",
|
|
17243
|
+
"@resvg/resvg-js": "^2.6.2",
|
|
17230
17244
|
"@tscircuit/capacity-autorouter": "^0.0.132",
|
|
17231
17245
|
"@tscircuit/checks": "^0.0.85",
|
|
17232
17246
|
"@tscircuit/circuit-json-util": "^0.0.72",
|
|
@@ -17254,10 +17268,10 @@ var package_default = {
|
|
|
17254
17268
|
"circuit-json": "^0.0.288",
|
|
17255
17269
|
"circuit-json-to-bpc": "^0.0.13",
|
|
17256
17270
|
"circuit-json-to-connectivity-map": "^0.0.22",
|
|
17257
|
-
"circuit-json-to-gltf": "^0.0.
|
|
17271
|
+
"circuit-json-to-gltf": "^0.0.27",
|
|
17258
17272
|
"circuit-json-to-simple-3d": "^0.0.9",
|
|
17259
|
-
"circuit-to-svg": "^0.0.250",
|
|
17260
17273
|
"circuit-json-to-spice": "^0.0.15",
|
|
17274
|
+
"circuit-to-svg": "^0.0.250",
|
|
17261
17275
|
concurrently: "^9.1.2",
|
|
17262
17276
|
"connectivity-map": "^1.0.0",
|
|
17263
17277
|
debug: "^4.3.6",
|
|
@@ -17268,7 +17282,7 @@ var package_default = {
|
|
|
17268
17282
|
"looks-same": "^9.0.1",
|
|
17269
17283
|
minicssgrid: "^0.0.9",
|
|
17270
17284
|
"pkg-pr-new": "^0.0.37",
|
|
17271
|
-
poppygl: "^0.0.
|
|
17285
|
+
poppygl: "^0.0.16",
|
|
17272
17286
|
react: "^19.1.0",
|
|
17273
17287
|
"react-dom": "^19.1.0",
|
|
17274
17288
|
"schematic-symbols": "^0.0.202",
|
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.809",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@biomejs/biome": "^1.8.3",
|
|
33
|
+
"@resvg/resvg-js": "^2.6.2",
|
|
33
34
|
"@tscircuit/capacity-autorouter": "^0.0.132",
|
|
34
35
|
"@tscircuit/checks": "^0.0.85",
|
|
35
36
|
"@tscircuit/circuit-json-util": "^0.0.72",
|
|
@@ -57,10 +58,10 @@
|
|
|
57
58
|
"circuit-json": "^0.0.288",
|
|
58
59
|
"circuit-json-to-bpc": "^0.0.13",
|
|
59
60
|
"circuit-json-to-connectivity-map": "^0.0.22",
|
|
60
|
-
"circuit-json-to-gltf": "^0.0.
|
|
61
|
+
"circuit-json-to-gltf": "^0.0.27",
|
|
61
62
|
"circuit-json-to-simple-3d": "^0.0.9",
|
|
62
|
-
"circuit-to-svg": "^0.0.250",
|
|
63
63
|
"circuit-json-to-spice": "^0.0.15",
|
|
64
|
+
"circuit-to-svg": "^0.0.250",
|
|
64
65
|
"concurrently": "^9.1.2",
|
|
65
66
|
"connectivity-map": "^1.0.0",
|
|
66
67
|
"debug": "^4.3.6",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"looks-same": "^9.0.1",
|
|
72
73
|
"minicssgrid": "^0.0.9",
|
|
73
74
|
"pkg-pr-new": "^0.0.37",
|
|
74
|
-
"poppygl": "^0.0.
|
|
75
|
+
"poppygl": "^0.0.16",
|
|
75
76
|
"react": "^19.1.0",
|
|
76
77
|
"react-dom": "^19.1.0",
|
|
77
78
|
"schematic-symbols": "^0.0.202",
|