circuit-json 0.0.329 → 0.0.331
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 +9 -0
- package/dist/index.d.mts +752 -0
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -273,6 +273,14 @@ interface SourceComponentBase {
|
|
|
273
273
|
manufacturer_part_number?: string
|
|
274
274
|
supplier_part_numbers?: Partial<Record<SupplierName, string[]>>
|
|
275
275
|
display_value?: string
|
|
276
|
+
/** How to display the x offset for this part, usually corresponding with how
|
|
277
|
+
* the user specified it */
|
|
278
|
+
|
|
279
|
+
display_x_offset?: string
|
|
280
|
+
/** How to display the y offset for this part, usually corresponding with how
|
|
281
|
+
* the user specified it */
|
|
282
|
+
|
|
283
|
+
display_y_offset?: string
|
|
276
284
|
are_pins_interchangeable?: boolean
|
|
277
285
|
internally_connected_source_port_ids?: string[][]
|
|
278
286
|
source_group_id?: string
|
|
@@ -986,6 +994,7 @@ interface PcbComponent {
|
|
|
986
994
|
pcb_group_id?: string
|
|
987
995
|
position_mode?: "packed" | "relative_to_group_anchor" | "none"
|
|
988
996
|
positioned_relative_to_pcb_group_id?: string
|
|
997
|
+
positioned_relative_to_pcb_board_id?: string
|
|
989
998
|
obstructs_within_bounds: boolean
|
|
990
999
|
}
|
|
991
1000
|
```
|