@marimo-team/islands 0.19.7-dev21 → 0.19.7-dev23
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
CHANGED
|
@@ -72913,7 +72913,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
72913
72913
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
72914
72914
|
}
|
|
72915
72915
|
}
|
|
72916
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.7-
|
|
72916
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.7-dev23"), showCodeInRunModeAtom = atom(true);
|
|
72917
72917
|
atom(null);
|
|
72918
72918
|
var import_compiler_runtime$89 = require_compiler_runtime();
|
|
72919
72919
|
function useKeydownOnElement(e, r) {
|
package/package.json
CHANGED
|
@@ -35,14 +35,12 @@ const LogsPanel: React.FC = () => {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
return (
|
|
38
|
-
|
|
38
|
+
<div className="flex flex-col h-full overflow-auto">
|
|
39
39
|
<div className="flex flex-row justify-start px-2 py-1">
|
|
40
40
|
<ClearButton dataTestId="clear-logs-button" onClick={clearLogs} />
|
|
41
41
|
</div>
|
|
42
|
-
<
|
|
43
|
-
|
|
44
|
-
</div>
|
|
45
|
-
</>
|
|
42
|
+
<LogViewer logs={logs} className="min-w-[300px]" />
|
|
43
|
+
</div>
|
|
46
44
|
);
|
|
47
45
|
};
|
|
48
46
|
|