jscad-electronics 0.0.160 → 0.0.161
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 +14 -1
- package/dist/index.js +1084 -1012
- package/dist/index.js.map +1 -1
- package/dist/vanilla.js +85 -17
- package/dist/vanilla.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1008,4 +1008,17 @@ declare const UsbCMidmount: ({ footprint, }: {
|
|
|
1008
1008
|
footprint?: string;
|
|
1009
1009
|
}) => react_jsx_runtime.JSX.Element;
|
|
1010
1010
|
|
|
1011
|
-
|
|
1011
|
+
declare const tantalumCases: {
|
|
1012
|
+
readonly A: readonly [3.2, 1.6, 1.6, 1.2, 0.8];
|
|
1013
|
+
readonly B: readonly [3.5, 2.8, 1.9, 2.2, 0.8];
|
|
1014
|
+
readonly C: readonly [6, 3.2, 2.6, 2.2, 1.3];
|
|
1015
|
+
readonly D: readonly [7.3, 4.3, 2.9, 2.4, 1.3];
|
|
1016
|
+
};
|
|
1017
|
+
type TantalumCase = keyof typeof tantalumCases;
|
|
1018
|
+
/** Explicit case identity is required; copper dimensions do not determine height. */
|
|
1019
|
+
declare const TantalumCapacitor: ({ caseSize, footprint, }: {
|
|
1020
|
+
caseSize?: TantalumCase;
|
|
1021
|
+
footprint?: string;
|
|
1022
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1023
|
+
|
|
1024
|
+
export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, AxialCapacitor, BGA, ChipBody, type ChipBodyProps, Crystal, type CrystalProps, DFN, DPAK, type DPAKProps, Display, ElectrolyticCapacitor, type ElectrolyticCapacitorProps, ExtrudedPads, FPC, type FPCProps, FemaleHeader, FemaleHeaderRow, FlexScreen, type FlexScreenAspectRatio, type FlexScreenOrientation, type FlexScreenProps, FootprintPad, FootprintPlatedHole, Footprinter3d, GullWingBody, type GullWingBodyProps, HC49, type HC49Props, JSTPH2_0mm, JSTXH2_5mm, type JSTXH2_5mmProps, JSTZH1_5mm, LQFP, Led2835, type Led2835Props, Led5050, type Led5050Props, MELF, type MELFProps, MINIMELF, type MINIMELFProps, MS012, MS013, MSOP, MicroMELF, type MicroMELFProps, MountedPcbModule, PinHeader, PinRow, Potentiometer, type PotentiometerLead, type PotentiometerProps, QFN, QFP, RJ45, type RJ45Props, type ResolvedFlexScreenSize, SMA, SMB, SMC, SMF, SOD123, SOD123F, SOD123FL, type SOD123Props, SOD123W, type SOD123WProps, SOD128, SOD323, SOD323F, SOD323FL, SOD523, SOD723, SOD882, SOD923, SOT143, SOT223, type SOT223Props, SOT233P, SOT23W, SOT323, SOT363, SOT457, SOT563, SOT723, SOT886, SOT963, Screen, type ScreenProps, SmdChipLead, type SmdChipLeadProps, type SmdLeadPad, SmdPinHeader, type SmdPinHeaderProps, SmdPushButton, type SmdPushButtonProps, StampBoard, TO220, type TO220Lead, type TO220Props, TO92, type TO92Lead, type TO92Props, TQFP, TantalumCapacitor, type TantalumCase, Tssop, UsbCMidmount, VSSOP, resolveFlexScreenSize, tantalumCases };
|