jscad-electronics 0.0.65 → 0.0.66
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 +111 -62
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +46 -0
- package/dist/vanilla.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -179,4 +179,6 @@ declare const SMF: () => react_jsx_runtime.JSX.Element;
|
|
|
179
179
|
|
|
180
180
|
declare const SOD123F: () => react_jsx_runtime.JSX.Element;
|
|
181
181
|
|
|
182
|
-
|
|
182
|
+
declare const SOD923: () => react_jsx_runtime.JSX.Element;
|
|
183
|
+
|
|
184
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, PinRow, QFN, QFP, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD523, SOD923, SOT233P, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, Tssop, VSSOP };
|
package/dist/index.js
CHANGED
|
@@ -1989,15 +1989,61 @@ var SOD123F = () => {
|
|
|
1989
1989
|
] });
|
|
1990
1990
|
};
|
|
1991
1991
|
|
|
1992
|
+
// lib/SOD-923.tsx
|
|
1993
|
+
import { Colorize as Colorize16, Cuboid as Cuboid24, Hull as Hull10, Translate as Translate15, Union as Union11 } from "jscad-fiber";
|
|
1994
|
+
import { Fragment as Fragment28, jsx as jsx32, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1995
|
+
var SOD923 = () => {
|
|
1996
|
+
const fullWidth = 0.8;
|
|
1997
|
+
const bodyLength10 = 0.6;
|
|
1998
|
+
const bodyHeight = 0.37;
|
|
1999
|
+
const padWidth = 0.25;
|
|
2000
|
+
const padLength = 0.4;
|
|
2001
|
+
const padThickness = 0.14;
|
|
2002
|
+
const leftPadCenterX = -(fullWidth / 2);
|
|
2003
|
+
const rightPadCenterX = fullWidth / 2;
|
|
2004
|
+
const taperOffset = 0.1;
|
|
2005
|
+
const straightHeight = padThickness;
|
|
2006
|
+
return /* @__PURE__ */ jsxs30(Fragment28, { children: [
|
|
2007
|
+
/* @__PURE__ */ jsx32(
|
|
2008
|
+
Cuboid24,
|
|
2009
|
+
{
|
|
2010
|
+
color: "#ccc",
|
|
2011
|
+
size: [padLength, padWidth, padThickness],
|
|
2012
|
+
center: [leftPadCenterX, 0, padThickness / 2]
|
|
2013
|
+
}
|
|
2014
|
+
),
|
|
2015
|
+
/* @__PURE__ */ jsx32(
|
|
2016
|
+
Cuboid24,
|
|
2017
|
+
{
|
|
2018
|
+
color: "#ccc",
|
|
2019
|
+
size: [padLength, padWidth, padThickness],
|
|
2020
|
+
center: [rightPadCenterX, 0, padThickness / 2]
|
|
2021
|
+
}
|
|
2022
|
+
),
|
|
2023
|
+
/* @__PURE__ */ jsx32(Colorize16, { color: "#222", children: /* @__PURE__ */ jsxs30(Union11, { children: [
|
|
2024
|
+
/* @__PURE__ */ jsx32(Translate15, { z: straightHeight / 2, children: /* @__PURE__ */ jsx32(Cuboid24, { size: [fullWidth, bodyLength10, straightHeight] }) }),
|
|
2025
|
+
/* @__PURE__ */ jsxs30(Hull10, { children: [
|
|
2026
|
+
/* @__PURE__ */ jsx32(Translate15, { z: straightHeight, children: /* @__PURE__ */ jsx32(Cuboid24, { size: [fullWidth, bodyLength10, 0.01] }) }),
|
|
2027
|
+
/* @__PURE__ */ jsx32(Translate15, { z: bodyHeight, children: /* @__PURE__ */ jsx32(
|
|
2028
|
+
Cuboid24,
|
|
2029
|
+
{
|
|
2030
|
+
size: [fullWidth - taperOffset, bodyLength10 - taperOffset, 0.01]
|
|
2031
|
+
}
|
|
2032
|
+
) })
|
|
2033
|
+
] })
|
|
2034
|
+
] }) })
|
|
2035
|
+
] });
|
|
2036
|
+
};
|
|
2037
|
+
|
|
1992
2038
|
// lib/Footprinter3d.tsx
|
|
1993
|
-
import { jsx as
|
|
2039
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
1994
2040
|
var Footprinter3d = ({ footprint }) => {
|
|
1995
2041
|
const fpJson = fp3.string(footprint).json();
|
|
1996
2042
|
switch (fpJson.fn) {
|
|
1997
2043
|
case "dip":
|
|
1998
|
-
return /* @__PURE__ */
|
|
2044
|
+
return /* @__PURE__ */ jsx33(Dip, { numPins: fpJson.num_pins, pitch: fpJson.p, bodyWidth: fpJson.w });
|
|
1999
2045
|
case "tssop":
|
|
2000
|
-
return /* @__PURE__ */
|
|
2046
|
+
return /* @__PURE__ */ jsx33(
|
|
2001
2047
|
Tssop,
|
|
2002
2048
|
{
|
|
2003
2049
|
pinCount: fpJson.num_pins,
|
|
@@ -2008,7 +2054,7 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2008
2054
|
}
|
|
2009
2055
|
);
|
|
2010
2056
|
case "vssop":
|
|
2011
|
-
return /* @__PURE__ */
|
|
2057
|
+
return /* @__PURE__ */ jsx33(
|
|
2012
2058
|
VSSOP,
|
|
2013
2059
|
{
|
|
2014
2060
|
pinCount: fpJson.num_pins,
|
|
@@ -2020,7 +2066,7 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2020
2066
|
}
|
|
2021
2067
|
);
|
|
2022
2068
|
case "qfp":
|
|
2023
|
-
return /* @__PURE__ */
|
|
2069
|
+
return /* @__PURE__ */ jsx33(
|
|
2024
2070
|
QFP,
|
|
2025
2071
|
{
|
|
2026
2072
|
pinCount: fpJson.num_pins,
|
|
@@ -2032,7 +2078,7 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2032
2078
|
);
|
|
2033
2079
|
case "qfn":
|
|
2034
2080
|
const hasThermalPad = typeof fpJson.thermalpad?.x === "number" && typeof fpJson.thermalpad?.y === "number";
|
|
2035
|
-
return /* @__PURE__ */
|
|
2081
|
+
return /* @__PURE__ */ jsx33(
|
|
2036
2082
|
qfn_default,
|
|
2037
2083
|
{
|
|
2038
2084
|
num_pins: fpJson.num_pins,
|
|
@@ -2049,35 +2095,35 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2049
2095
|
);
|
|
2050
2096
|
case "pinrow":
|
|
2051
2097
|
if (fpJson.male)
|
|
2052
|
-
return /* @__PURE__ */
|
|
2098
|
+
return /* @__PURE__ */ jsx33(PinRow, { numberOfPins: fpJson.num_pins, pitch: fpJson.p });
|
|
2053
2099
|
if (fpJson.female)
|
|
2054
|
-
return /* @__PURE__ */
|
|
2100
|
+
return /* @__PURE__ */ jsx33(FemaleHeader, { numberOfPins: fpJson.num_pins, pitch: fpJson.p });
|
|
2055
2101
|
case "cap": {
|
|
2056
2102
|
switch (fpJson.imperial) {
|
|
2057
2103
|
case "0402":
|
|
2058
|
-
return /* @__PURE__ */
|
|
2104
|
+
return /* @__PURE__ */ jsx33(A0402, { color: "#856c4d" });
|
|
2059
2105
|
case "0603":
|
|
2060
|
-
return /* @__PURE__ */
|
|
2106
|
+
return /* @__PURE__ */ jsx33(A0603, { color: "#856c4d" });
|
|
2061
2107
|
case "0805":
|
|
2062
|
-
return /* @__PURE__ */
|
|
2108
|
+
return /* @__PURE__ */ jsx33(A0805, { color: "#856c4d" });
|
|
2063
2109
|
case "0201":
|
|
2064
|
-
return /* @__PURE__ */
|
|
2110
|
+
return /* @__PURE__ */ jsx33(A0201, { color: "#856c4d" });
|
|
2065
2111
|
case "01005":
|
|
2066
|
-
return /* @__PURE__ */
|
|
2112
|
+
return /* @__PURE__ */ jsx33(A01005, { color: "#856c4d" });
|
|
2067
2113
|
case "1206":
|
|
2068
|
-
return /* @__PURE__ */
|
|
2114
|
+
return /* @__PURE__ */ jsx33(A1206, { color: "#856c4d" });
|
|
2069
2115
|
case "1210":
|
|
2070
|
-
return /* @__PURE__ */
|
|
2116
|
+
return /* @__PURE__ */ jsx33(A1210, { color: "#856c4d" });
|
|
2071
2117
|
case "2010":
|
|
2072
|
-
return /* @__PURE__ */
|
|
2118
|
+
return /* @__PURE__ */ jsx33(A2010, { color: "#856c4d" });
|
|
2073
2119
|
case "2512":
|
|
2074
|
-
return /* @__PURE__ */
|
|
2120
|
+
return /* @__PURE__ */ jsx33(A2512, { color: "#856c4d" });
|
|
2075
2121
|
}
|
|
2076
2122
|
}
|
|
2077
2123
|
case "sot235":
|
|
2078
|
-
return /* @__PURE__ */
|
|
2124
|
+
return /* @__PURE__ */ jsx33(SOT_235_default, {});
|
|
2079
2125
|
case "pushbutton":
|
|
2080
|
-
return /* @__PURE__ */
|
|
2126
|
+
return /* @__PURE__ */ jsx33(
|
|
2081
2127
|
PushButton,
|
|
2082
2128
|
{
|
|
2083
2129
|
width: fpJson.w,
|
|
@@ -2086,7 +2132,7 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2086
2132
|
}
|
|
2087
2133
|
);
|
|
2088
2134
|
case "soic":
|
|
2089
|
-
return /* @__PURE__ */
|
|
2135
|
+
return /* @__PURE__ */ jsx33(
|
|
2090
2136
|
SOIC,
|
|
2091
2137
|
{
|
|
2092
2138
|
pinCount: fpJson.num_pins,
|
|
@@ -2097,45 +2143,47 @@ var Footprinter3d = ({ footprint }) => {
|
|
|
2097
2143
|
}
|
|
2098
2144
|
);
|
|
2099
2145
|
case "sod523":
|
|
2100
|
-
return /* @__PURE__ */
|
|
2146
|
+
return /* @__PURE__ */ jsx33(SOD523, {});
|
|
2101
2147
|
case "sma":
|
|
2102
|
-
return /* @__PURE__ */
|
|
2148
|
+
return /* @__PURE__ */ jsx33(SMA, {});
|
|
2103
2149
|
case "smb":
|
|
2104
|
-
return /* @__PURE__ */
|
|
2150
|
+
return /* @__PURE__ */ jsx33(SMB, {});
|
|
2105
2151
|
case "smc":
|
|
2106
|
-
return /* @__PURE__ */
|
|
2152
|
+
return /* @__PURE__ */ jsx33(SMC, {});
|
|
2107
2153
|
case "smf":
|
|
2108
|
-
return /* @__PURE__ */
|
|
2154
|
+
return /* @__PURE__ */ jsx33(SMF, {});
|
|
2109
2155
|
case "sod123f":
|
|
2110
|
-
return /* @__PURE__ */
|
|
2156
|
+
return /* @__PURE__ */ jsx33(SOD123F, {});
|
|
2157
|
+
case "sod923":
|
|
2158
|
+
return /* @__PURE__ */ jsx33(SOD923, {});
|
|
2111
2159
|
}
|
|
2112
2160
|
const colorMatch = footprint.match(/_color\(([^)]+)\)/);
|
|
2113
2161
|
const color = colorMatch ? colorMatch[1] : void 0;
|
|
2114
2162
|
switch (fpJson.imperial) {
|
|
2115
2163
|
case "0402":
|
|
2116
|
-
return /* @__PURE__ */
|
|
2164
|
+
return /* @__PURE__ */ jsx33(A0402, { color });
|
|
2117
2165
|
case "0603":
|
|
2118
|
-
return /* @__PURE__ */
|
|
2166
|
+
return /* @__PURE__ */ jsx33(A0603, { color });
|
|
2119
2167
|
case "0805":
|
|
2120
|
-
return /* @__PURE__ */
|
|
2168
|
+
return /* @__PURE__ */ jsx33(A0805, { color });
|
|
2121
2169
|
case "0201":
|
|
2122
|
-
return /* @__PURE__ */
|
|
2170
|
+
return /* @__PURE__ */ jsx33(A0201, { color });
|
|
2123
2171
|
case "01005":
|
|
2124
|
-
return /* @__PURE__ */
|
|
2172
|
+
return /* @__PURE__ */ jsx33(A01005, { color });
|
|
2125
2173
|
case "1206":
|
|
2126
|
-
return /* @__PURE__ */
|
|
2174
|
+
return /* @__PURE__ */ jsx33(A1206, { color });
|
|
2127
2175
|
case "1210":
|
|
2128
|
-
return /* @__PURE__ */
|
|
2176
|
+
return /* @__PURE__ */ jsx33(A1210, { color });
|
|
2129
2177
|
case "2010":
|
|
2130
|
-
return /* @__PURE__ */
|
|
2178
|
+
return /* @__PURE__ */ jsx33(A2010, { color });
|
|
2131
2179
|
case "2512":
|
|
2132
|
-
return /* @__PURE__ */
|
|
2180
|
+
return /* @__PURE__ */ jsx33(A2512, { color });
|
|
2133
2181
|
}
|
|
2134
2182
|
return null;
|
|
2135
2183
|
};
|
|
2136
2184
|
|
|
2137
2185
|
// lib/SOT-23-3P.tsx
|
|
2138
|
-
import { Fragment as
|
|
2186
|
+
import { Fragment as Fragment29, jsx as jsx34, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
2139
2187
|
var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
2140
2188
|
const bodyWidth = 1.3;
|
|
2141
2189
|
const bodyLength10 = 2.9;
|
|
@@ -2146,8 +2194,8 @@ var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
|
2146
2194
|
const padContactLength = 0.4;
|
|
2147
2195
|
const padThickness = leadThickness / 2;
|
|
2148
2196
|
const extendedBodyDistance = (fullWidth - bodyWidth) / 2 + 0.3;
|
|
2149
|
-
return /* @__PURE__ */
|
|
2150
|
-
/* @__PURE__ */
|
|
2197
|
+
return /* @__PURE__ */ jsxs31(Fragment29, { children: [
|
|
2198
|
+
/* @__PURE__ */ jsx34(
|
|
2151
2199
|
SmdChipLead,
|
|
2152
2200
|
{
|
|
2153
2201
|
rotation: Math.PI,
|
|
@@ -2164,7 +2212,7 @@ var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
|
2164
2212
|
},
|
|
2165
2213
|
1
|
|
2166
2214
|
),
|
|
2167
|
-
/* @__PURE__ */
|
|
2215
|
+
/* @__PURE__ */ jsx34(
|
|
2168
2216
|
SmdChipLead,
|
|
2169
2217
|
{
|
|
2170
2218
|
rotation: Math.PI,
|
|
@@ -2181,7 +2229,7 @@ var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
|
2181
2229
|
},
|
|
2182
2230
|
2
|
|
2183
2231
|
),
|
|
2184
|
-
/* @__PURE__ */
|
|
2232
|
+
/* @__PURE__ */ jsx34(
|
|
2185
2233
|
SmdChipLead,
|
|
2186
2234
|
{
|
|
2187
2235
|
position: {
|
|
@@ -2197,7 +2245,7 @@ var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
|
2197
2245
|
},
|
|
2198
2246
|
3
|
|
2199
2247
|
),
|
|
2200
|
-
/* @__PURE__ */
|
|
2248
|
+
/* @__PURE__ */ jsx34(
|
|
2201
2249
|
ChipBody,
|
|
2202
2250
|
{
|
|
2203
2251
|
center: { x: 0, y: 0, z: 0 },
|
|
@@ -2210,8 +2258,8 @@ var SOT233P = ({ fullWidth = 2.9, fullLength: fullLength10 = 2.8 }) => {
|
|
|
2210
2258
|
};
|
|
2211
2259
|
|
|
2212
2260
|
// lib/SOT-563.tsx
|
|
2213
|
-
import { Cuboid as
|
|
2214
|
-
import { Fragment as
|
|
2261
|
+
import { Cuboid as Cuboid25, Translate as Translate16, Rotate as Rotate6, Colorize as Colorize17 } from "jscad-fiber";
|
|
2262
|
+
import { Fragment as Fragment30, jsx as jsx35, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2215
2263
|
var SOT563 = ({ fullWidth = 1.94, fullLength: fullLength10 = 1.6 }) => {
|
|
2216
2264
|
const bodyWidth = 1.2;
|
|
2217
2265
|
const bodyLength10 = 1.6;
|
|
@@ -2221,28 +2269,28 @@ var SOT563 = ({ fullWidth = 1.94, fullLength: fullLength10 = 1.6 }) => {
|
|
|
2221
2269
|
const leadHeight = 0.13;
|
|
2222
2270
|
const leadSpacing = 0.5;
|
|
2223
2271
|
const bodyZOffset = -0.4;
|
|
2224
|
-
return /* @__PURE__ */
|
|
2225
|
-
/* @__PURE__ */
|
|
2272
|
+
return /* @__PURE__ */ jsxs32(Fragment30, { children: [
|
|
2273
|
+
/* @__PURE__ */ jsx35(Rotate6, { rotation: [45 * Math.PI, 0, 0], children: /* @__PURE__ */ jsx35(Translate16, { center: [0, 0, bodyZOffset], children: /* @__PURE__ */ jsx35(Colorize17, { color: "grey", children: /* @__PURE__ */ jsx35(Cuboid25, { size: [bodyWidth, bodyLength10, bodyHeight] }) }) }) }),
|
|
2226
2274
|
[-1, 0, 1].flatMap((yOffset, index) => [
|
|
2227
2275
|
// Left lead
|
|
2228
|
-
/* @__PURE__ */
|
|
2229
|
-
|
|
2276
|
+
/* @__PURE__ */ jsx35(
|
|
2277
|
+
Translate16,
|
|
2230
2278
|
{
|
|
2231
2279
|
center: [
|
|
2232
2280
|
-bodyWidth / 2 - 0.03,
|
|
2233
2281
|
yOffset * leadSpacing,
|
|
2234
2282
|
leadHeight / 2
|
|
2235
2283
|
],
|
|
2236
|
-
children: /* @__PURE__ */
|
|
2284
|
+
children: /* @__PURE__ */ jsx35(Cuboid25, { size: [leadLength, leadWidth, leadHeight] })
|
|
2237
2285
|
},
|
|
2238
2286
|
`left-${index}`
|
|
2239
2287
|
),
|
|
2240
2288
|
// Right lead
|
|
2241
|
-
/* @__PURE__ */
|
|
2242
|
-
|
|
2289
|
+
/* @__PURE__ */ jsx35(
|
|
2290
|
+
Translate16,
|
|
2243
2291
|
{
|
|
2244
2292
|
center: [bodyWidth / 2 + 0.03, yOffset * leadSpacing, leadHeight / 2],
|
|
2245
|
-
children: /* @__PURE__ */
|
|
2293
|
+
children: /* @__PURE__ */ jsx35(Cuboid25, { size: [leadLength, leadWidth, leadHeight] })
|
|
2246
2294
|
},
|
|
2247
2295
|
`right-${index}`
|
|
2248
2296
|
)
|
|
@@ -2251,8 +2299,8 @@ var SOT563 = ({ fullWidth = 1.94, fullLength: fullLength10 = 1.6 }) => {
|
|
|
2251
2299
|
};
|
|
2252
2300
|
|
|
2253
2301
|
// lib/SOT-723.tsx
|
|
2254
|
-
import { Cuboid as
|
|
2255
|
-
import { Fragment as
|
|
2302
|
+
import { Cuboid as Cuboid26, Translate as Translate17, Rotate as Rotate7, Colorize as Colorize18 } from "jscad-fiber";
|
|
2303
|
+
import { Fragment as Fragment31, jsx as jsx36, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2256
2304
|
var getCcwSot723Coords = (pn) => {
|
|
2257
2305
|
if (pn === 1) {
|
|
2258
2306
|
return { x: 0, y: 0 };
|
|
@@ -2270,12 +2318,12 @@ var SOT723 = () => {
|
|
|
2270
2318
|
const leadLength = 0.3;
|
|
2271
2319
|
const leadHeight = 0.1;
|
|
2272
2320
|
const centerLeadWidth = 0.42;
|
|
2273
|
-
return /* @__PURE__ */
|
|
2274
|
-
/* @__PURE__ */
|
|
2321
|
+
return /* @__PURE__ */ jsxs33(Fragment31, { children: [
|
|
2322
|
+
/* @__PURE__ */ jsx36(Rotate7, { rotation: [45 * Math.PI, 0, 0], children: /* @__PURE__ */ jsx36(Translate17, { center: [0.475, leadHeight / 2, -0.25], children: /* @__PURE__ */ jsx36(Colorize18, { color: "grey", children: /* @__PURE__ */ jsx36(Cuboid26, { size: [bodyWidth, bodyLength10, bodyHeight] }) }) }) }),
|
|
2275
2323
|
[1, 2, 3].map((pn) => {
|
|
2276
2324
|
const { x, y } = getCcwSot723Coords(pn);
|
|
2277
|
-
return /* @__PURE__ */
|
|
2278
|
-
|
|
2325
|
+
return /* @__PURE__ */ jsx36(Translate17, { center: [x, y, 0], children: /* @__PURE__ */ jsx36(
|
|
2326
|
+
Cuboid26,
|
|
2279
2327
|
{
|
|
2280
2328
|
size: [
|
|
2281
2329
|
leadLength,
|
|
@@ -2289,7 +2337,7 @@ var SOT723 = () => {
|
|
|
2289
2337
|
};
|
|
2290
2338
|
|
|
2291
2339
|
// lib/sod-123.tsx
|
|
2292
|
-
import { Fragment as
|
|
2340
|
+
import { Fragment as Fragment32, jsx as jsx37, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2293
2341
|
var SOD123 = ({ fullWidth = 3.8, fullLength: fullLength10 = 1.6 }) => {
|
|
2294
2342
|
const bodyWidth = 2.9;
|
|
2295
2343
|
const bodyLength10 = 1.3;
|
|
@@ -2300,8 +2348,8 @@ var SOD123 = ({ fullWidth = 3.8, fullLength: fullLength10 = 1.6 }) => {
|
|
|
2300
2348
|
const padContactLength = 0.4;
|
|
2301
2349
|
const padThickness = leadThickness / 2;
|
|
2302
2350
|
const bodyDistance = (fullWidth - bodyWidth) / 2;
|
|
2303
|
-
return /* @__PURE__ */
|
|
2304
|
-
/* @__PURE__ */
|
|
2351
|
+
return /* @__PURE__ */ jsxs34(Fragment32, { children: [
|
|
2352
|
+
/* @__PURE__ */ jsx37(
|
|
2305
2353
|
SmdChipLead,
|
|
2306
2354
|
{
|
|
2307
2355
|
position: {
|
|
@@ -2317,7 +2365,7 @@ var SOD123 = ({ fullWidth = 3.8, fullLength: fullLength10 = 1.6 }) => {
|
|
|
2317
2365
|
},
|
|
2318
2366
|
1
|
|
2319
2367
|
),
|
|
2320
|
-
/* @__PURE__ */
|
|
2368
|
+
/* @__PURE__ */ jsx37(
|
|
2321
2369
|
SmdChipLead,
|
|
2322
2370
|
{
|
|
2323
2371
|
rotation: Math.PI,
|
|
@@ -2334,7 +2382,7 @@ var SOD123 = ({ fullWidth = 3.8, fullLength: fullLength10 = 1.6 }) => {
|
|
|
2334
2382
|
},
|
|
2335
2383
|
2
|
|
2336
2384
|
),
|
|
2337
|
-
/* @__PURE__ */
|
|
2385
|
+
/* @__PURE__ */ jsx37(
|
|
2338
2386
|
ChipBody,
|
|
2339
2387
|
{
|
|
2340
2388
|
center: { x: 0, y: 0, z: 0 },
|
|
@@ -2371,6 +2419,7 @@ export {
|
|
|
2371
2419
|
SOD123,
|
|
2372
2420
|
SOD123F,
|
|
2373
2421
|
SOD523,
|
|
2422
|
+
SOD923,
|
|
2374
2423
|
SOT233P,
|
|
2375
2424
|
SOT563,
|
|
2376
2425
|
SOT723,
|