circuit-json 0.0.387 → 0.0.388
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/README.md +7 -1
- package/dist/index.d.mts +255 -190
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1006,7 +1006,13 @@ interface PcbComponent {
|
|
|
1006
1006
|
height: Length
|
|
1007
1007
|
do_not_place?: boolean
|
|
1008
1008
|
pcb_group_id?: string
|
|
1009
|
-
position_mode?:
|
|
1009
|
+
position_mode?:
|
|
1010
|
+
| "packed"
|
|
1011
|
+
| "relative_to_group_anchor"
|
|
1012
|
+
| "relative_to_another_component"
|
|
1013
|
+
| "none"
|
|
1014
|
+
anchor_position?: Point
|
|
1015
|
+
anchor_alignment?: NinePointAnchor
|
|
1010
1016
|
positioned_relative_to_pcb_group_id?: string
|
|
1011
1017
|
positioned_relative_to_pcb_board_id?: string
|
|
1012
1018
|
obstructs_within_bounds: boolean
|