@tscircuit/eval 0.0.641 → 0.0.643
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 +2 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/webworker/entrypoint.js +8 -8
- package/package.json +6 -6
package/dist/eval/index.d.ts
CHANGED
|
@@ -974,6 +974,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
974
974
|
display_offset_x?: string | undefined;
|
|
975
975
|
display_offset_y?: string | undefined;
|
|
976
976
|
do_not_place?: boolean | undefined;
|
|
977
|
+
is_allowed_to_be_off_board?: boolean | undefined;
|
|
977
978
|
subcircuit_id?: string | undefined;
|
|
978
979
|
pcb_group_id?: string | undefined;
|
|
979
980
|
position_mode?: "packed" | "relative_to_group_anchor" | "none" | undefined;
|
|
@@ -3538,6 +3539,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3538
3539
|
display_offset_x?: string | undefined;
|
|
3539
3540
|
display_offset_y?: string | undefined;
|
|
3540
3541
|
do_not_place?: boolean | undefined;
|
|
3542
|
+
is_allowed_to_be_off_board?: boolean | undefined;
|
|
3541
3543
|
subcircuit_id?: string | undefined;
|
|
3542
3544
|
pcb_group_id?: string | undefined;
|
|
3543
3545
|
position_mode?: "packed" | "relative_to_group_anchor" | "none" | undefined;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -990,6 +990,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
990
990
|
display_offset_x?: string | undefined;
|
|
991
991
|
display_offset_y?: string | undefined;
|
|
992
992
|
do_not_place?: boolean | undefined;
|
|
993
|
+
is_allowed_to_be_off_board?: boolean | undefined;
|
|
993
994
|
subcircuit_id?: string | undefined;
|
|
994
995
|
pcb_group_id?: string | undefined;
|
|
995
996
|
position_mode?: "packed" | "relative_to_group_anchor" | "none" | undefined;
|
|
@@ -3554,6 +3555,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3554
3555
|
display_offset_x?: string | undefined;
|
|
3555
3556
|
display_offset_y?: string | undefined;
|
|
3556
3557
|
do_not_place?: boolean | undefined;
|
|
3558
|
+
is_allowed_to_be_off_board?: boolean | undefined;
|
|
3557
3559
|
subcircuit_id?: string | undefined;
|
|
3558
3560
|
pcb_group_id?: string | undefined;
|
|
3559
3561
|
position_mode?: "packed" | "relative_to_group_anchor" | "none" | undefined;
|