@tscircuit/runframe 0.0.797 → 0.0.799
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-GMHR5F7C.js → chunk-DMI3DYTW.js} +1 -1
- package/dist/preview.js +1 -1
- package/dist/runner.d.ts +5 -0
- package/dist/runner.js +320 -285
- package/dist/standalone-preview.min.js +1 -1
- package/dist/standalone.min.js +670 -670
- package/package.json +2 -2
|
@@ -1333,7 +1333,7 @@ var useErrorTelemetry = ({
|
|
|
1333
1333
|
};
|
|
1334
1334
|
|
|
1335
1335
|
// package.json
|
|
1336
|
-
var version = "0.0.
|
|
1336
|
+
var version = "0.0.798";
|
|
1337
1337
|
|
|
1338
1338
|
// lib/hooks/use-eval-versions.ts
|
|
1339
1339
|
import { useEffect as useEffect5, useMemo as useMemo2, useState as useState6 } from "react";
|
package/dist/preview.js
CHANGED
package/dist/runner.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ interface RunFrameProps {
|
|
|
42
42
|
* a title here.
|
|
43
43
|
*/
|
|
44
44
|
leftHeaderContent?: React.ReactNode;
|
|
45
|
+
/**
|
|
46
|
+
* Whether to show the default file menu with download options
|
|
47
|
+
*/
|
|
48
|
+
showFileMenu?: boolean;
|
|
45
49
|
/**
|
|
46
50
|
* Called when the circuit JSON changes
|
|
47
51
|
*/
|
|
@@ -126,6 +130,7 @@ interface RunFrameWithApiProps {
|
|
|
126
130
|
showFilesSwitch?: boolean;
|
|
127
131
|
workerBlobUrl?: string;
|
|
128
132
|
evalWebWorkerBlobUrl?: string;
|
|
133
|
+
showFileMenu?: boolean;
|
|
129
134
|
}
|
|
130
135
|
declare const RunFrameWithApi: (props: RunFrameWithApiProps) => react_jsx_runtime.JSX.Element;
|
|
131
136
|
|