@tscircuit/props 0.0.388 → 0.0.389

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.
@@ -10,6 +10,7 @@ export interface ViaProps extends CommonLayoutProps {
10
10
  holeDiameter: number | string
11
11
  outerDiameter: number | string
12
12
  connectsTo?: string | string[]
13
+ netIsAssignable?: boolean
13
14
  }
14
15
 
15
16
  export const viaProps = commonLayoutProps.extend({
@@ -19,6 +20,7 @@ export const viaProps = commonLayoutProps.extend({
19
20
  holeDiameter: distance,
20
21
  outerDiameter: distance,
21
22
  connectsTo: z.string().or(z.array(z.string())).optional(),
23
+ netIsAssignable: z.boolean().optional(),
22
24
  })
23
25
  export type InferredViaProps = z.input<typeof viaProps>
24
26
  expectTypesMatch<ViaProps, InferredViaProps>(true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.388",
3
+ "version": "0.0.389",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",