jscad-electronics 0.0.23 → 0.0.25

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 CHANGED
@@ -1,6 +1,14 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { AnyCircuitElement, PcbSmtPad, PcbPlatedHole } from 'circuit-json';
3
3
 
4
+ declare const A01005: ({ color }: {
5
+ color?: string | undefined;
6
+ }) => react_jsx_runtime.JSX.Element;
7
+
8
+ declare const A0201: ({ color }: {
9
+ color?: string | undefined;
10
+ }) => react_jsx_runtime.JSX.Element;
11
+
4
12
  declare const A0402: ({ color }: {
5
13
  color?: string | undefined;
6
14
  }) => react_jsx_runtime.JSX.Element;
@@ -13,6 +21,22 @@ declare const A0805: ({ color }: {
13
21
  color?: string | undefined;
14
22
  }) => react_jsx_runtime.JSX.Element;
15
23
 
24
+ declare const A1206: ({ color }: {
25
+ color?: string | undefined;
26
+ }) => react_jsx_runtime.JSX.Element;
27
+
28
+ declare const A1210: ({ color }: {
29
+ color?: string | undefined;
30
+ }) => react_jsx_runtime.JSX.Element;
31
+
32
+ declare const A2010: ({ color }: {
33
+ color?: string | undefined;
34
+ }) => react_jsx_runtime.JSX.Element;
35
+
36
+ declare const A2512: ({ color }: {
37
+ color?: string | undefined;
38
+ }) => react_jsx_runtime.JSX.Element;
39
+
16
40
  interface BGAProps {
17
41
  packageWidth?: number;
18
42
  packageLength?: number;
@@ -40,8 +64,8 @@ interface ChipBodyProps {
40
64
  }
41
65
  declare const ChipBody: ({ center, width, length, height, heightAboveSurface, }: ChipBodyProps) => react_jsx_runtime.JSX.Element;
42
66
 
43
- declare const ExtrudedPads: ({ soup, footprint, }: {
44
- soup?: AnyCircuitElement[];
67
+ declare const ExtrudedPads: ({ circuitJson, footprint, }: {
68
+ circuitJson?: AnyCircuitElement[];
45
69
  footprint?: string;
46
70
  }) => react_jsx_runtime.JSX.Element;
47
71
 
@@ -134,4 +158,4 @@ declare const PinRow: ({ numberOfPins, pitch, longSidePinLength, }: {
134
158
  longSidePinLength?: number;
135
159
  }) => react_jsx_runtime.JSX.Element;
136
160
 
137
- export { A0402, A0603, A0805, BGA, ChipBody, type ChipBodyProps, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, PinRow, QFN, QFP, SOD123, SOT233P, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, Tssop };
161
+ export { A01005, A0201, A0402, A0603, A0805, A1206, A1210, A2010, A2512, BGA, ChipBody, type ChipBodyProps, ExtrudedPads, FootprintPad, FootprintPlatedHole, Footprinter3d, PinRow, QFN, QFP, SOD123, SOT233P, SOT563, SOT723, SmdChipLead, type SmdChipLeadProps, Tssop };