jscad-electronics 0.0.80 → 0.0.82
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 +16 -1
- package/dist/index.js +416 -267
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +146 -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;
|
|
@@ -249,4 +257,11 @@ interface HC49Props {
|
|
|
249
257
|
*/
|
|
250
258
|
declare const HC49: ({ bodyLength, bodyWidth, bodyHeight, leadSpacing, leadDiameter, leadLength, color, leadColor, }: HC49Props) => react_jsx_runtime.JSX.Element;
|
|
251
259
|
|
|
252
|
-
|
|
260
|
+
declare const MS012: ({ pinCount, padContactLength, leadWidth, pitch, }: {
|
|
261
|
+
pinCount: number;
|
|
262
|
+
pitch?: number;
|
|
263
|
+
leadWidth?: number;
|
|
264
|
+
padContactLength?: number;
|
|
265
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
266
|
+
|
|
267
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, 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 };
|