Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
@@ -2,7 +2,7 @@ use crate::external_secrets::ExternalSecret;
use crate::search::data_source::{Query, QueryResult};
use crate::search::mixer::{DataSourceRunErrorWrapper, SyncDataSource};
use itertools::Itertools;
use warpui::AppContext;
use galaxyui::AppContext;
use super::external_secret_fuzzy_match::FuzzyMatchExternalSecretResult;
use super::external_secret_search_item::ExternalSecretSearchItem;
@@ -1,5 +1,5 @@
use ordered_float::OrderedFloat;
use warpui::{
use galaxyui::{
elements::{ConstrainedBox, Container, Highlight, Text},
fonts::{Properties, Weight},
AppContext, Element, SingletonEntity,
@@ -38,7 +38,7 @@ impl SearchItem for ExternalSecretSearchItem {
ConstrainedBox::new(
self.external_secret
.icon()
.to_warpui_icon(appearance.theme().active_ui_text_color())
.to_galaxyui_icon(appearance.theme().active_ui_text_color())
.finish(),
)
.with_width(ICON_SIZE)
+2 -2
View File
@@ -2,7 +2,7 @@ use itertools::Itertools;
use lazy_static::lazy_static;
use std::{collections::HashSet, ops::Range};
use warpui::{
use galaxyui::{
elements::{
Align, ConstrainedBox, Container, CornerRadius, Dismiss, Empty, Fill, Flex, ParentElement,
Radius, SavePosition, ScrollStateHandle, Scrollable, ScrollableElement, Shrinkable,
@@ -367,7 +367,7 @@ impl TypedActionView for ExternalSecretsMenu {
pub mod styles {
use pathfinder_color::ColorU;
use warpui::elements::{Border, DropShadow, ScrollbarWidth};
use galaxyui::elements::{Border, DropShadow, ScrollbarWidth};
use crate::{appearance::Appearance, themes::theme::Fill};