@tscircuit/props 0.0.588 → 0.0.589

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.
@@ -18,6 +18,7 @@ export const schematicBoxProps = z
18
18
 
19
19
  schX: distance.optional(),
20
20
  schY: distance.optional(),
21
+ schSheetName: z.string().optional(),
21
22
  width: distance.optional(),
22
23
  height: distance.optional(),
23
24
  overlay: z.array(z.string()).optional(),
@@ -65,6 +66,7 @@ export interface SchematicBoxProps {
65
66
  schPinArrangement?: SchematicPinArrangement
66
67
  schX?: Distance
67
68
  schY?: Distance
69
+ schSheetName?: string
68
70
  width?: Distance
69
71
  height?: Distance
70
72
  overlay?: string[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.588",
3
+ "version": "0.0.589",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",