jscad-electronics 0.0.81 → 0.0.83
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 +25 -1
- package/dist/index.js +437 -276
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +154 -1
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -139,6 +139,14 @@ declare const Tssop: ({ pinCount, leadLength, leadWidth, pitch, bodyWidth, }: {
|
|
|
139
139
|
bodyWidth: number;
|
|
140
140
|
}) => react_jsx_runtime.JSX.Element;
|
|
141
141
|
|
|
142
|
+
declare const MSOP: ({ pinCount, padContactLength, leadWidth, pitch, bodyWidth, }: {
|
|
143
|
+
pinCount: number;
|
|
144
|
+
pitch?: number;
|
|
145
|
+
leadWidth?: number;
|
|
146
|
+
padContactLength?: number;
|
|
147
|
+
bodyWidth?: number;
|
|
148
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
142
150
|
declare const VSSOP: ({ pinCount, pitch, leadWidth, leadLength, bodyWidth, bodyLength, }: {
|
|
143
151
|
pinCount: 8 | 10;
|
|
144
152
|
pitch?: number;
|
|
@@ -227,6 +235,22 @@ declare const SOT223: () => react_jsx_runtime.JSX.Element;
|
|
|
227
235
|
|
|
228
236
|
declare const SOT323: () => react_jsx_runtime.JSX.Element;
|
|
229
237
|
|
|
238
|
+
interface MINIMELFProps {
|
|
239
|
+
bodyLength?: number;
|
|
240
|
+
bodyDiameter?: number;
|
|
241
|
+
color?: string;
|
|
242
|
+
contactColor?: string;
|
|
243
|
+
}
|
|
244
|
+
declare const MINIMELF: ({ bodyLength, bodyDiameter, color, contactColor, }: MINIMELFProps) => react_jsx_runtime.JSX.Element;
|
|
245
|
+
|
|
246
|
+
interface MELFProps {
|
|
247
|
+
bodyLength?: number;
|
|
248
|
+
bodyDiameter?: number;
|
|
249
|
+
color?: string;
|
|
250
|
+
contactColor?: string;
|
|
251
|
+
}
|
|
252
|
+
declare const MELF: ({ bodyLength, bodyDiameter, color, contactColor, }: MELFProps) => react_jsx_runtime.JSX.Element;
|
|
253
|
+
|
|
230
254
|
interface HC49Props {
|
|
231
255
|
/** overall body length (mm) */
|
|
232
256
|
bodyLength?: number;
|
|
@@ -256,4 +280,4 @@ declare const MS012: ({ pinCount, padContactLength, leadWidth, pitch, }: {
|
|
|
256
280
|
padContactLength?: number;
|
|
257
281
|
}) => react_jsx_runtime.JSX.Element;
|
|
258
282
|
|
|
259
|
-
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, MS012, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD523, SOD923, SOT223, SOT233P, SOT323, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TQFP, Tssop, VSSOP };
|
|
283
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MSOP, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD523, SOD923, SOT223, SOT233P, SOT323, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TQFP, Tssop, VSSOP };
|