schematic-symbols 0.0.75 → 0.0.77

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "schematic-symbols",
3
3
  "main": "./dist/index.js",
4
- "version": "0.0.75",
4
+ "version": "0.0.77",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -0,0 +1,21 @@
1
+ import { defineSymbol } from "drawing/defineSymbol"
2
+ import svgJson from "assets/generated/n_channel_e_mosfet_transistor.json"
3
+ import { Primitive } from "drawing/types"
4
+
5
+ const { paths, texts, bounds, refblocks, circles } = svgJson
6
+
7
+ export default defineSymbol({
8
+ primitives: [
9
+ ...Object.values(paths),
10
+ ...Object.values(circles),
11
+ { ...texts.top1, anchor: "middle_right", x: 0 },
12
+ { ...texts.bottom1, anchor: "middle_right", x: 0 },
13
+ ] as Primitive[],
14
+ ports: [
15
+ { ...refblocks.top1, labels: ["1", "drain"] }, // TODO add more "standard" labels
16
+ { ...refblocks.bottom1, labels: ["2", "source"] }, // TODO add more "standard" labels
17
+ { ...refblocks.left1, labels: ["3", "gate"] }, // TODO add more "standard" labels
18
+ ],
19
+ size: { width: bounds.width, height: bounds.height },
20
+ center: { x: bounds.centerX, y: bounds.centerY },
21
+ })
@@ -0,0 +1,20 @@
1
+ import { rotateSymbol } from "drawing/rotateSymbol"
2
+ import n_channel_e_mosfet_transistor_horz from "./n_channel_e_mosfet_transistor_horz"
3
+
4
+ const rotatedSymbol = rotateSymbol(n_channel_e_mosfet_transistor_horz)
5
+
6
+ const texts = rotatedSymbol.primitives.filter((p) => p.type === "text")!
7
+
8
+ const val = texts.find((t) => t.text === "{VAL}")!
9
+
10
+ val.x = -0.35
11
+ val.y = 0
12
+ val.anchor = "middle_right"
13
+
14
+ const ref = texts.find((t) => t.text === "{REF}")!
15
+
16
+ ref.y = 0
17
+ ref.x = 0.35
18
+ ref.anchor = "middle_left"
19
+
20
+ export default rotatedSymbol