@tscircuit/eval 0.0.626 → 0.0.627
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/blob-url.js +1 -1
- package/dist/eval/index.d.ts +6 -2
- package/dist/eval/index.js +2 -2
- package/dist/lib/index.d.ts +6 -2
- package/dist/lib/index.js +2 -2
- package/dist/webworker/entrypoint.js +15 -14
- package/package.json +6 -6
package/dist/eval/index.d.ts
CHANGED
|
@@ -1525,7 +1525,9 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1525
1525
|
position_mode?: "none" | "relative_to_panel_anchor" | undefined;
|
|
1526
1526
|
shape?: "rect" | "polygon" | undefined;
|
|
1527
1527
|
pcb_panel_id?: string | undefined;
|
|
1528
|
+
carrier_pcb_board_id?: string | undefined;
|
|
1528
1529
|
is_subcircuit?: boolean | undefined;
|
|
1530
|
+
is_mounted_to_carrier_board?: boolean | undefined;
|
|
1529
1531
|
outline?: {
|
|
1530
1532
|
x: number;
|
|
1531
1533
|
y: number;
|
|
@@ -2413,7 +2415,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2413
2415
|
is_filled?: boolean | undefined;
|
|
2414
2416
|
schematic_component_id?: string | undefined;
|
|
2415
2417
|
schematic_symbol_id?: string | undefined;
|
|
2416
|
-
fill_color?:
|
|
2418
|
+
fill_color?: string | undefined;
|
|
2417
2419
|
stroke_color?: string | undefined;
|
|
2418
2420
|
} | {
|
|
2419
2421
|
message: string;
|
|
@@ -4087,7 +4089,9 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4087
4089
|
position_mode?: "none" | "relative_to_panel_anchor" | undefined;
|
|
4088
4090
|
shape?: "rect" | "polygon" | undefined;
|
|
4089
4091
|
pcb_panel_id?: string | undefined;
|
|
4092
|
+
carrier_pcb_board_id?: string | undefined;
|
|
4090
4093
|
is_subcircuit?: boolean | undefined;
|
|
4094
|
+
is_mounted_to_carrier_board?: boolean | undefined;
|
|
4091
4095
|
outline?: {
|
|
4092
4096
|
x: number;
|
|
4093
4097
|
y: number;
|
|
@@ -4975,7 +4979,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4975
4979
|
is_filled?: boolean | undefined;
|
|
4976
4980
|
schematic_component_id?: string | undefined;
|
|
4977
4981
|
schematic_symbol_id?: string | undefined;
|
|
4978
|
-
fill_color?:
|
|
4982
|
+
fill_color?: string | undefined;
|
|
4979
4983
|
stroke_color?: string | undefined;
|
|
4980
4984
|
} | {
|
|
4981
4985
|
message: string;
|