@tscircuit/props 0.0.262 → 0.0.264
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 +0 -5
- package/dist/index.d.ts +576 -26
- package/dist/index.js +16 -11
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +0 -12
- package/lib/components/group.ts +36 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,11 +151,6 @@ export interface BatteryProps<PinLabel extends string = string>
|
|
|
151
151
|
|
|
152
152
|
```ts
|
|
153
153
|
export interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
154
|
-
width?: number | string;
|
|
155
|
-
height?: number | string;
|
|
156
|
-
outline?: Point[];
|
|
157
|
-
outlineOffsetX?: number | string;
|
|
158
|
-
outlineOffsetY?: number | string;
|
|
159
154
|
material?: "fr4" | "fr1";
|
|
160
155
|
}
|
|
161
156
|
```
|