@tscircuit/props 0.0.408 → 0.0.409

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.
@@ -11,6 +11,13 @@ export interface PanelProps extends BaseGroupProps {
11
11
  * If true, prevent a solder mask from being applied to this panel.
12
12
  */
13
13
  noSolderMask?: boolean
14
+ /** Method for panelization */
15
+ panelizationMethod?: "tab-routing" | "none"
16
+ /** Gap between boards in a panel */
17
+ boardGap?: Distance
18
+ tabWidth?: Distance
19
+ tabLength?: Distance
20
+ mouseBites?: boolean
14
21
  }
15
22
 
16
23
  export const panelProps = baseGroupProps
@@ -24,6 +31,11 @@ export const panelProps = baseGroupProps
24
31
  height: distance,
25
32
  children: z.any().optional(),
26
33
  noSolderMask: z.boolean().optional(),
34
+ panelizationMethod: z.enum(["tab-routing", "none"]).optional(),
35
+ boardGap: distance.optional(),
36
+ tabWidth: distance.optional(),
37
+ tabLength: distance.optional(),
38
+ mouseBites: z.boolean().optional(),
27
39
  })
28
40
 
29
41
  type InferredPanelProps = z.input<typeof panelProps>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.408",
3
+ "version": "0.0.409",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",