jscad-electronics 0.0.119 → 0.0.121
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 +22 -2
- package/dist/index.js +196 -115
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +89 -15
- package/dist/vanilla.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -390,7 +390,7 @@ declare const TO220: () => react_jsx_runtime.JSX.Element;
|
|
|
390
390
|
|
|
391
391
|
declare const TO92: () => react_jsx_runtime.JSX.Element;
|
|
392
392
|
|
|
393
|
-
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, female, nopin, }: {
|
|
393
|
+
declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, width, height, pinRowSide, holes, holeInset, pinRowHoleEdgeToEdgeDist, female, nopin, screen, }: {
|
|
394
394
|
numPins?: number;
|
|
395
395
|
rows?: number;
|
|
396
396
|
p?: number;
|
|
@@ -405,6 +405,26 @@ declare const MountedPcbModule: ({ numPins, rows, p, id, od, boardThickness, wid
|
|
|
405
405
|
pinRowHoleEdgeToEdgeDist?: number;
|
|
406
406
|
female?: boolean;
|
|
407
407
|
nopin?: boolean;
|
|
408
|
+
screen?: boolean;
|
|
408
409
|
}) => react_jsx_runtime.JSX.Element;
|
|
409
410
|
|
|
410
|
-
|
|
411
|
+
interface ScreenProps {
|
|
412
|
+
width?: number;
|
|
413
|
+
height?: number;
|
|
414
|
+
thickness?: number;
|
|
415
|
+
bezelInset?: number;
|
|
416
|
+
bezelDepth?: number;
|
|
417
|
+
screenColor?: string;
|
|
418
|
+
bezelColor?: string;
|
|
419
|
+
screenWidth?: number;
|
|
420
|
+
screenHeight?: number;
|
|
421
|
+
offset?: {
|
|
422
|
+
x?: number;
|
|
423
|
+
y?: number;
|
|
424
|
+
z?: number;
|
|
425
|
+
};
|
|
426
|
+
}
|
|
427
|
+
declare const Screen: ({ width, height, thickness, bezelInset, bezelDepth, screenColor, bezelColor, screenWidth, screenHeight, offset, }: ScreenProps) => react_jsx_runtime.JSX.Element;
|
|
428
|
+
declare const Display: ({ width, height, thickness, bezelInset, bezelDepth, screenColor, bezelColor, screenWidth, screenHeight, offset, }: ScreenProps) => react_jsx_runtime.JSX.Element;
|
|
429
|
+
|
|
430
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, DFN, Display, 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, Screen, type ScreenProps, SmdChipLead, type SmdChipLeadProps, StampBoard, TO220, TO92, TQFP, Tssop, VSSOP };
|