@tscircuit/runframe 0.0.266 → 0.0.268

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.
@@ -988,7 +988,7 @@ var RenderLogViewer = ({
988
988
  };
989
989
 
990
990
  // package.json
991
- var version = "0.0.265";
991
+ var version = "0.0.267";
992
992
 
993
993
  // lib/components/CircuitJsonPreview/CircuitJsonPreview.tsx
994
994
  import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
@@ -1311,15 +1311,24 @@ var CircuitJsonPreview = ({
1311
1311
  children: /* @__PURE__ */ jsx16(ErrorBoundary, { fallback: /* @__PURE__ */ jsx16("div", { children: "Error loading JSON viewer" }), children: circuitJson ? /* @__PURE__ */ jsx16(CircuitJsonTableViewer, { elements: circuitJson }) : /* @__PURE__ */ jsx16(PreviewEmptyState_default, { onRunClicked }) })
1312
1312
  }
1313
1313
  ) }),
1314
- /* @__PURE__ */ jsx16(TabsContent, { value: "errors", children: circuitJson || errorMessage ? /* @__PURE__ */ jsx16(
1315
- ErrorTabContent,
1314
+ /* @__PURE__ */ jsx16(TabsContent, { value: "errors", children: /* @__PURE__ */ jsx16(
1315
+ "div",
1316
1316
  {
1317
- code,
1318
- errorMessage,
1319
- autoroutingLog,
1320
- onReportAutoroutingLog
1317
+ className: cn(
1318
+ "rf-overflow-auto",
1319
+ isFullScreen ? "rf-h-[calc(100vh-96px)]" : "rf-h-[620px]"
1320
+ ),
1321
+ children: circuitJson || errorMessage ? /* @__PURE__ */ jsx16(
1322
+ ErrorTabContent,
1323
+ {
1324
+ code,
1325
+ errorMessage,
1326
+ autoroutingLog,
1327
+ onReportAutoroutingLog
1328
+ }
1329
+ ) : /* @__PURE__ */ jsx16(PreviewEmptyState_default, { onRunClicked })
1321
1330
  }
1322
- ) : /* @__PURE__ */ jsx16(PreviewEmptyState_default, { onRunClicked }) }),
1331
+ ) }),
1323
1332
  showRenderLogTab && /* @__PURE__ */ jsx16(TabsContent, { value: "render_log", children: /* @__PURE__ */ jsx16(RenderLogViewer, { renderLog }) })
1324
1333
  ]
1325
1334
  }
package/dist/preview.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  CircuitJsonPreview
3
- } from "./chunk-OVCMOKJI.js";
3
+ } from "./chunk-GEDQN7G7.js";
4
4
  export {
5
5
  CircuitJsonPreview
6
6
  };
package/dist/runner.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  DropdownMenuTrigger,
12
12
  buttonVariants,
13
13
  cn
14
- } from "./chunk-OVCMOKJI.js";
14
+ } from "./chunk-GEDQN7G7.js";
15
15
 
16
16
  // lib/components/RunFrame/RunFrame.tsx
17
17
  import { createCircuitWebWorker } from "@tscircuit/eval/worker";