@marimo-team/islands 0.19.5-dev14 → 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/package.json
CHANGED
|
@@ -993,7 +993,7 @@ export const UserConfigForm: React.FC = () => {
|
|
|
993
993
|
<br />
|
|
994
994
|
<br />
|
|
995
995
|
Running marimo in a{" "}
|
|
996
|
-
<ExternalLink href="https://docs.marimo.io/guides/
|
|
996
|
+
<ExternalLink href="https://docs.marimo.io/guides/package_management/inlining_dependencies.html">
|
|
997
997
|
sandboxed environment
|
|
998
998
|
</ExternalLink>{" "}
|
|
999
999
|
is only supported by <Kbd className="inline">uv</Kbd>
|
|
@@ -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>
|