circuit-json 0.0.330 → 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 +8 -0
- package/dist/index.d.mts +742 -0
- package/dist/index.mjs +6 -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
|