jscad-electronics 0.0.104 → 0.0.106
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 +7 -2
- package/dist/index.js +330 -182
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +149 -7
- package/dist/vanilla.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -216,10 +216,11 @@ declare const SOD123: ({ fullWidth, fullLength }: {
|
|
|
216
216
|
fullLength?: number | undefined;
|
|
217
217
|
}) => react_jsx_runtime.JSX.Element;
|
|
218
218
|
|
|
219
|
-
declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, }: {
|
|
219
|
+
declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, invert, }: {
|
|
220
220
|
numberOfPins: number;
|
|
221
221
|
pitch?: number;
|
|
222
222
|
longSidePinLength?: number;
|
|
223
|
+
invert?: boolean;
|
|
223
224
|
}) => react_jsx_runtime.JSX.Element;
|
|
224
225
|
|
|
225
226
|
declare const SOD523: () => react_jsx_runtime.JSX.Element;
|
|
@@ -258,6 +259,10 @@ declare const SOT323: () => react_jsx_runtime.JSX.Element;
|
|
|
258
259
|
|
|
259
260
|
declare const SOT363: () => react_jsx_runtime.JSX.Element;
|
|
260
261
|
|
|
262
|
+
declare const SOT886: () => react_jsx_runtime.JSX.Element;
|
|
263
|
+
|
|
264
|
+
declare const SOT963: () => react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
261
266
|
interface MINIMELFProps {
|
|
262
267
|
bodyLength?: number;
|
|
263
268
|
bodyDiameter?: number;
|
|
@@ -323,4 +328,4 @@ declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
|
323
328
|
|
|
324
329
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
325
330
|
|
|
326
|
-
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, SOD323F, SOD323FL, SOD523, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, TO220, TO92, TQFP, Tssop, VSSOP };
|
|
331
|
+
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, SOD323F, SOD323FL, SOD523, SOD882, SOD923, SOT223, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SOT886, SOT963, SmdChipLead, type SmdChipLeadProps, TO220, TO92, TQFP, Tssop, VSSOP };
|