jscad-electronics 0.0.116 → 0.0.118
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 -2
- package/dist/index.js +487 -467
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +91 -74
- package/dist/vanilla.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -262,6 +262,28 @@ 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, pitch, legsLength, innerDiameter, bodyHeight, bodyLength, bodyWidth, flipZ, }: {
|
|
266
|
+
x: number;
|
|
267
|
+
y: number;
|
|
268
|
+
pitch?: number;
|
|
269
|
+
legsLength?: number;
|
|
270
|
+
innerDiameter?: number;
|
|
271
|
+
bodyHeight?: number;
|
|
272
|
+
bodyLength?: number;
|
|
273
|
+
bodyWidth?: number;
|
|
274
|
+
flipZ: (z: number) => number;
|
|
275
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
276
|
+
|
|
277
|
+
declare const FemaleHeaderRow: ({ numberOfPins, pitch, legsLength, innerDiameter, rows, invert, }: {
|
|
278
|
+
numberOfPins: number;
|
|
279
|
+
pitch?: number;
|
|
280
|
+
legsLength?: number;
|
|
281
|
+
outerDiameter?: number;
|
|
282
|
+
innerDiameter?: number;
|
|
283
|
+
rows?: number;
|
|
284
|
+
invert?: boolean;
|
|
285
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
286
|
+
|
|
265
287
|
declare const SOD523: () => react_jsx_runtime.JSX.Element;
|
|
266
288
|
|
|
267
289
|
declare const SOD882: () => react_jsx_runtime.JSX.Element;
|
|
@@ -367,7 +389,7 @@ declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
|
367
389
|
|
|
368
390
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
369
391
|
|
|
370
|
-
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, }: {
|
|
392
|
+
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, nopin, }: {
|
|
371
393
|
numPins?: number;
|
|
372
394
|
rows?: number;
|
|
373
395
|
p?: number;
|
|
@@ -380,6 +402,7 @@ declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, wid
|
|
|
380
402
|
holes?: string[];
|
|
381
403
|
holeInset?: number;
|
|
382
404
|
pinRowHoleEdgeToEdgeDist?: number;
|
|
405
|
+
nopin?: boolean;
|
|
383
406
|
}) => react_jsx_runtime.JSX.Element;
|
|
384
407
|
|
|
385
|
-
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 };
|
|
408
|
+
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 };
|