Skip to main content

dioxus_element_plug/styles/
component_classes.rs

1//! # Component CSS Class Constants
2//!
3//! This module contains CSS class constants for Element Plus components 
4//! that are not yet split into individual component files.
5//!
6//! Note: Core component classes like Button, Input, Layout, Form, Alert, Card, and Table
7//! have been moved to their respective component files for better organization.
8
9// Common status classes
10pub const IS_ACTIVE: &str = "is-active";
11pub const IS_FOCUS: &str = "is-focus";
12
13// Component classes for less commonly used components
14pub const AFFIX: &str = "el-affix";
15pub const ANCHOR: &str = "el-anchor";
16pub const ANCHOR_LINK: &str = "el-anchor-link";
17pub const AUTOCOMPLETE: &str = "el-autocomplete";
18pub const AVATAR: &str = "el-avatar";
19pub const AVATAR_GROUP: &str = "el-avatar-group";
20pub const BACKTOP: &str = "el-backtop";
21pub const BADGE: &str = "el-badge";
22pub const BREADCRUMB: &str = "el-breadcrumb";
23pub const BREADCRUMB_ITEM: &str = "el-breadcrumb-item";
24pub const BUTTON_GROUP: &str = "el-button-group";
25pub const CALENDAR: &str = "el-calendar";
26pub const CAROUSEL: &str = "el-carousel";
27pub const CAROUSEL_ITEM: &str = "el-carousel-item";
28pub const CASCADER: &str = "el-cascader";
29pub const CASCADER_PANEL: &str = "el-cascader-panel";
30pub const CHECKBOX_BUTTON: &str = "el-checkbox-button";
31pub const CHECKBOX_GROUP: &str = "el-checkbox-group";
32pub const CHECK_TAG: &str = "el-check-tag";
33pub const COLLAPSE: &str = "el-collapse";
34pub const COLLAPSE_ITEM: &str = "el-collapse-item";
35pub const COLLAPSE_TRANSITION: &str = "el-collapse-transition";
36pub const COLOR_PICKER: &str = "el-color-picker";
37pub const COLOR_PICKER_PANEL: &str = "el-color-picker-panel";
38pub const CONFIG_PROVIDER: &str = "el-config-provider";
39pub const DATE_PICKER: &str = "el-date-picker";
40pub const DATE_PICKER_PANEL: &str = "el-date-picker-panel";
41pub const DESCRIPTIONS: &str = "el-descriptions";
42pub const DESCRIPTIONS_ITEM: &str = "el-descriptions-item";
43pub const DIALOG: &str = "el-dialog";
44pub const DISPLAY: &str = "el-display";
45pub const DIVIDER: &str = "el-divider";
46pub const DRAWER: &str = "el-drawer";
47pub const DROPDOWN: &str = "el-dropdown";
48pub const DROPDOWN_ITEM: &str = "el-dropdown-item";
49pub const DROPDOWN_MENU: &str = "el-dropdown-menu";
50pub const EMPTY: &str = "el-empty";
51pub const ICON: &str = "el-icon";
52pub const IMAGE: &str = "el-image";
53pub const IMAGE_VIEWER: &str = "el-image-viewer";
54pub const INFINITE_SCROLL: &str = "el-infinite-scroll";
55pub const INPUT_NUMBER: &str = "el-input-number";
56pub const INPUT_OTP: &str = "el-input-otp";
57pub const INPUT_TAG: &str = "el-input-tag";
58pub const LINK: &str = "el-link";
59pub const LOADING: &str = "el-loading";
60pub const MENU: &str = "el-menu";
61pub const MENU_ITEM: &str = "el-menu-item";
62pub const MENU_ITEM_GROUP: &str = "el-menu-item-group";
63pub const MENTION: &str = "el-mention";
64pub const OPTION: &str = "el-option";
65pub const OPTION_GROUP: &str = "el-option-group";
66pub const OVERLAY: &str = "el-overlay";
67pub const PAGINATION: &str = "el-pagination";
68pub const PAGE_HEADER: &str = "el-page-header";
69pub const POPCONFIRM: &str = "el-popconfirm";
70pub const POPOVER: &str = "el-popover";
71pub const POPPER: &str = "el-popper";
72pub const PROGRESS: &str = "el-progress";
73pub const RADIO_BUTTON: &str = "el-radio-button";
74pub const RADIO_GROUP: &str = "el-radio-group";
75pub const RATE: &str = "el-rate";
76pub const RESET: &str = "el-reset";
77pub const RESULT: &str = "el-result";
78pub const SCROLLBAR: &str = "el-scrollbar";
79pub const SEGMENTED: &str = "el-segmented";
80pub const SELECT_DROPDOWN: &str = "el-select-dropdown";
81pub const SKELETON: &str = "el-skeleton";
82pub const SKELETON_ITEM: &str = "el-skeleton-item";
83pub const SPACE: &str = "el-space";
84pub const SPINNER: &str = "el-spinner";
85pub const SPLITTER: &str = "el-splitter";
86pub const SPLITTER_PANEL: &str = "el-splitter-panel";
87pub const STATISTIC: &str = "el-statistic";
88pub const STEP: &str = "el-step";
89pub const STEPS: &str = "el-steps";
90pub const SUB_MENU: &str = "el-sub-menu";
91pub const SWITCH: &str = "el-switch";
92pub const TABLE_COLUMN: &str = "el-table-column";
93pub const TABS: &str = "el-tabs";
94pub const TAB_PANE: &str = "el-tab-pane";
95pub const TAG: &str = "el-tag";
96pub const TEXT: &str = "el-text";
97pub const TIME_PICKER: &str = "el-time-picker";
98pub const TIME_SELECT: &str = "el-time-select";
99pub const TIMELINE: &str = "el-timeline";
100pub const TIMELINE_ITEM: &str = "el-timeline-item";
101pub const TOUR: &str = "el-tour";
102pub const TRANSFER: &str = "el-transfer";
103pub const TREE: &str = "el-tree";
104pub const TREE_SELECT: &str = "el-tree-select";
105pub const UPLOAD: &str = "el-upload";
106pub const VIRTUAL_LIST: &str = "el-virtual-list";