@tscircuit/props 0.0.308 → 0.0.309

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.
@@ -45,6 +45,13 @@ export interface CommonLayoutProps {
45
45
  pcbMarginX?: string | number
46
46
  pcbMarginY?: string | number
47
47
 
48
+ schMarginTop?: string | number
49
+ schMarginRight?: string | number
50
+ schMarginBottom?: string | number
51
+ schMarginLeft?: string | number
52
+ schMarginX?: string | number
53
+ schMarginY?: string | number
54
+
48
55
  schX?: string | number
49
56
  schY?: string | number
50
57
  schRotation?: string | number
@@ -97,6 +104,12 @@ export const commonLayoutProps = z.object({
97
104
  pcbMarginLeft: distance.optional(),
98
105
  pcbMarginX: distance.optional(),
99
106
  pcbMarginY: distance.optional(),
107
+ schMarginTop: distance.optional(),
108
+ schMarginRight: distance.optional(),
109
+ schMarginBottom: distance.optional(),
110
+ schMarginLeft: distance.optional(),
111
+ schMarginX: distance.optional(),
112
+ schMarginY: distance.optional(),
100
113
  schX: distance.optional(),
101
114
  schY: distance.optional(),
102
115
  schRotation: rotation.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.308",
3
+ "version": "0.0.309",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",