schematic-symbols 0.0.113 → 0.0.115
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +41 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/symbols/capacitor_left.ts +5 -5
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
import { isPrimitive } from "drawing/typeguards"
|
2
2
|
import { modifySymbol } from "../drawing/modify-symbol/modify-symbol"
|
3
|
-
import svgJson from "
|
3
|
+
import svgJson from "../assets/generated/capacitor.json"
|
4
4
|
|
5
5
|
export default modifySymbol(svgJson)
|
6
6
|
.changeTextAnchor("{VAL}", "middle_top")
|
7
|
-
.rotateRightFacingSymbol("
|
8
|
-
.labelPort("left1", ["
|
9
|
-
.labelPort("right1", ["
|
10
|
-
.changeTextAnchor("{REF}", "
|
7
|
+
.rotateRightFacingSymbol("right")
|
8
|
+
.labelPort("left1", ["2"])
|
9
|
+
.labelPort("right1", ["1"])
|
10
|
+
.changeTextAnchor("{REF}", "middle_bottom")
|
11
11
|
.build()
|