jscad-electronics 0.0.110 → 0.0.111
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 +3 -1
- package/dist/index.js +152 -121
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +58 -27
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -216,13 +216,15 @@ 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, invert, faceup, rows, }: {
|
|
219
|
+
declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, invert, faceup, rows, smd, rightangle, }: {
|
|
220
220
|
numberOfPins: number;
|
|
221
221
|
pitch?: number;
|
|
222
222
|
longSidePinLength?: number;
|
|
223
223
|
invert?: boolean;
|
|
224
224
|
faceup?: boolean;
|
|
225
225
|
rows?: number;
|
|
226
|
+
smd?: boolean;
|
|
227
|
+
rightangle?: boolean;
|
|
226
228
|
}) => react_jsx_runtime.JSX.Element;
|
|
227
229
|
|
|
228
230
|
declare const SOD523: () => react_jsx_runtime.JSX.Element;
|