@marimo-team/frontend 0.19.5-dev15 → 0.19.5-dev16

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-CNHmYLJM.js"></script>
69
+ <script type="module" crossorigin src="./assets/index-CLIGiIEq.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-D7oNaQH0.css">
260
+ <link rel="stylesheet" crossorigin href="./assets/index-BI9O54ok.css">
261
261
  </head>
262
262
  <body>
263
263
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/frontend",
3
- "version": "0.19.5-dev15",
3
+ "version": "0.19.5-dev16",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -54,9 +54,7 @@ export const Controls = ({
54
54
  onRun,
55
55
  connectionState,
56
56
  running,
57
- appConfig,
58
57
  }: ControlsProps): JSX.Element => {
59
- const appWidth = appConfig.width;
60
58
  const undoAvailable = useAtomValue(canUndoDeletesAtom);
61
59
  const needsRun = useAtomValue(needsRunAtom);
62
60
  const { undoDeleteCell } = useCellActions();
@@ -103,12 +101,7 @@ export const Controls = ({
103
101
  </div>
104
102
  )}
105
103
 
106
- <div
107
- className={cn(
108
- bottomRightControls,
109
- appWidth === "compact" && "xl:flex-row items-end",
110
- )}
111
- >
104
+ <div className={cn(bottomRightControls)}>
112
105
  <HideInKioskMode>
113
106
  <SaveComponent kioskMode={false} />
114
107
  </HideInKioskMode>