@tscircuit/props 0.0.643 → 0.0.645
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 +12 -0
- package/dist/index.d.ts +6545 -6434
- package/dist/index.js +1212 -1153
- package/dist/index.js.map +1 -1
- package/lib/assembly/index.ts +3 -0
- package/lib/assembly/screen.ts +69 -0
- package/lib/components/antenna.ts +39 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -330,6 +330,18 @@ export interface AnalogTransientSimulationProps extends AnalogAnalysisSimulation
|
|
|
330
330
|
|
|
331
331
|
```ts
|
|
332
332
|
export interface AntennaProps extends CommonComponentProps {
|
|
333
|
+
/**
|
|
334
|
+
* Band-qualified PCB-trace topology to generate. The encoded band is enough
|
|
335
|
+
* to select the geometry without frequencyBand. No shape is assumed when
|
|
336
|
+
* omitted. An explicit pcbPath takes precedence when both are provided.
|
|
337
|
+
*/
|
|
338
|
+
antennaShape?: AntennaShape;
|
|
339
|
+
/**
|
|
340
|
+
* Nominal operating band or multiband configuration. This is redundant when
|
|
341
|
+
* antennaShape is present; the band encoded in antennaShape controls generated
|
|
342
|
+
* geometry.
|
|
343
|
+
*/
|
|
344
|
+
frequencyBand?: AntennaFrequencyBand;
|
|
333
345
|
/**
|
|
334
346
|
* Explicit antenna path. Entries use the same selector, point, and via
|
|
335
347
|
* syntax as trace pcbPath entries.
|