@tscircuit/eval 0.0.653 → 0.0.655
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 +4 -2
- package/dist/lib/index.d.ts +4 -2
- package/dist/webworker/entrypoint.js +169 -123
- package/package.json +7 -7
package/dist/eval/index.d.ts
CHANGED
|
@@ -1290,6 +1290,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1290
1290
|
port_hints?: string[] | undefined;
|
|
1291
1291
|
pcb_port_id?: string | undefined;
|
|
1292
1292
|
rect_border_radius?: number | undefined;
|
|
1293
|
+
rect_ccw_rotation?: number | undefined;
|
|
1293
1294
|
} | {
|
|
1294
1295
|
x: number;
|
|
1295
1296
|
y: number;
|
|
@@ -1328,8 +1329,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1328
1329
|
rect_pad_height: number;
|
|
1329
1330
|
hole_offset_x: number;
|
|
1330
1331
|
hole_offset_y: number;
|
|
1331
|
-
hole_ccw_rotation: number;
|
|
1332
1332
|
rect_ccw_rotation: number;
|
|
1333
|
+
hole_ccw_rotation: number;
|
|
1333
1334
|
pcb_component_id?: string | undefined;
|
|
1334
1335
|
subcircuit_id?: string | undefined;
|
|
1335
1336
|
pcb_group_id?: string | undefined;
|
|
@@ -5353,6 +5354,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
5353
5354
|
port_hints?: string[] | undefined;
|
|
5354
5355
|
pcb_port_id?: string | undefined;
|
|
5355
5356
|
rect_border_radius?: number | undefined;
|
|
5357
|
+
rect_ccw_rotation?: number | undefined;
|
|
5356
5358
|
} | {
|
|
5357
5359
|
x: number;
|
|
5358
5360
|
y: number;
|
|
@@ -5391,8 +5393,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
5391
5393
|
rect_pad_height: number;
|
|
5392
5394
|
hole_offset_x: number;
|
|
5393
5395
|
hole_offset_y: number;
|
|
5394
|
-
hole_ccw_rotation: number;
|
|
5395
5396
|
rect_ccw_rotation: number;
|
|
5397
|
+
hole_ccw_rotation: number;
|
|
5396
5398
|
pcb_component_id?: string | undefined;
|
|
5397
5399
|
subcircuit_id?: string | undefined;
|
|
5398
5400
|
pcb_group_id?: string | undefined;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1306,6 +1306,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1306
1306
|
port_hints?: string[] | undefined;
|
|
1307
1307
|
pcb_port_id?: string | undefined;
|
|
1308
1308
|
rect_border_radius?: number | undefined;
|
|
1309
|
+
rect_ccw_rotation?: number | undefined;
|
|
1309
1310
|
} | {
|
|
1310
1311
|
x: number;
|
|
1311
1312
|
y: number;
|
|
@@ -1344,8 +1345,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1344
1345
|
rect_pad_height: number;
|
|
1345
1346
|
hole_offset_x: number;
|
|
1346
1347
|
hole_offset_y: number;
|
|
1347
|
-
hole_ccw_rotation: number;
|
|
1348
1348
|
rect_ccw_rotation: number;
|
|
1349
|
+
hole_ccw_rotation: number;
|
|
1349
1350
|
pcb_component_id?: string | undefined;
|
|
1350
1351
|
subcircuit_id?: string | undefined;
|
|
1351
1352
|
pcb_group_id?: string | undefined;
|
|
@@ -5369,6 +5370,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
5369
5370
|
port_hints?: string[] | undefined;
|
|
5370
5371
|
pcb_port_id?: string | undefined;
|
|
5371
5372
|
rect_border_radius?: number | undefined;
|
|
5373
|
+
rect_ccw_rotation?: number | undefined;
|
|
5372
5374
|
} | {
|
|
5373
5375
|
x: number;
|
|
5374
5376
|
y: number;
|
|
@@ -5407,8 +5409,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
5407
5409
|
rect_pad_height: number;
|
|
5408
5410
|
hole_offset_x: number;
|
|
5409
5411
|
hole_offset_y: number;
|
|
5410
|
-
hole_ccw_rotation: number;
|
|
5411
5412
|
rect_ccw_rotation: number;
|
|
5413
|
+
hole_ccw_rotation: number;
|
|
5412
5414
|
pcb_component_id?: string | undefined;
|
|
5413
5415
|
subcircuit_id?: string | undefined;
|
|
5414
5416
|
pcb_group_id?: string | undefined;
|