Skip to content

Commit

Permalink
v0.0.115
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 12, 2024
1 parent 3bc58b1 commit eb1e704
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,26 @@ export interface PcbFabricationNoteText {
}
```

### PcbGroup

- Defines a group of components on the PCB

```typescript
/**
* Defines a group of components on the PCB
*/
export interface PcbGroup {
type: "pcb_group"
pcb_group_id: string
width: Length
height: Length
center: Point
pcb_component_ids: string[]
name?: string
description?: string
}
```

### PcbManualEditConflictError

- Error emitted when a component has both manual placement (via manualEdits) and explicit pcbX/pcbY coordinates
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "circuit-json",
"version": "0.0.114",
"version": "0.0.115",
"description": "Definitions for the tscircuit intermediary JSON format",
"main": "dist/index.mjs",
"files": [
Expand Down

0 comments on commit eb1e704

Please sign in to comment.