jscad-electronics 0.0.145 → 0.0.147
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 +18 -8
- package/dist/index.js +803 -775
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +158 -0
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -125,9 +125,10 @@ declare const StampBoard: ({ bodyWidth, boardThickness, leadWidth, leadLength, l
|
|
|
125
125
|
innerHoleDiameter?: number;
|
|
126
126
|
}) => react_jsx_runtime.JSX.Element;
|
|
127
127
|
|
|
128
|
-
declare const SOT233P: ({ fullWidth, fullLength }
|
|
129
|
-
fullWidth?: number
|
|
130
|
-
fullLength?: number
|
|
128
|
+
declare const SOT233P: ({ fullWidth, fullLength, color, }?: {
|
|
129
|
+
fullWidth?: number;
|
|
130
|
+
fullLength?: number;
|
|
131
|
+
color?: string;
|
|
131
132
|
}) => react_jsx_runtime.JSX.Element;
|
|
132
133
|
|
|
133
134
|
declare const SOT23W: ({ fullWidth, fullLength }: {
|
|
@@ -247,10 +248,19 @@ declare const LQFP: ({ pinCount, pitch, leadWidth, padContactLength, bodyWidth,
|
|
|
247
248
|
bodyWidth?: number;
|
|
248
249
|
}) => react_jsx_runtime.JSX.Element;
|
|
249
250
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
251
|
+
interface SOD123Props {
|
|
252
|
+
/** Overall package length, including the leads, in millimeters. */
|
|
253
|
+
fullWidth?: number;
|
|
254
|
+
/** Molded package width in millimeters. */
|
|
255
|
+
fullLength?: number;
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* SOD-123 diode package.
|
|
259
|
+
*
|
|
260
|
+
* The defaults are the nominal dimensions from the Vishay 1N4148W package
|
|
261
|
+
* drawing: https://www.vishay.com/docs/86356/1n4148w.pdf
|
|
262
|
+
*/
|
|
263
|
+
declare const SOD123: ({ fullWidth, fullLength, }?: SOD123Props) => react_jsx_runtime.JSX.Element;
|
|
254
264
|
|
|
255
265
|
declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, invert, faceup, rows, smd, rightangle, }: {
|
|
256
266
|
numberOfPins: number;
|
|
@@ -530,4 +540,4 @@ interface RJ45Props {
|
|
|
530
540
|
*/
|
|
531
541
|
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
542
|
|
|
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 };
|
|
543
|
+
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 };
|