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