kael_ui 0.2.0

Professional shadcn-inspired UI component library for Kael. 100+ accessible components for building beautiful, performant desktop applications.
//! Overlay components module.

pub mod alert_dialog;
pub mod bottom_sheet;
pub mod command_palette;
pub mod context_menu;
pub mod dialog;
pub mod hover_card;
pub mod popover;
pub mod popover_menu;
pub mod sheet;
pub mod toast;

pub use alert_dialog::{init_alert_dialog, AlertDialog};
pub use bottom_sheet::{BottomSheet, BottomSheetSize};
pub use command_palette::{
    CloseCommand, Command, CommandPalette, CommandPaletteState, NavigateDown, NavigateUp,
    SelectCommand,
};
pub use context_menu::{ContextMenu, ContextMenuItem};
pub use dialog::{init_dialog, Dialog, DialogSize};
pub use hover_card::{HoverCard, HoverCardAlignment, HoverCardPosition};
pub use popover_menu::{PopoverMenu, PopoverMenuItem};
pub use sheet::{init_sheet, Sheet, SheetSide, SheetSize};