gpui-component/crates/ui/src/input/mod.rs
Jason Lee 8a3ef51ea1
input: Add to support search and replace. (#1252)
<img width="806" height="765" alt="image"
src="https://github.com/user-attachments/assets/5e2a7144-f814-4874-b9c1-89ebf5d942ec"
/>

- Close #1212 to support search for Input.
- Fix #1235 to support scroll to cursor when go to line.
2025-09-17 19:02:00 +08:00

28 lines
525 B
Rust

mod blink_cursor;
mod change;
mod clear_button;
mod cursor;
mod element;
mod lsp;
mod mask_pattern;
mod mode;
mod number_input;
mod otp_input;
mod popovers;
mod rope_ext;
mod search;
mod state;
mod text_input;
mod text_wrapper;
pub(crate) use clear_button::*;
pub use cursor::*;
pub use lsp::*;
pub use mask_pattern::MaskPattern;
pub use mode::TabSize;
pub use number_input::{NumberInput, NumberInputEvent, StepAction};
pub use otp_input::*;
pub use rope::Rope;
pub use rope_ext::*;
pub use state::*;
pub use text_input::*;