@tscircuit/props 0.0.481 → 0.0.482
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.
- package/dist/index.d.ts +317 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -314,6 +314,7 @@ var pcbLayoutProps = z15.object({
|
|
|
314
314
|
"relative_to_board_anchor",
|
|
315
315
|
"relative_to_component_anchor"
|
|
316
316
|
]).optional(),
|
|
317
|
+
shouldBeOnEdgeOfBoard: z15.boolean().optional(),
|
|
317
318
|
layer: layer_ref.optional(),
|
|
318
319
|
pcbMarginTop: distance8.optional(),
|
|
319
320
|
pcbMarginRight: distance8.optional(),
|
|
@@ -344,6 +345,7 @@ var commonLayoutProps = z15.object({
|
|
|
344
345
|
"relative_to_board_anchor",
|
|
345
346
|
"relative_to_component_anchor"
|
|
346
347
|
]).optional(),
|
|
348
|
+
shouldBeOnEdgeOfBoard: z15.boolean().optional(),
|
|
347
349
|
pcbMarginTop: distance8.optional(),
|
|
348
350
|
pcbMarginRight: distance8.optional(),
|
|
349
351
|
pcbMarginBottom: distance8.optional(),
|