circuit-json 0.0.338 → 0.0.339
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 +5 -0
- package/dist/index.d.mts +164 -69
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -948,12 +948,17 @@ interface PcbBoard {
|
|
|
948
948
|
subcircuit_id?: string
|
|
949
949
|
width?: Length
|
|
950
950
|
height?: Length
|
|
951
|
+
display_offset_x?: string
|
|
952
|
+
display_offset_y?: string
|
|
951
953
|
thickness: Length
|
|
952
954
|
num_layers: number
|
|
953
955
|
center: Point
|
|
954
956
|
outline?: Point[]
|
|
955
957
|
shape?: "rect" | "polygon"
|
|
956
958
|
material: "fr4" | "fr1"
|
|
959
|
+
anchor_position?: Point
|
|
960
|
+
anchor_alignment: NinePointAnchor
|
|
961
|
+
position_mode?: "relative_to_panel_anchor" | "none"
|
|
957
962
|
}
|
|
958
963
|
```
|
|
959
964
|
|