jscad-electronics 0.0.117 → 0.0.119
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 +26 -2
- package/dist/index.js +492 -462
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +96 -69
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -262,6 +262,29 @@ declare const PinHeader: ({ x, y, pinThickness, shortSidePinLength, longSidePinL
|
|
|
262
262
|
rightangle?: boolean;
|
|
263
263
|
}) => react_jsx_runtime.JSX.Element;
|
|
264
264
|
|
|
265
|
+
declare const FemaleHeader: ({ x, y, z, pitch, legsLength, innerDiameter, bodyHeight, bodyLength, bodyWidth, flipZ, }: {
|
|
266
|
+
x: number;
|
|
267
|
+
y: number;
|
|
268
|
+
z?: number;
|
|
269
|
+
pitch?: number;
|
|
270
|
+
legsLength?: number;
|
|
271
|
+
innerDiameter?: number;
|
|
272
|
+
bodyHeight?: number;
|
|
273
|
+
bodyLength?: number;
|
|
274
|
+
bodyWidth?: number;
|
|
275
|
+
flipZ: (z: number) => number;
|
|
276
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
277
|
+
|
|
278
|
+
declare const FemaleHeaderRow: ({ numberOfPins, pitch, legsLength, innerDiameter, rows, invert, }: {
|
|
279
|
+
numberOfPins: number;
|
|
280
|
+
pitch?: number;
|
|
281
|
+
legsLength?: number;
|
|
282
|
+
outerDiameter?: number;
|
|
283
|
+
innerDiameter?: number;
|
|
284
|
+
rows?: number;
|
|
285
|
+
invert?: boolean;
|
|
286
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
287
|
+
|
|
265
288
|
declare const SOD523: () => react_jsx_runtime.JSX.Element;
|
|
266
289
|
|
|
267
290
|
declare const SOD882: () => react_jsx_runtime.JSX.Element;
|
|
@@ -367,7 +390,7 @@ declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
|
367
390
|
|
|
368
391
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
369
392
|
|
|
370
|
-
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, nopin, }: {
|
|
393
|
+
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, female, nopin, }: {
|
|
371
394
|
numPins?: number;
|
|
372
395
|
rows?: number;
|
|
373
396
|
p?: number;
|
|
@@ -380,7 +403,8 @@ declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, wid
|
|
|
380
403
|
holes?: string[];
|
|
381
404
|
holeInset?: number;
|
|
382
405
|
pinRowHoleEdgeToEdgeDist?: number;
|
|
406
|
+
female?: boolean;
|
|
383
407
|
nopin?: boolean;
|
|
384
408
|
}) => react_jsx_runtime.JSX.Element;
|
|
385
409
|
|
|
386
|
-
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, 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, MountedPcbModule, PinHeader, 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, StampBoard, TO220, TO92, TQFP, Tssop, VSSOP };
|
|
410
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, DFN, ExtrudedPads, FemaleHeader, FemaleHeaderRow, FootprintPad, FootprintPlatedHole, Footprinter3d, HC49, type HC49Props, LQFP, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, 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, StampBoard, TO220, TO92, TQFP, Tssop, VSSOP };
|