deploy: v0.12 存档迁移+考古日志滚动条

This commit is contained in:
2026-06-24 03:04:38 +00:00
parent 4831505ef9
commit b4c6111516
58986 changed files with 7569452 additions and 31667 deletions
+39
View File
@@ -0,0 +1,39 @@
import { dequal } from 'dequal';
var SandpackClient = /** @class */ (function () {
function SandpackClient(iframeSelector, sandboxSetup, options) {
if (options === void 0) { options = {}; }
this.status = "idle";
this.options = options;
this.sandboxSetup = sandboxSetup;
this.iframeSelector = iframeSelector;
}
/**
* Clients handles
*/
SandpackClient.prototype.updateOptions = function (options) {
if (!dequal(this.options, options)) {
this.options = options;
this.updateSandbox();
}
};
SandpackClient.prototype.updateSandbox = function (_sandboxSetup, _isInitializationCompile) {
if (_sandboxSetup === void 0) { _sandboxSetup = this.sandboxSetup; }
throw Error("Method not implemented");
};
SandpackClient.prototype.destroy = function () {
throw Error("Method not implemented");
};
/**
* Bundler communication
*/
SandpackClient.prototype.dispatch = function (_message) {
throw Error("Method not implemented");
};
SandpackClient.prototype.listen = function (_listener) {
throw Error("Method not implemented");
};
return SandpackClient;
}());
export { SandpackClient as S };