Skip to main content

dioxus_element_plug/components/
mod.rs

1//! Component modules for Element Plus Dioxus integration
2//! Auto-generated module declarations
3
4#![allow(unused_imports)] // Glob re-exports may overlap with parent module re-exports
5
6// Layout Components
7pub mod layout;
8
9// Basic UI Components
10pub mod alert;
11pub mod autocomplete;
12pub mod avatar;
13pub mod avatar_group;
14pub mod backtop;
15pub mod badge;
16pub mod breadcrumb;
17pub mod breadcrumb_item;
18pub mod button;
19pub mod button_group;
20pub mod calendar;
21pub mod card;
22pub mod carousel;
23pub mod carousel_item;
24pub mod cascader;
25pub mod cascader_panel;
26pub mod checkbox;
27pub mod checkbox_button;
28pub mod checkbox_group;
29pub mod col;
30pub mod collapse;
31pub mod collapse_item;
32pub mod color_picker;
33pub mod container;
34
35// Layout Components
36pub mod drawer;
37pub mod footer;
38pub mod header;
39pub mod main;
40pub mod row;
41pub mod space;
42
43// Form Components
44pub mod date_picker;
45pub mod form;
46pub mod form_item;
47pub mod input;
48pub mod input_number;
49pub mod select;
50pub mod select_v2;
51pub mod slider;
52pub mod switch;
53pub mod time_picker;
54pub mod time_select;
55pub mod transfer;
56
57// Display Components
58pub mod descriptions;
59pub mod descriptions_item;
60pub mod dialog;
61pub mod divider;
62pub mod empty;
63pub mod image;
64pub mod image_viewer;
65pub mod link;
66pub mod result;
67pub mod table;
68pub mod table_column;
69pub mod tag;
70pub mod timeline;
71pub mod timeline_item;
72pub mod tree;
73pub mod upload;
74pub mod watermark;
75
76// Navigation Components
77pub mod affix;
78pub mod anchor;
79pub mod anchor_link;
80pub mod dropdown;
81pub mod dropdown_item;
82pub mod dropdown_menu;
83pub mod menu;
84pub mod menu_item;
85pub mod menu_item_group;
86pub mod page_header;
87pub mod pagination;
88pub mod step;
89pub mod steps;
90pub mod sub_menu;
91pub mod tabs;
92
93// Feedback Components
94pub mod infinite_scroll;
95pub mod loading;
96pub mod message;
97pub mod message_box;
98pub mod notification;
99pub mod popconfirm;
100pub mod popover;
101pub mod progress;
102pub mod skeleton;
103pub mod skeleton_item;
104pub mod spin;
105pub mod tooltip;
106
107// Data Components
108pub mod option;
109pub mod option_group;
110pub mod radio;
111pub mod radio_button;
112pub mod radio_group;
113pub mod rate;
114pub mod tree_select;
115
116// Icon Components
117pub mod icon;
118
119// Re-exports - Basic UI Components
120pub use alert::*;
121pub use autocomplete::*;
122pub use avatar::*;
123pub use avatar_group::*;
124pub use backtop::*;
125pub use badge::*;
126pub use breadcrumb::*;
127pub use breadcrumb_item::*;
128pub use button::*;
129pub use button_group::*;
130pub use calendar::*;
131pub use card::*;
132pub use carousel::*;
133pub use carousel_item::*;
134pub use cascader::*;
135pub use cascader_panel::*;
136pub use checkbox::*;
137pub use checkbox_button::*;
138pub use checkbox_group::*;
139pub use col::*;
140pub use collapse::*;
141pub use collapse_item::*;
142pub use color_picker::*;
143pub use container::*;
144
145// Re-exports - Layout Components
146pub use drawer::*;
147pub use footer::*;
148pub use header::*;
149pub use layout::*;
150pub use main::*;
151pub use row::*;
152pub use space::*;
153
154// Re-exports - Form Components
155pub use date_picker::*;
156pub use form::*;
157pub use form_item::*;
158pub use input::*;
159pub use input_number::*;
160pub use select::*;
161pub use select_v2::*;
162pub use slider::*;
163pub use switch::*;
164pub use time_picker::*;
165pub use time_select::*;
166pub use transfer::*;
167
168// Re-exports - Display Components
169pub use descriptions::*;
170pub use descriptions_item::*;
171pub use dialog::*;
172pub use divider::*;
173pub use empty::*;
174pub use image::*;
175pub use image_viewer::*;
176pub use link::*;
177pub use result::*;
178pub use table::*;
179pub use table_column::*;
180pub use tag::*;
181pub use timeline::*;
182pub use timeline_item::*;
183pub use tree::*;
184pub use upload::*;
185pub use watermark::*;
186
187// Re-exports - Navigation Components
188pub use affix::*;
189pub use anchor::*;
190pub use anchor_link::*;
191pub use dropdown::*;
192pub use dropdown_item::*;
193pub use dropdown_menu::*;
194pub use menu::*;
195pub use menu_item::*;
196pub use menu_item_group::*;
197pub use page_header::*;
198pub use pagination::*;
199pub use step::*;
200pub use steps::*;
201pub use sub_menu::*;
202pub use tabs::*;
203
204// Re-exports - Feedback Components
205pub use infinite_scroll::*;
206pub use loading::*;
207pub use message::*;
208pub use message_box::*;
209pub use notification::*;
210pub use popconfirm::*;
211pub use popover::*;
212pub use progress::*;
213pub use skeleton::*;
214pub use skeleton_item::*;
215pub use spin::*;
216pub use tooltip::*;
217
218// Re-exports - Data Components
219pub use option::OptionComponent as Option;
220pub use option_group::*;
221pub use radio::*;
222pub use radio_button::*;
223pub use radio_group::*;
224pub use rate::*;
225pub use tree_select::*;
226
227// Re-exports - Icon Components
228pub use icon::*;