// src/editor/mod.rs //! Editor submodule exports. //! //! This module exposes the internal editor pieces (core, editing, movement, //! navigation, mode, and optional features like suggestions, validation, and //! computed field helpers). Only module declarations and re-exports live here. pub mod core; pub mod display; pub mod editing; pub mod movement; pub mod navigation; pub mod mode; #[cfg(feature = "suggestions")] pub mod suggestions; #[cfg(feature = "validation")] pub mod validation_helpers; #[cfg(feature = "computed")] pub mod computed_helpers; #[cfg(feature = "keymap")] pub mod key_input; // Re-export the main type pub use core::FormEditor;