@marimo-team/islands 0.19.3-dev6 → 0.19.3-dev8
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/main.js +3 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/editor/KernelStartupErrorModal.tsx +101 -0
- package/src/core/MarimoApp.tsx +2 -0
- package/src/core/errors/state.ts +7 -1
- package/src/core/islands/main.ts +2 -0
- package/src/core/websocket/types.ts +1 -0
- package/src/core/websocket/useMarimoKernelConnection.tsx +18 -1
package/dist/main.js
CHANGED
|
@@ -101068,7 +101068,7 @@ Defaulting to \`null\`.`;
|
|
|
101068
101068
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
101069
101069
|
}
|
|
101070
101070
|
}
|
|
101071
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.3-
|
|
101071
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.3-dev8"), showCodeInRunModeAtom = atom(true);
|
|
101072
101072
|
atom(null);
|
|
101073
101073
|
var VIRTUAL_FILE_REGEX = /\/@file\/([^\s"&'/]+)\.([\dA-Za-z]+)/g, VirtualFileTracker = class e {
|
|
101074
101074
|
constructor() {
|
|
@@ -102363,6 +102363,8 @@ ${r}
|
|
|
102363
102363
|
return;
|
|
102364
102364
|
case "cache-info":
|
|
102365
102365
|
return;
|
|
102366
|
+
case "kernel-startup-error":
|
|
102367
|
+
return;
|
|
102366
102368
|
default:
|
|
102367
102369
|
logNever(c.data);
|
|
102368
102370
|
}
|