jscad-electronics 0.0.146 → 0.0.148
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 +4 -3
- package/dist/index.js +627 -617
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +86 -2
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -125,9 +125,10 @@ declare const StampBoard: ({ bodyWidth, boardThickness, leadWidth, leadLength, l
|
|
|
125
125
|
innerHoleDiameter?: number;
|
|
126
126
|
}) => react_jsx_runtime.JSX.Element;
|
|
127
127
|
|
|
128
|
-
declare const SOT233P: ({ fullWidth, fullLength }
|
|
129
|
-
fullWidth?: number
|
|
130
|
-
fullLength?: number
|
|
128
|
+
declare const SOT233P: ({ fullWidth, fullLength, color, }?: {
|
|
129
|
+
fullWidth?: number;
|
|
130
|
+
fullLength?: number;
|
|
131
|
+
color?: string;
|
|
131
132
|
}) => react_jsx_runtime.JSX.Element;
|
|
132
133
|
|
|
133
134
|
declare const SOT23W: ({ fullWidth, fullLength }: {
|