@marimo-team/islands 0.19.5-dev15 → 0.19.5-dev17
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/package.json
CHANGED
|
@@ -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>
|