-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvement: multi-column in app view, docs, GA (#3454)
![Screenshot 2025-01-15 at 4 25 37 PM](https://github.com/user-attachments/assets/c1dc9740-0a4e-4dba-9b8c-82f543515021) ![docs-multi-column](https://github.com/user-attachments/assets/86faaa61-4fc4-47aa-926a-80c3e74b644e) - multi-column in app view (its basic, same width, no background color) - docs on app widths - remove feature flag
- Loading branch information
Showing
8 changed files
with
93 additions
and
70 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
/* Copyright 2024 Marimo. All rights reserved. */ | ||
import { getFeatureFlag } from "./feature-flag"; | ||
|
||
export function getAppWidths() { | ||
return getFeatureFlag("multi_column") | ||
? (["compact", "medium", "full", "columns"] as const) | ||
: (["compact", "medium", "full"] as const); | ||
return ["compact", "medium", "full", "columns"] as const; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters