1pub mod accordion;
2pub mod activable_route_context;
3pub mod button;
4pub mod cache;
5pub mod checkbox;
6pub mod chip;
7pub mod context_menu;
8pub mod drag_drop;
9pub mod draggable_canvas;
10pub mod element_expansions;
11pub mod floating_tab;
12pub mod icons;
13pub mod image_viewer;
14pub mod input;
15pub mod integration;
16pub mod loader;
17pub mod menu;
18pub mod overflowed_content;
19pub mod popup;
20pub mod portal;
21pub mod progressbar;
22pub mod radio_item;
23pub mod resizable_container;
24pub mod scrollviews;
25pub mod select;
26pub mod selectable_text;
27pub mod sidebar;
28pub mod slider;
29pub mod switch;
30pub mod table;
31pub mod theming;
32pub mod tile;
33pub mod tooltip;
34
35#[cfg(feature = "remote-asset")]
36pub use ureq::http::Uri;
37
38cfg_if::cfg_if! {
39 if #[cfg(feature = "router")] {
40 pub mod activable_route;
41 pub mod link;
42 pub mod native_router;
43 pub mod animated_router;
44 }
45}
46
47cfg_if::cfg_if! {
48 if #[cfg(feature = "plot")] {
49 pub mod plot;
50 }
51}
52
53cfg_if::cfg_if! {
54 if #[cfg(feature = "gif")] {
55 pub mod gif_viewer;
56 }
57}
58
59#[cfg_attr(feature = "docs",
72 doc = embed_doc_image::embed_image!("gallery_button", "images/gallery_button.png"),
73 doc = embed_doc_image::embed_image!("gallery_filled_button", "images/gallery_filled_button.png"),
74 doc = embed_doc_image::embed_image!("gallery_outline_button", "images/gallery_outline_button.png"),
75 doc = embed_doc_image::embed_image!("gallery_toggled_switch", "images/gallery_toggled_switch.png"),
76 doc = embed_doc_image::embed_image!("gallery_slider", "images/gallery_slider.png"),
77 doc = embed_doc_image::embed_image!("gallery_checkbox", "images/gallery_checkbox.png"),
78 doc = embed_doc_image::embed_image!("gallery_radio", "images/gallery_radio.png"),
79 doc = embed_doc_image::embed_image!("gallery_input", "images/gallery_input.png"),
80 doc = embed_doc_image::embed_image!("gallery_progressbar", "images/gallery_progressbar.png"),
81 doc = embed_doc_image::embed_image!("gallery_select", "images/gallery_select.png"),
82 doc = embed_doc_image::embed_image!("gallery_accordion", "images/gallery_accordion.png"),
83 doc = embed_doc_image::embed_image!("gallery_floating_tab", "images/gallery_floating_tab.png"),
84 doc = embed_doc_image::embed_image!("gallery_image_viewer", "images/gallery_image_viewer.png"),
85 doc = embed_doc_image::embed_image!("gallery_scrollview", "images/gallery_scrollview.png"),
86 doc = embed_doc_image::embed_image!("gallery_virtual_scrollview", "images/gallery_virtual_scrollview.png"),
87 doc = embed_doc_image::embed_image!("gallery_circular_loader", "images/gallery_circular_loader.png"),
88 doc = embed_doc_image::embed_image!("gallery_tooltip", "images/gallery_tooltip.png"),
89 doc = embed_doc_image::embed_image!("gallery_gif_viewer", "images/gallery_gif_viewer.png"),
90)]
91pub fn gallery() {}