proper scroll behaviour on the page now

This commit is contained in:
filipriec
2025-04-17 23:37:58 +02:00
parent 75af0c3be1
commit f22dd7749f
3 changed files with 163 additions and 111 deletions

View File

@@ -12,6 +12,7 @@ pub struct ColumnDefinition {
pub struct LinkDefinition {
pub linked_table_name: String,
pub is_required: bool,
pub selected: bool,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
@@ -25,6 +26,10 @@ pub enum AddTableFocus {
ColumnsTable,
IndexesTable,
LinksTable,
// Inside Tables (Scrolling Focus)
InsideColumnsTable,
InsideIndexesTable,
InsideLinksTable,
// Buttons
SaveButton,
DeleteSelectedButton,