@tscircuit/runframe 0.0.1752 → 0.0.1753

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.
@@ -1730,7 +1730,7 @@ var useErrorTelemetry = ({
1730
1730
  };
1731
1731
 
1732
1732
  // package.json
1733
- var version = "0.0.1751";
1733
+ var version = "0.0.1752";
1734
1734
  var package_default = {
1735
1735
  name: "@tscircuit/runframe",
1736
1736
  main: "dist/preview.js",
@@ -1807,7 +1807,7 @@ var package_default = {
1807
1807
  concurrently: "^9.1.2",
1808
1808
  cssnano: "^7.0.6",
1809
1809
  debug: "^4.4.0",
1810
- easyeda: "^0.0.233",
1810
+ easyeda: "^0.0.252",
1811
1811
  fflate: "^0.8.2",
1812
1812
  "fuse.js": "^7.1.0",
1813
1813
  jose: "^6.1.0",
@@ -2524,7 +2524,7 @@ var loadJlcpcbComponentTsx = async (partNumber, opts) => {
2524
2524
  }
2525
2525
  })
2526
2526
  });
2527
- return convertRawEasyToTsx(component);
2527
+ return convertRawEasyToTsx({ rawEasy: component });
2528
2528
  };
2529
2529
 
2530
2530
  // lib/components/ImportComponentDialog2/components/SearchBar.tsx
package/dist/preview.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  linkify,
9
9
  useOrderDialog,
10
10
  useOrderDialogCli
11
- } from "./chunk-MRQ74ZG7.js";
11
+ } from "./chunk-XI4SHVZZ.js";
12
12
  export {
13
13
  BomTable,
14
14
  CadViewer,
package/dist/runner.js CHANGED
@@ -34,7 +34,7 @@ import {
34
34
  useRunFrameStore,
35
35
  useRunnerStore,
36
36
  useStyles
37
- } from "./chunk-MRQ74ZG7.js";
37
+ } from "./chunk-XI4SHVZZ.js";
38
38
 
39
39
  // lib/components/RunFrame/RunFrame.tsx
40
40
  import { createCircuitWebWorker } from "@tscircuit/eval/worker";
@@ -2355,7 +2355,7 @@ var importComponentFromJlcpcb = async (jlcpcbPartNumber, opts) => {
2355
2355
  });
2356
2356
  }
2357
2357
  });
2358
- const tsx = await convertRawEasyToTsx(component);
2358
+ const tsx = await convertRawEasyToTsx({ rawEasy: component });
2359
2359
  const fileName = tsx.match(/export const (\w+) = .*/)?.[1];
2360
2360
  if (!fileName) {
2361
2361
  console.error("COULD NOT DETERMINE FILE NAME OF CONVERTED COMPONENT:", tsx);