jscad-electronics 0.0.145 → 0.0.146
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 +14 -5
- package/dist/index.js +575 -554
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +77 -0
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -247,10 +247,19 @@ declare const LQFP: ({ pinCount, pitch, leadWidth, padContactLength, bodyWidth,
|
|
|
247
247
|
bodyWidth?: number;
|
|
248
248
|
}) => react_jsx_runtime.JSX.Element;
|
|
249
249
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
250
|
+
interface SOD123Props {
|
|
251
|
+
/** Overall package length, including the leads, in millimeters. */
|
|
252
|
+
fullWidth?: number;
|
|
253
|
+
/** Molded package width in millimeters. */
|
|
254
|
+
fullLength?: number;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* SOD-123 diode package.
|
|
258
|
+
*
|
|
259
|
+
* The defaults are the nominal dimensions from the Vishay 1N4148W package
|
|
260
|
+
* drawing: https://www.vishay.com/docs/86356/1n4148w.pdf
|
|
261
|
+
*/
|
|
262
|
+
declare const SOD123: ({ fullWidth, fullLength, }?: SOD123Props) => react_jsx_runtime.JSX.Element;
|
|
254
263
|
|
|
255
264
|
declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, invert, faceup, rows, smd, rightangle, }: {
|
|
256
265
|
numberOfPins: number;
|
|
@@ -530,4 +539,4 @@ interface RJ45Props {
|
|
|
530
539
|
*/
|
|
531
540
|
declare const RJ45: ({ bodyWidth, bodyDepth, bodyHeight, bodyCenterY, ledPins, firstPinLeft, firstPinTop, signalPitch, signalRowPitch, signalHoleDiameter, shieldPinX, shieldPinY, shieldHoleDiameter, locatorHoleX, locatorHoleY, locatorHoleDiameter, ledPinX, ledPinPitch, ledPinY, openingDirection, shellColor, housingColor, contactColor, }: RJ45Props) => react_jsx_runtime.JSX.Element;
|
|
532
541
|
|
|
533
|
-
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, Crystal, type CrystalProps, DFN, Display, ExtrudedPads, FPC, type FPCProps, FemaleHeader, FemaleHeaderRow, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, JSTZH1_5mm, LQFP, Led5050, type Led5050Props, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, PinRow, QFN, QFP, RJ45, type RJ45Props, 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 };
|
|
542
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, Crystal, type CrystalProps, DFN, Display, ExtrudedPads, FPC, type FPCProps, FemaleHeader, FemaleHeaderRow, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, JSTZH1_5mm, LQFP, Led5050, type Led5050Props, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, PinRow, QFN, QFP, RJ45, type RJ45Props, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, type SOD123Props, 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 };
|