dioxus-element-plug 0.1.4

Element UI components for Dioxus applications with pure Rust styling system
//! # Component CSS Class Constants
//!
//! This module contains CSS class constants for Element Plus components 
//! that are not yet split into individual component files.
//!
//! Note: Core component classes like Button, Input, Layout, Form, Alert, Card, and Table
//! have been moved to their respective component files for better organization.

// Common status classes
pub const IS_ACTIVE: &str = "is-active";
pub const IS_FOCUS: &str = "is-focus";

// Component classes for less commonly used components
pub const AFFIX: &str = "el-affix";
pub const ANCHOR: &str = "el-anchor";
pub const ANCHOR_LINK: &str = "el-anchor-link";
pub const AUTOCOMPLETE: &str = "el-autocomplete";
pub const AVATAR: &str = "el-avatar";
pub const AVATAR_GROUP: &str = "el-avatar-group";
pub const BACKTOP: &str = "el-backtop";
pub const BADGE: &str = "el-badge";
pub const BREADCRUMB: &str = "el-breadcrumb";
pub const BREADCRUMB_ITEM: &str = "el-breadcrumb-item";
pub const BUTTON_GROUP: &str = "el-button-group";
pub const CALENDAR: &str = "el-calendar";
pub const CAROUSEL: &str = "el-carousel";
pub const CAROUSEL_ITEM: &str = "el-carousel-item";
pub const CASCADER: &str = "el-cascader";
pub const CASCADER_PANEL: &str = "el-cascader-panel";
pub const CHECKBOX_BUTTON: &str = "el-checkbox-button";
pub const CHECKBOX_GROUP: &str = "el-checkbox-group";
pub const CHECK_TAG: &str = "el-check-tag";
pub const COLLAPSE: &str = "el-collapse";
pub const COLLAPSE_ITEM: &str = "el-collapse-item";
pub const COLLAPSE_TRANSITION: &str = "el-collapse-transition";
pub const COLOR_PICKER: &str = "el-color-picker";
pub const COLOR_PICKER_PANEL: &str = "el-color-picker-panel";
pub const CONFIG_PROVIDER: &str = "el-config-provider";
pub const DATE_PICKER: &str = "el-date-picker";
pub const DATE_PICKER_PANEL: &str = "el-date-picker-panel";
pub const DESCRIPTIONS: &str = "el-descriptions";
pub const DESCRIPTIONS_ITEM: &str = "el-descriptions-item";
pub const DIALOG: &str = "el-dialog";
pub const DISPLAY: &str = "el-display";
pub const DIVIDER: &str = "el-divider";
pub const DRAWER: &str = "el-drawer";
pub const DROPDOWN: &str = "el-dropdown";
pub const DROPDOWN_ITEM: &str = "el-dropdown-item";
pub const DROPDOWN_MENU: &str = "el-dropdown-menu";
pub const EMPTY: &str = "el-empty";
pub const ICON: &str = "el-icon";
pub const IMAGE: &str = "el-image";
pub const IMAGE_VIEWER: &str = "el-image-viewer";
pub const INFINITE_SCROLL: &str = "el-infinite-scroll";
pub const INPUT_NUMBER: &str = "el-input-number";
pub const INPUT_OTP: &str = "el-input-otp";
pub const INPUT_TAG: &str = "el-input-tag";
pub const LINK: &str = "el-link";
pub const LOADING: &str = "el-loading";
pub const MENU: &str = "el-menu";
pub const MENU_ITEM: &str = "el-menu-item";
pub const MENU_ITEM_GROUP: &str = "el-menu-item-group";
pub const MENTION: &str = "el-mention";
pub const OPTION: &str = "el-option";
pub const OPTION_GROUP: &str = "el-option-group";
pub const OVERLAY: &str = "el-overlay";
pub const PAGINATION: &str = "el-pagination";
pub const PAGE_HEADER: &str = "el-page-header";
pub const POPCONFIRM: &str = "el-popconfirm";
pub const POPOVER: &str = "el-popover";
pub const POPPER: &str = "el-popper";
pub const PROGRESS: &str = "el-progress";
pub const RADIO_BUTTON: &str = "el-radio-button";
pub const RADIO_GROUP: &str = "el-radio-group";
pub const RATE: &str = "el-rate";
pub const RESET: &str = "el-reset";
pub const RESULT: &str = "el-result";
pub const SCROLLBAR: &str = "el-scrollbar";
pub const SEGMENTED: &str = "el-segmented";
pub const SELECT_DROPDOWN: &str = "el-select-dropdown";
pub const SKELETON: &str = "el-skeleton";
pub const SKELETON_ITEM: &str = "el-skeleton-item";
pub const SPACE: &str = "el-space";
pub const SPINNER: &str = "el-spinner";
pub const SPLITTER: &str = "el-splitter";
pub const SPLITTER_PANEL: &str = "el-splitter-panel";
pub const STATISTIC: &str = "el-statistic";
pub const STEP: &str = "el-step";
pub const STEPS: &str = "el-steps";
pub const SUB_MENU: &str = "el-sub-menu";
pub const SWITCH: &str = "el-switch";
pub const TABLE_COLUMN: &str = "el-table-column";
pub const TABS: &str = "el-tabs";
pub const TAB_PANE: &str = "el-tab-pane";
pub const TAG: &str = "el-tag";
pub const TEXT: &str = "el-text";
pub const TIME_PICKER: &str = "el-time-picker";
pub const TIME_SELECT: &str = "el-time-select";
pub const TIMELINE: &str = "el-timeline";
pub const TIMELINE_ITEM: &str = "el-timeline-item";
pub const TOUR: &str = "el-tour";
pub const TRANSFER: &str = "el-transfer";
pub const TREE: &str = "el-tree";
pub const TREE_SELECT: &str = "el-tree-select";
pub const UPLOAD: &str = "el-upload";
pub const VIRTUAL_LIST: &str = "el-virtual-list";