@tscircuit/runframe 0.0.1143 → 0.0.1144
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-XQM6LUI2.js → chunk-YMVBCPTM.js} +3 -9
- package/dist/preview.js +1 -1
- package/dist/runner.js +1 -1
- package/dist/standalone-preview.min.js +217 -217
- package/dist/standalone.min.js +199 -199
- package/package.json +1 -1
|
@@ -1454,7 +1454,7 @@ var useErrorTelemetry = ({
|
|
|
1454
1454
|
};
|
|
1455
1455
|
|
|
1456
1456
|
// package.json
|
|
1457
|
-
var version = "0.0.
|
|
1457
|
+
var version = "0.0.1143";
|
|
1458
1458
|
var package_default = {
|
|
1459
1459
|
name: "@tscircuit/runframe",
|
|
1460
1460
|
main: "dist/preview.js",
|
|
@@ -4068,14 +4068,8 @@ async function getFilesFromServer() {
|
|
|
4068
4068
|
}
|
|
4069
4069
|
return fileMap;
|
|
4070
4070
|
}
|
|
4071
|
-
var
|
|
4072
|
-
|
|
4073
|
-
const baseForView = API_BASE.startsWith("http://") || API_BASE.startsWith("https://") ? normalizedApiBase : `${typeof window !== "undefined" ? window.location.origin : "https://api.tscircuit.com"}/${normalizedApiBase.replace(/^\//, "")}`;
|
|
4074
|
-
return new URL(
|
|
4075
|
-
`bug_reports/view?bug_report_id=${bugReportId}`,
|
|
4076
|
-
baseForView
|
|
4077
|
-
).toString();
|
|
4078
|
-
};
|
|
4071
|
+
var BUG_REPORT_VIEW_BASE_URL = "https://api.tscircuit.com/bug_reports/view?bug_report_id=";
|
|
4072
|
+
var buildBugReportUrl = (bugReportId) => `${BUG_REPORT_VIEW_BASE_URL}${bugReportId}`;
|
|
4079
4073
|
var useBugReportDialog = () => {
|
|
4080
4074
|
const [isOpen, setIsOpen] = useState18(false);
|
|
4081
4075
|
const [isSubmitting, setIsSubmitting] = useState18(false);
|
package/dist/preview.js
CHANGED
package/dist/runner.js
CHANGED