@marimo-team/frontend 0.18.5-dev194 → 0.18.5-dev198
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/{glide-data-editor-DqvrqciP.js → glide-data-editor-Brckuic5.js} +1 -1
- package/dist/assets/{index-CRAfQZSQ.js → index-BbKR2dcf.js} +2 -2
- package/dist/assets/{index-CoU35QpZ.css → index-DKHp2cKJ.css} +1 -1
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/css/app/Cell.css +4 -0
- package/src/plugins/impl/data-editor/glide-data-editor.tsx +1 -0
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-BbKR2dcf.js"></script>
|
|
70
70
|
<link rel="modulepreload" crossorigin href="./assets/preload-helper-BW0IMuFq.js">
|
|
71
71
|
<link rel="modulepreload" crossorigin href="./assets/hotkeys-uKX61F1_.js">
|
|
72
72
|
<link rel="modulepreload" crossorigin href="./assets/defaultLocale-BLUna9fQ.js">
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
<link rel="stylesheet" crossorigin href="./assets/cells-jmgGt1lS.css">
|
|
258
258
|
<link rel="stylesheet" crossorigin href="./assets/markdown-renderer-DdDKmWlR.css">
|
|
259
259
|
<link rel="stylesheet" crossorigin href="./assets/JsonOutput-B7vuddcd.css">
|
|
260
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
260
|
+
<link rel="stylesheet" crossorigin href="./assets/index-DKHp2cKJ.css">
|
|
261
261
|
</head>
|
|
262
262
|
<body>
|
|
263
263
|
<div id="root"></div>
|
package/package.json
CHANGED
package/src/css/app/Cell.css
CHANGED
|
@@ -616,6 +616,7 @@ export const GlideDataEditor = <T,>({
|
|
|
616
616
|
allowedFillDirections="vertical" // We can support all directions, but we need to handle datatype logic
|
|
617
617
|
onKeyDown={onKeyDown}
|
|
618
618
|
height={data.length > 10 ? 450 : undefined}
|
|
619
|
+
width={"100%"}
|
|
619
620
|
rowMarkers={{
|
|
620
621
|
kind: "both",
|
|
621
622
|
}}
|