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
+2 -2
View File
@@ -1,8 +1,8 @@
use warp_core::ui::theme::Fill;
use warpui_core::{Action, AppContext, Element};
use ordered_float::OrderedFloat;
use warp_core::ui::appearance::Appearance;
use warp_core::ui::theme::Fill;
use warpui_core::fonts::FamilyId;
use warpui_core::{Action, AppContext, Element};
use super::result_renderer::ItemHighlightState;
+2 -2
View File
@@ -7,11 +7,11 @@ use std::time::Duration;
use async_channel::Sender;
use async_trait::async_trait;
use futures_util::stream::AbortHandle;
use warpui_core::r#async::Timer;
use warpui_core::{Action, AppContext, Entity, ModelContext};
use itertools::Itertools;
use warp_core::r#async::debounce;
use warp_core::send_telemetry_from_ctx;
use warpui_core::r#async::Timer;
use warpui_core::{Action, AppContext, Entity, ModelContext};
use super::data_source::{Query, QueryFilter, QueryResult};
use crate::telemetry::TelemetryEvent;
+1 -2
View File
@@ -8,7 +8,6 @@ use std::time::Duration;
use anyhow::Context;
use futures::FutureExt as _;
use warpui_core::r#async::{block_on, executor::Background, Timer};
use instant::Instant;
use itertools::Itertools;
use parking_lot::{Mutex, RwLock};
@@ -592,7 +591,7 @@ impl SearcherWriterWrapper {
.iter()
.filter(|(name, _)| self.id_field_names.contains(*name))
.collect();
id_pairs.sort_by(|(a, _), (b, _)| a.cmp(b));
id_pairs.sort_by_key(|(a, _)| *a);
let mut hasher = Sha256::new();
// Add each field-value pair to the hasher in sorted order