jscad-electronics 0.0.97 → 0.0.99
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 +10 -1
- package/dist/index.js +277 -122
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +150 -0
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -240,6 +240,8 @@ declare const SOD123W: () => react_jsx_runtime.JSX.Element;
|
|
|
240
240
|
|
|
241
241
|
declare const SOD128: () => react_jsx_runtime.JSX.Element;
|
|
242
242
|
|
|
243
|
+
declare const SOD323: () => react_jsx_runtime.JSX.Element;
|
|
244
|
+
|
|
243
245
|
declare const SOD923: () => react_jsx_runtime.JSX.Element;
|
|
244
246
|
|
|
245
247
|
declare const SOT223: () => react_jsx_runtime.JSX.Element;
|
|
@@ -304,8 +306,15 @@ declare const MS012: ({ pinCount, padContactLength, leadWidth, pitch, }: {
|
|
|
304
306
|
padContactLength?: number;
|
|
305
307
|
}) => react_jsx_runtime.JSX.Element;
|
|
306
308
|
|
|
309
|
+
declare const MS013: ({ pinCount, padContactLength, leadWidth, pitch, }: {
|
|
310
|
+
pinCount?: number;
|
|
311
|
+
pitch?: number;
|
|
312
|
+
leadWidth?: number;
|
|
313
|
+
padContactLength?: number;
|
|
314
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
315
|
+
|
|
307
316
|
declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
308
317
|
|
|
309
318
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
310
319
|
|
|
311
|
-
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, MicroMELF, type MicroMELFProps, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD123W, SOD128, SOD523, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TO220, TO92, TQFP, Tssop, VSSOP };
|
|
320
|
+
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, MS013, MSOP, MicroMELF, type MicroMELFProps, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, SOD123W, SOD128, SOD323, SOD523, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TO220, TO92, TQFP, Tssop, VSSOP };
|