@tscircuit/props 0.0.640 → 0.0.641

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
@@ -29,6 +29,7 @@ resistorProps.parse({ resistance: "10k" } as ResistorPropsInput);
29
29
  | `<analogsimulation />` | [`AnalogSimulationProps`](#analogsimulationprops-analogsimulation) |
30
30
  | `<analog.sweepparameter />` | [`AnalogResistanceSweepParameterProps`](#analogresistancesweepparameterprops-analogsweepparameter) |
31
31
  | `<analog.transientsimulation />` | [`AnalogTransientSimulationProps`](#analogtransientsimulationprops-analogtransientsimulation) |
32
+ | `<antenna />` | [`AntennaProps`](#antennaprops-antenna) |
32
33
  | `<autoroutingphase />` | [`AutoroutingPhaseProps`](#autoroutingphaseprops-autoroutingphase) |
33
34
  | `<battery />` | [`BatteryProps`](#batteryprops-battery) |
34
35
  | `<board />` | [`BoardProps`](#boardprops-board) |
@@ -325,6 +326,20 @@ export interface AnalogTransientSimulationProps extends AnalogAnalysisSimulation
325
326
 
326
327
  [Source](https://github.com/tscircuit/props/blob/main/lib/components/analogtransientsimulation.ts)
327
328
 
329
+ ### AntennaProps `<antenna />`
330
+
331
+ ```ts
332
+ export interface AntennaProps extends CommonComponentProps {
333
+ /**
334
+ * Explicit antenna path. Entries use the same selector, point, and via
335
+ * syntax as trace pcbPath entries.
336
+ */
337
+ pcbPath?: PcbPath;
338
+ }
339
+ ```
340
+
341
+ [Source](https://github.com/tscircuit/props/blob/main/lib/components/antenna.ts)
342
+
328
343
  ### AutoroutingPhaseProps `<autoroutingphase />`
329
344
 
330
345
  ```ts