@tscircuit/checks 0.0.150 → 0.0.151
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 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3056,11 +3056,12 @@ function getFacingDirectionFromInsertionDirection(component) {
|
|
|
3056
3056
|
return "x-";
|
|
3057
3057
|
case "from_right":
|
|
3058
3058
|
return "x+";
|
|
3059
|
-
case "
|
|
3059
|
+
case "from_top":
|
|
3060
3060
|
return "y+";
|
|
3061
|
-
case "
|
|
3061
|
+
case "from_bottom":
|
|
3062
3062
|
return "y-";
|
|
3063
3063
|
case "from_above":
|
|
3064
|
+
case "from_below":
|
|
3064
3065
|
return null;
|
|
3065
3066
|
default:
|
|
3066
3067
|
return null;
|