@marimo-team/frontend 0.19.10-dev39 → 0.19.10-dev40
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/assets/{edit-page-Cxg7v5-V.js → edit-page-CI1wrWLw.js} +6 -6
- package/dist/assets/index-DG3GipFF.css +2 -0
- package/dist/assets/{index-B43TGwHL.js → index-OSsO2iNY.js} +2 -2
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/components/editor/chrome/wrapper/app-chrome.tsx +2 -1
- package/dist/assets/index-CeUwN_0i.css +0 -2
package/dist/index.html
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<marimo-server-token data-token="{{ server_token }}" hidden></marimo-server-token>
|
|
67
67
|
<!-- /TODO -->
|
|
68
68
|
<title>{{ title }}</title>
|
|
69
|
-
<script type="module" crossorigin src="./assets/index-
|
|
69
|
+
<script type="module" crossorigin src="./assets/index-OSsO2iNY.js"></script>
|
|
70
70
|
<link rel="modulepreload" crossorigin href="./assets/preload-helper-D2MJg03u.js">
|
|
71
71
|
<link rel="modulepreload" crossorigin href="./assets/clsx-D8GwTfvk.js">
|
|
72
72
|
<link rel="modulepreload" crossorigin href="./assets/cn-BKtXLv3a.js">
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
<link rel="stylesheet" crossorigin href="./assets/cells-jmgGt1lS.css">
|
|
257
257
|
<link rel="stylesheet" crossorigin href="./assets/markdown-renderer-DdDKmWlR.css">
|
|
258
258
|
<link rel="stylesheet" crossorigin href="./assets/JsonOutput-B7vuddcd.css">
|
|
259
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
259
|
+
<link rel="stylesheet" crossorigin href="./assets/index-DG3GipFF.css">
|
|
260
260
|
</head>
|
|
261
261
|
<body>
|
|
262
262
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -228,6 +228,7 @@ export const AppChrome: React.FC<PropsWithChildren> = ({ children }) => {
|
|
|
228
228
|
<PanelResizeHandle
|
|
229
229
|
disabled={!isSidebarOpen}
|
|
230
230
|
onDragging={handleDragging}
|
|
231
|
+
hitAreaMargins={{ coarse: 15, fine: 2 }}
|
|
231
232
|
className={cn(
|
|
232
233
|
"border-border print:hidden z-10",
|
|
233
234
|
isSidebarOpen ? "resize-handle" : "resize-handle-collapsed",
|
|
@@ -283,7 +284,7 @@ export const AppChrome: React.FC<PropsWithChildren> = ({ children }) => {
|
|
|
283
284
|
const helpPaneBody = (
|
|
284
285
|
<ErrorBoundary>
|
|
285
286
|
<PanelSectionProvider value="sidebar">
|
|
286
|
-
<div className="flex flex-col h-full flex-1 overflow-hidden
|
|
287
|
+
<div className="flex flex-col h-full flex-1 overflow-hidden">
|
|
287
288
|
<div className="p-3 border-b flex justify-between items-center">
|
|
288
289
|
{selectedPanel === "dependencies" ? (
|
|
289
290
|
<div className="flex items-center justify-between flex-1">
|