Rename ui_text_field crate to ui_input (#13949)

This PR renames the `ui_text_field` crate to `ui_input` to make it a bit
more generic.

We'll likely end up with multiple kinds of input components in this
crate.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-08 17:05:30 -04:00 committed by GitHub
parent 1a0242eff7
commit 2925f3d33c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 8 additions and 8 deletions

View file

@ -31,7 +31,7 @@ smol.workspace = true
task.workspace = true
terminal_view.workspace = true
ui.workspace = true
ui_text_field.workspace = true
ui_input.workspace = true
util.workspace = true
workspace.workspace = true

View file

@ -31,7 +31,7 @@ use ui::{
prelude::*, Indicator, List, ListHeader, ListItem, Modal, ModalFooter, ModalHeader,
RadioWithLabel, Tooltip,
};
use ui_text_field::{FieldLabelLayout, TextField};
use ui_input::{FieldLabelLayout, TextField};
use util::ResultExt;
use workspace::{notifications::DetachAndPromptErr, AppState, ModalView, Workspace, WORKSPACE_DB};