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