@tscircuit/runframe 0.0.556 → 0.0.558
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/{chunk-AI2HXBDG.js → chunk-AEWBBJRD.js} +1 -1
- package/dist/preview.js +1 -1
- package/dist/runner.js +8 -2
- package/dist/standalone-preview.min.js +878 -880
- package/dist/standalone.min.js +1053 -1055
- package/package.json +2 -2
|
@@ -1105,7 +1105,7 @@ var RenderLogViewer = ({
|
|
|
1105
1105
|
};
|
|
1106
1106
|
|
|
1107
1107
|
// package.json
|
|
1108
|
-
var version = "0.0.
|
|
1108
|
+
var version = "0.0.557";
|
|
1109
1109
|
|
|
1110
1110
|
// lib/components/CircuitJsonPreview/CircuitJsonPreview.tsx
|
|
1111
1111
|
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
package/dist/preview.js
CHANGED
package/dist/runner.js
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
useOrderDialog,
|
|
28
28
|
useOrderDialogCli,
|
|
29
29
|
useRunFrameStore
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-AEWBBJRD.js";
|
|
31
31
|
|
|
32
32
|
// lib/components/RunFrame/RunFrame.tsx
|
|
33
33
|
import { createCircuitWebWorker } from "@tscircuit/eval/worker";
|
|
@@ -372,9 +372,15 @@ var RunFrame = (props) => {
|
|
|
372
372
|
}
|
|
373
373
|
};
|
|
374
374
|
const handleReportAutoroutingLog = async (name, data) => {
|
|
375
|
+
let urlPath = "";
|
|
376
|
+
try {
|
|
377
|
+
urlPath = window.location.pathname || "";
|
|
378
|
+
} catch {
|
|
379
|
+
}
|
|
380
|
+
const title = urlPath ? `${urlPath} - ${name}` : name;
|
|
375
381
|
await registryKy.post("autorouting/bug_reports/create", {
|
|
376
382
|
json: {
|
|
377
|
-
title
|
|
383
|
+
title,
|
|
378
384
|
simple_route_json: data.simpleRouteJson
|
|
379
385
|
}
|
|
380
386
|
}).json().then(({ autorouting_bug_report }) => {
|