@tscircuit/props 0.0.358 → 0.0.359
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/README.md +4 -0
- package/dist/index.d.ts +567 -563
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -623,6 +623,10 @@ export interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
623
623
|
pcbPaddingRight?: Distance;
|
|
624
624
|
pcbPaddingTop?: Distance;
|
|
625
625
|
pcbPaddingBottom?: Distance;
|
|
626
|
+
/**
|
|
627
|
+
* Anchor to use when interpreting pcbX/pcbY relative to pcbPosition
|
|
628
|
+
*/
|
|
629
|
+
pcbPositionAnchor?: AutocompleteString<z.infer<typeof ninePointAnchor>>;
|
|
626
630
|
|
|
627
631
|
/** @deprecated Use `pcbGrid` */
|
|
628
632
|
grid?: boolean;
|