@marimo-team/frontend 0.19.3-dev35 → 0.19.3-dev39
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/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-DTpgS0Hi.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">
|
package/package.json
CHANGED
|
@@ -202,6 +202,8 @@ export const DataFrameComponent = memo(
|
|
|
202
202
|
sql_code,
|
|
203
203
|
} = data || {};
|
|
204
204
|
|
|
205
|
+
const totalColumns = field_types?.length;
|
|
206
|
+
|
|
205
207
|
const [internalValue, setInternalValue] = useState<Transformations>(
|
|
206
208
|
value || EMPTY,
|
|
207
209
|
);
|
|
@@ -317,7 +319,7 @@ export const DataFrameComponent = memo(
|
|
|
317
319
|
data={url || ""}
|
|
318
320
|
hasStableRowId={false}
|
|
319
321
|
totalRows={total_rows ?? 0}
|
|
320
|
-
totalColumns={
|
|
322
|
+
totalColumns={totalColumns ?? 0}
|
|
321
323
|
maxColumns="all"
|
|
322
324
|
pageSize={pageSize}
|
|
323
325
|
pagination={true}
|