@tscircuit/props 0.0.367 → 0.0.369

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 CHANGED
@@ -55,6 +55,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
55
55
  | `<net />` | [`NetProps`](#netprops-net) |
56
56
  | `<netalias />` | [`NetAliasProps`](#netaliasprops-netalias) |
57
57
  | `<netlabel />` | [`NetLabelProps`](#netlabelprops-netlabel) |
58
+ | `<panel />` | [`PanelProps`](#panelprops-panel) |
58
59
  | `<pcbkeepout />` | [`PcbKeepoutProps`](#pcbkeepoutprops-pcbkeepout) |
59
60
  | `<pcbnotedimension />` | [`PcbNoteDimensionProps`](#pcbnotedimensionprops-pcbnotedimension) |
60
61
  | `<pcbnoteline />` | [`PcbNoteLineProps`](#pcbnotelineprops-pcbnoteline) |
@@ -861,6 +862,22 @@ export interface NetLabelProps {
861
862
 
862
863
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/netlabel.ts)
863
864
 
865
+ ### PanelProps `<panel />`
866
+
867
+ ```ts
868
+ export interface PanelProps extends BaseGroupProps {
869
+ width: Distance;
870
+ height: Distance;
871
+ children?: BaseGroupProps["children"];
872
+ /**
873
+ * If true, prevent a solder mask from being applied to this panel.
874
+ */
875
+ noSolderMask?: boolean;
876
+ }
877
+ ```
878
+
879
+ [Source](https://github.com/tscircuit/props/blob/main/lib/components/panel.ts)
880
+
864
881
  ### PcbKeepoutProps `<pcbkeepout />`
865
882
 
866
883
  ```ts
@@ -1293,6 +1310,7 @@ export interface RectSmtPadProps extends Omit<PcbLayoutProps, "pcbRotation"> {
1293
1310
  width: Distance;
1294
1311
  height: Distance;
1295
1312
  rectBorderRadius?: Distance;
1313
+ cornerRadius?: Distance;
1296
1314
  portHints?: PortHints;
1297
1315
  coveredWithSolderMask?: boolean;
1298
1316
  }