@phpsandbox/sdk 0.0.13 → 0.0.14
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/browser/phpsandbox-sdk.esm.js +2 -1
- package/dist/browser/phpsandbox-sdk.esm.js.map +2 -2
- package/dist/browser/phpsandbox-sdk.esm.min.js +1 -1
- package/dist/browser/phpsandbox-sdk.esm.min.js.map +3 -3
- package/dist/browser/phpsandbox-sdk.iife.js +2 -1
- package/dist/browser/phpsandbox-sdk.iife.js.map +2 -2
- package/dist/browser/phpsandbox-sdk.iife.min.js +1 -1
- package/dist/browser/phpsandbox-sdk.iife.min.js.map +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -4716,9 +4716,10 @@ var NotebookInstance = class {
|
|
|
4716
4716
|
return disposable;
|
|
4717
4717
|
}
|
|
4718
4718
|
async reconnect() {
|
|
4719
|
+
const whenConnected = this.whenConnected();
|
|
4719
4720
|
this.socket.reconnect();
|
|
4720
4721
|
this.initialized = false;
|
|
4721
|
-
await
|
|
4722
|
+
await whenConnected;
|
|
4722
4723
|
__privateMethod(this, _NotebookInstance_instances, init_fn).call(this);
|
|
4723
4724
|
return this.ready().then(() => this);
|
|
4724
4725
|
}
|