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