Files
ERitors-Scribe-Desktop/src-tauri/src/domains/mod.rs
natreex d4765e6576 Add foundational components and logic for migration, UI design, and input handling
- Introduced foundational UI components (`Badge`, `LockCard`, `SectionHeader`, `AvatarIcon`, etc.) for flexible layouts and consistent design.
- Added migration support with the `MigrationModal` component and backend integration for exporting/importing data between Electron and Tauri.
- Extended form components with `TextAreaInput`, `OrderInput`, `ToggleField`, and `ToolbarSelect` for improved input handling.
- Updated `ScribeShell` with migration popup logic to prompt users for data migration.
- Integrated `AlertStack` for better alert handling and notification management.
- Enhanced Rust/Tauri services with migration command implementations.
- Added translations and styles for new components.
2026-04-05 12:52:54 -04:00

29 lines
534 B
Rust

pub mod act;
pub mod book;
pub mod chapter;
pub mod chapter_content;
pub mod character;
pub mod cover;
pub mod download;
pub mod export;
pub mod guideline;
pub mod incident;
pub mod offline;
pub mod issue;
pub mod location;
pub mod migration;
pub mod plotpoint;
pub mod series;
pub mod series_character;
pub mod series_location;
pub mod series_spell;
pub mod series_sync;
pub mod series_world;
pub mod spell;
pub mod spell_tag;
pub mod sync;
pub mod tombstone;
pub mod upload;
pub mod user;
pub mod world;