//! # Z-Index System
//!
//! Z-index management for Element Plus components.
/// Z-index levels
pub const INDEX_AUTO: &str = "auto";
pub const INDEX_BASE: &str = "100";
pub const INDEX_NORMAL: &str = "2000";
pub const INDEX_OVERLAY: &str = "2001";
pub const INDEX_POPUP: &str = "2002";
pub const INDEX_MESSAGE: &str = "9999";
pub const INDEX_TOP: &str = "10000";