Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
@@ -5,7 +5,7 @@ use crate::app_state::{
AppState, BranchSnapshot, LeafContents, LeafSnapshot, NotebookPaneSnapshot, PaneFlex,
PaneNodeSnapshot, SplitDirection, TabSnapshot, TerminalPaneSnapshot, WindowSnapshot,
};
use crate::drive::OpenWarpDriveObjectSettings;
use crate::drive::OpenGalaxyDriveObjectSettings;
use crate::tab::SelectedTabColor;
fn single_tab_snapshot(root: PaneNodeSnapshot) -> AppState {
+17 -1
View File
@@ -1,3 +1,19 @@
use galaxy_core::paths::home_relative_path;
use galaxy_core::ui::theme::Fill;
use galaxyui::accessibility::{AccessibilityContent, GalaxyA11yRole};
use galaxyui::elements::{
Align, Border, ChildAnchor, Clipped, ConstrainedBox, Container, CornerRadius, Empty, Flex,
FormattedTextElement, MouseStateHandle, OffsetPositioning, ParentAnchor, ParentElement,
ParentOffsetBounds, Radius, SavePosition, Shrinkable, Stack, Text,
};
use galaxyui::keymap::FixedBinding;
use galaxyui::presenter::ChildView;
use galaxyui::ui_components::button::{Button, ButtonVariant};
use galaxyui::ui_components::components::{Coords, UiComponent, UiComponentStyles};
use galaxyui::{
AppContext, Element, Entity, FocusContext, ModelContext, ModelHandle, SingletonEntity,
TypedActionView, View, ViewContext, ViewHandle,
};
use markdown_parser::{
FormattedText, FormattedTextFragment, FormattedTextInline, FormattedTextLine,
};
@@ -14,7 +30,7 @@ use crate::send_telemetry_from_ctx;
use crate::server::telemetry::TelemetryEvent;
use crate::user_config::launch_configs_dir;
#[cfg(feature = "local_fs")]
use crate::user_config::{util::file_name_to_human_readable_name, WarpConfig};
use crate::user_config::{util::file_name_to_human_readable_name, GalaxyConfig};
use crate::util::bindings::keybinding_name_to_display_string;
#[cfg(feature = "local_fs")]
use crate::util::openable_file_type::FileTarget;