jscad-electronics 0.0.139 → 0.0.141

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 CHANGED
@@ -153,6 +153,18 @@ interface SmdChipLeadProps {
153
153
  */
154
154
  declare const SmdChipLead: (props: SmdChipLeadProps) => react_jsx_runtime.JSX.Element;
155
155
 
156
+ interface SmdPinHeaderProps {
157
+ numberOfPins: number;
158
+ pitch?: number;
159
+ pinThickness?: number;
160
+ bodyWidth?: number;
161
+ bodyHeight?: number;
162
+ standoffHeight?: number;
163
+ matingPinLength?: number;
164
+ tailSpan?: number;
165
+ }
166
+ declare const SmdPinHeader: ({ numberOfPins, pitch, pinThickness, bodyWidth, bodyHeight, standoffHeight, matingPinLength, tailSpan, }: SmdPinHeaderProps) => react_jsx_runtime.JSX.Element;
167
+
156
168
  declare const Tssop: ({ pinCount, leadLength, leadWidth, pitch, bodyWidth, }: {
157
169
  pinCount: number;
158
170
  pitch: number;
@@ -442,4 +454,22 @@ interface JSTZH1_5mmProps {
442
454
  }
443
455
  declare const JSTZH1_5mm: ({ numPins, showPins, showFootprint, bodyColor, pinColor, }: JSTZH1_5mmProps) => react_jsx_runtime.JSX.Element;
444
456
 
445
- export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, DFN, Display, ExtrudedPads, FemaleHeader, FemaleHeaderRow, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, JSTZH1_5mm, LQFP, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD123W, SOD128, SOD323, SOD323F, SOD323FL, SOD523, SOD723, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SOT886, SOT963, Screen, type ScreenProps, SmdChipLead, type SmdChipLeadProps, StampBoard, TO220, TO92, TQFP, Tssop, VSSOP };
457
+ interface FPCProps {
458
+ pinCount?: number;
459
+ pitch?: number;
460
+ padWidth?: number;
461
+ padLength?: number;
462
+ staggered?: boolean;
463
+ reverse?: boolean;
464
+ rowPitch?: number;
465
+ topPadLength?: number;
466
+ bottomPadLength?: number;
467
+ mountPadPitchX?: number;
468
+ mountPadOffsetY?: number;
469
+ mountTop?: boolean;
470
+ mountPadWidth?: number;
471
+ mountPadLength?: number;
472
+ }
473
+ declare const FPC: ({ pinCount, pitch, padWidth, padLength, staggered, reverse, rowPitch, topPadLength, bottomPadLength, mountPadPitchX, mountPadOffsetY, mountTop, mountPadWidth, mountPadLength, }: FPCProps) => react_jsx_runtime.JSX.Element;
474
+
475
+ export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, DFN, Display, ExtrudedPads, FPC, type FPCProps, FemaleHeader, FemaleHeaderRow, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, JSTZH1_5mm, LQFP, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD123W, SOD128, SOD323, SOD323F, SOD323FL, SOD523, SOD723, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SOT886, SOT963, Screen, type ScreenProps, SmdChipLead, type SmdChipLeadProps, SmdPinHeader, type SmdPinHeaderProps, StampBoard, TO220, TO92, TQFP, Tssop, VSSOP };