@tscircuit/props 0.0.622 → 0.0.623

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.
@@ -14,8 +14,13 @@ export interface PanelProps
14
14
  * If true, prevent a solder mask from being applied to this panel.
15
15
  */
16
16
  noSolderMask?: boolean
17
- /** Method for panelization */
18
- panelizationMethod?: "tab-routing" | "none"
17
+ /**
18
+ * Method used to separate boards in the panel.
19
+ *
20
+ * `outline_routing` creates continuous routed cutouts around each board
21
+ * outline without tabs.
22
+ */
23
+ panelizationMethod?: "tab-routing" | "outline_routing" | "none"
19
24
  /** Gap between boards in a panel */
20
25
  boardGap?: Distance
21
26
  layoutMode?: "grid" | "pack" | "none"
@@ -47,7 +52,9 @@ export const panelProps = baseGroupProps
47
52
  children: z.any().optional(),
48
53
  anchorAlignment: ninePointAnchor.optional(),
49
54
  noSolderMask: z.boolean().optional(),
50
- panelizationMethod: z.enum(["tab-routing", "none"]).optional(),
55
+ panelizationMethod: z
56
+ .enum(["tab-routing", "outline_routing", "none"])
57
+ .optional(),
51
58
  boardGap: distance.optional(),
52
59
  layoutMode: z.enum(["grid", "pack", "none"]).optional(),
53
60
  row: z.number().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.622",
3
+ "version": "0.0.623",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",