@tscircuit/common 0.0.10 → 0.0.12

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +7 -7
  2. package/dist/index.js +266 -7857
  3. package/package.json +37 -37
package/dist/index.d.ts CHANGED
@@ -5,27 +5,27 @@ type ArduinoShieldProps = ChipProps & BoardProps & {
5
5
  children?: any;
6
6
  boardName?: string;
7
7
  };
8
- declare const ArduinoShield: ({ boardName, children, ...rest }: ArduinoShieldProps) => react_jsx_runtime.JSX.Element;
8
+ declare const ArduinoShield: ({ children, ...rest }: ArduinoShieldProps) => react_jsx_runtime.JSX.Element;
9
9
 
10
10
  type MicroModBoardProps = ChipProps & BoardProps & {
11
11
  children?: any;
12
- variant?: "processor" | "function";
13
12
  boardName?: string;
13
+ variant?: "processor" | "function";
14
14
  };
15
- declare const MicroModBoard: ({ variant, boardName, children, ...rest }: MicroModBoardProps) => react_jsx_runtime.JSX.Element;
15
+ declare const MicroModBoard: ({ variant, children, ...rest }: MicroModBoardProps) => react_jsx_runtime.JSX.Element;
16
16
 
17
17
  type RaspberryPiHatBoardProps = ChipProps & BoardProps & {
18
18
  children?: any;
19
19
  boardName?: string;
20
20
  };
21
- declare const RaspberryPiHatBoard: ({ boardName, children, ...rest }: RaspberryPiHatBoardProps) => react_jsx_runtime.JSX.Element;
21
+ declare const RaspberryPiHatBoard: ({ children, ...rest }: RaspberryPiHatBoardProps) => react_jsx_runtime.JSX.Element;
22
22
 
23
- type XiaoBoardProps = (ChipProps & BoardProps) & {
23
+ type XiaoBoardProps = ChipProps & BoardProps & {
24
24
  children?: any;
25
+ boardName?: string;
25
26
  variant?: "RP2040" | "Receiver";
26
27
  withPlatedHoles?: boolean;
27
- boardName?: string;
28
28
  };
29
- declare const XiaoBoard: ({ variant, withPlatedHoles, boardName, children, ...rest }: XiaoBoardProps) => react_jsx_runtime.JSX.Element;
29
+ declare const XiaoBoard: ({ variant, withPlatedHoles, children, ...rest }: XiaoBoardProps) => react_jsx_runtime.JSX.Element;
30
30
 
31
31
  export { ArduinoShield, MicroModBoard, RaspberryPiHatBoard, XiaoBoard };