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:
@@ -10,6 +10,7 @@ pub mod session_config_rendering;
|
||||
pub mod tab_config;
|
||||
pub mod telemetry;
|
||||
|
||||
use galaxy_core::ui::theme::Fill;
|
||||
pub use new_worktree_modal::{NewWorktreeModal, NewWorktreeModalEvent};
|
||||
pub use params_modal::{TabConfigParamsModal, TabConfigParamsModalEvent};
|
||||
#[cfg(feature = "local_fs")]
|
||||
@@ -17,7 +18,6 @@ pub(crate) use tab_config::build_worktree_config_toml;
|
||||
pub use tab_config::{
|
||||
render_tab_config, TabConfig, TabConfigError, TabConfigParam, TabConfigParamType,
|
||||
};
|
||||
use galaxy_core::ui::theme::Fill;
|
||||
|
||||
/// Optional visual overrides for BranchPicker / RepoPicker dropdowns.
|
||||
pub struct PickerStyle {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
use pathfinder_geometry::vector::vec2f;
|
||||
use galaxy_core::ui::theme::Fill;
|
||||
use galaxyui::elements::{
|
||||
Align, ChildAnchor, ChildView, Container, OffsetPositioning, ParentAnchor, ParentOffsetBounds,
|
||||
@@ -11,6 +10,7 @@ use galaxyui::ui_components::components::{UiComponent, UiComponentStyles};
|
||||
use galaxyui::{
|
||||
AppContext, Element, Entity, SingletonEntity, TypedActionView, View, ViewContext, ViewHandle,
|
||||
};
|
||||
use pathfinder_geometry::vector::vec2f;
|
||||
|
||||
use crate::appearance::Appearance;
|
||||
use crate::ui_components::dialog::{dialog_styles, Dialog};
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
use std::path::Path;
|
||||
use std::sync::Arc;
|
||||
|
||||
use pathfinder_color::ColorU;
|
||||
use pathfinder_geometry::vector::vec2f;
|
||||
use galaxy_core::ui::theme::{Fill, WarpTheme};
|
||||
use galaxy_core::ui::theme::{Fill, GalaxyTheme};
|
||||
use galaxyui::elements::{
|
||||
Border, ChildAnchor, ConstrainedBox, Container, CornerRadius, CrossAxisAlignment, Expanded,
|
||||
Flex, Hoverable, MainAxisAlignment, MainAxisSize, MouseStateHandle, OffsetPositioning,
|
||||
@@ -14,6 +12,8 @@ use galaxyui::geometry::vector::Vector2F;
|
||||
use galaxyui::platform::Cursor;
|
||||
use galaxyui::ui_components::components::UiComponent;
|
||||
use galaxyui::{Element, EventContext};
|
||||
use pathfinder_color::ColorU;
|
||||
use pathfinder_geometry::vector::vec2f;
|
||||
|
||||
use crate::appearance::Appearance;
|
||||
use crate::tab_configs::session_config::SessionType;
|
||||
|
||||
Reference in New Issue
Block a user