circuit-to-svg 0.0.257 → 0.0.258
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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2282,7 +2282,7 @@ var DEFAULT_PCB_COLOR_MAP = {
|
|
|
2282
2282
|
bottom: "rgb(77, 127, 196)"
|
|
2283
2283
|
},
|
|
2284
2284
|
soldermask: {
|
|
2285
|
-
top: "rgb(
|
|
2285
|
+
top: "rgb(18, 82, 50)",
|
|
2286
2286
|
bottom: "rgb(77, 127, 196)"
|
|
2287
2287
|
},
|
|
2288
2288
|
drill: "#FF26E2",
|
|
@@ -2379,7 +2379,7 @@ function createSvgObjectsFromPcbTrace(trace, ctx) {
|
|
|
2379
2379
|
children: [],
|
|
2380
2380
|
attributes: {
|
|
2381
2381
|
class: "pcb-trace",
|
|
2382
|
-
stroke:
|
|
2382
|
+
stroke: copperColor,
|
|
2383
2383
|
fill: "none",
|
|
2384
2384
|
d: `M ${startPoint[0]} ${startPoint[1]} L ${endPoint[0]} ${endPoint[1]}`,
|
|
2385
2385
|
"stroke-width": width,
|
|
@@ -3471,7 +3471,7 @@ function getSoftwareUsedString(circuitJson) {
|
|
|
3471
3471
|
var package_default = {
|
|
3472
3472
|
name: "circuit-to-svg",
|
|
3473
3473
|
type: "module",
|
|
3474
|
-
version: "0.0.
|
|
3474
|
+
version: "0.0.257",
|
|
3475
3475
|
description: "Convert Circuit JSON to SVG",
|
|
3476
3476
|
main: "dist/index.js",
|
|
3477
3477
|
files: [
|