jscad-electronics 0.0.114 → 0.0.116
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 +31 -1
- package/dist/index.js +706 -507
- package/dist/index.js.map +1 -1
- package/dist/vanilla.d.ts +2 -1
- package/dist/vanilla.js +373 -98
- package/dist/vanilla.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -247,6 +247,21 @@ interface AxialCapacitorProps {
|
|
|
247
247
|
}
|
|
248
248
|
declare const AxialCapacitor: ({ pitch }: AxialCapacitorProps) => react_jsx_runtime.JSX.Element;
|
|
249
249
|
|
|
250
|
+
declare const PinHeader: ({ x, y, pinThickness, shortSidePinLength, longSidePinLength, bodyHeight, bodyLength, bodyWidth, flipZ, faceup, smd, rightangle, }: {
|
|
251
|
+
x: number;
|
|
252
|
+
y: number;
|
|
253
|
+
pinThickness: number;
|
|
254
|
+
shortSidePinLength: number;
|
|
255
|
+
longSidePinLength: number;
|
|
256
|
+
bodyHeight: number;
|
|
257
|
+
bodyLength?: number;
|
|
258
|
+
bodyWidth?: number;
|
|
259
|
+
flipZ: (z: number) => number;
|
|
260
|
+
faceup?: boolean;
|
|
261
|
+
smd?: boolean;
|
|
262
|
+
rightangle?: boolean;
|
|
263
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
264
|
+
|
|
250
265
|
declare const SOD523: () => react_jsx_runtime.JSX.Element;
|
|
251
266
|
|
|
252
267
|
declare const SOD882: () => react_jsx_runtime.JSX.Element;
|
|
@@ -352,4 +367,19 @@ declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
|
352
367
|
|
|
353
368
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
354
369
|
|
|
355
|
-
|
|
370
|
+
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, }: {
|
|
371
|
+
numPins?: number;
|
|
372
|
+
rows?: number;
|
|
373
|
+
p?: number;
|
|
374
|
+
id?: number;
|
|
375
|
+
od?: number;
|
|
376
|
+
boardThickness?: number;
|
|
377
|
+
width?: number | string;
|
|
378
|
+
height?: number | string;
|
|
379
|
+
pinRowSide?: "left" | "right" | "top" | "bottom";
|
|
380
|
+
holes?: string[];
|
|
381
|
+
holeInset?: number;
|
|
382
|
+
pinRowHoleEdgeToEdgeDist?: number;
|
|
383
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
384
|
+
|
|
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 };
|