circuit-json 0.0.252 → 0.0.254
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 -1
- package/dist/index.d.mts +113 -10
- package/dist/index.mjs +18 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -267,6 +267,7 @@ interface SourceGroup {
|
|
|
267
267
|
parent_subcircuit_id?: string
|
|
268
268
|
parent_source_group_id?: string
|
|
269
269
|
is_subcircuit?: boolean
|
|
270
|
+
show_as_schematic_box?: boolean
|
|
270
271
|
name?: string
|
|
271
272
|
}
|
|
272
273
|
```
|
|
@@ -1606,7 +1607,7 @@ interface SchematicComponent {
|
|
|
1606
1607
|
type: "schematic_component"
|
|
1607
1608
|
size: Size
|
|
1608
1609
|
center: Point
|
|
1609
|
-
source_component_id
|
|
1610
|
+
source_component_id?: string
|
|
1610
1611
|
schematic_component_id: string
|
|
1611
1612
|
pin_spacing?: number
|
|
1612
1613
|
pin_styles?: Record<
|
|
@@ -1625,6 +1626,8 @@ interface SchematicComponent {
|
|
|
1625
1626
|
symbol_display_value?: string
|
|
1626
1627
|
subcircuit_id?: string
|
|
1627
1628
|
schematic_group_id?: string
|
|
1629
|
+
is_schematic_group?: boolean
|
|
1630
|
+
source_group_id?: string
|
|
1628
1631
|
}
|
|
1629
1632
|
|
|
1630
1633
|
interface SchematicPortArrangementBySize {
|
|
@@ -1718,6 +1721,7 @@ interface SchematicGroup {
|
|
|
1718
1721
|
height: Length
|
|
1719
1722
|
center: Point
|
|
1720
1723
|
schematic_component_ids: string[]
|
|
1724
|
+
show_as_schematic_box?: boolean
|
|
1721
1725
|
name?: string
|
|
1722
1726
|
description?: string
|
|
1723
1727
|
}
|