schematic-symbols 0.0.71 → 0.0.73

Sign up to get free protection for your applications and to get access to all the features.
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.71",
4
+ "version": "0.0.73",
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/SPDT_switch.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_bottom", x: -0.01 },
12
+ { ...texts.bottom1, anchor: "middle_top", x: -0.01 },
13
+ ] as Primitive[],
14
+ ports: [
15
+ { ...refblocks.left1, labels: ["1"] }, // TODO add more "standard" labels
16
+ { ...refblocks.right1, labels: ["3"] }, // TODO add more "standard" labels
17
+ { ...refblocks.right2, labels: ["2"] }, // 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 SPDT_switch_horz from "./SPDT_switch_horz"
3
+
4
+ const rotatedSymbol = rotateSymbol(SPDT_switch_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.anchor = "middle_right"
11
+ val.x = -0.3
12
+ val.y = 0
13
+
14
+ const ref = texts.find((t) => t.text === "{REF}")!
15
+
16
+ ref.anchor = "middle_left"
17
+ ref.x = 0.3
18
+ ref.y = 0
19
+
20
+ export default rotatedSymbol
@@ -0,0 +1,32 @@
1
+ import svgJson from "assets/generated/npn_bipolar_transistor.json"
2
+ import { defineSymbol } from "drawing/defineSymbol"
3
+
4
+ const { paths, texts, bounds, refblocks, circles } = svgJson
5
+
6
+ export default defineSymbol({
7
+ primitives: [
8
+ ...Object.values(paths),
9
+ ...Object.values(circles),
10
+ {
11
+ type: "text",
12
+ text: "{REF}",
13
+ x: -0.07,
14
+ y: -0.3596647999999991,
15
+ anchor: "middle_right",
16
+ },
17
+ {
18
+ type: "text",
19
+ text: "{VAL}",
20
+ x: -0.0679100444999996,
21
+ y: 0.4129789000000006,
22
+ anchor: "middle_right",
23
+ },
24
+ ] as any,
25
+ ports: [
26
+ { ...refblocks.top1, labels: ["1", "collector"] },
27
+ { ...refblocks.bottom1, labels: ["2", "emitter"] },
28
+ { ...refblocks.left1, labels: ["3", "base"] },
29
+ ],
30
+ size: { width: bounds.width, height: bounds.height },
31
+ center: { x: bounds.centerX, y: bounds.centerY },
32
+ })
@@ -0,0 +1,12 @@
1
+ import { rotateSymbol } from "drawing/rotateSymbol"
2
+ import npn_bipolar_transistor_horz from "./npn_bipolar_transistor_horz"
3
+
4
+ const rotatedSymbol = rotateSymbol(npn_bipolar_transistor_horz)
5
+
6
+ const texts = rotatedSymbol.primitives.filter((p) => p.type === "text")
7
+
8
+ const ref = texts.find((t) => t.text === "{REF}")!
9
+
10
+ ref.anchor = "middle_left"
11
+
12
+ export default rotatedSymbol