@tscircuit/props 0.0.424 → 0.0.425

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.
@@ -16,8 +16,6 @@ export interface PanelProps
16
16
  panelizationMethod?: "tab-routing" | "none"
17
17
  /** Gap between boards in a panel */
18
18
  boardGap?: Distance
19
- boardAreaWidth?: Distance
20
- boardAreaHeight?: Distance
21
19
  layoutMode?: "grid" | "pack" | "none"
22
20
  row?: number
23
21
  col?: number
@@ -42,8 +40,6 @@ export const panelProps = baseGroupProps
42
40
  noSolderMask: z.boolean().optional(),
43
41
  panelizationMethod: z.enum(["tab-routing", "none"]).optional(),
44
42
  boardGap: distance.optional(),
45
- boardAreaWidth: distance.optional(),
46
- boardAreaHeight: distance.optional(),
47
43
  layoutMode: z.enum(["grid", "pack", "none"]).optional(),
48
44
  row: z.number().optional(),
49
45
  col: z.number().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.424",
3
+ "version": "0.0.425",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",