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 card;
10pub mod checkbox;
11pub mod chip;
12pub mod color_picker;
13pub mod context_menu;
14pub mod cursor_area;
15pub mod cursor_blink;
16pub mod drag_drop;
17pub mod draggable_canvas;
18pub mod element_expansions;
19pub mod floating_tab;
20pub mod icons;
21pub mod image_viewer;
22pub mod input;
23pub mod integration;
24pub mod loader;
25pub mod menu;
26pub mod overflowed_content;
27pub mod popup;
28pub mod portal;
29pub mod progressbar;
30pub mod radio_item;
31pub mod resizable_container;
32pub mod scrollviews;
33pub mod segmented_button;
34pub mod select;
35pub mod selectable_text;
36pub mod sidebar;
37pub mod slider;
38pub mod switch;
39pub mod table;
40pub mod theming;
41pub mod tile;
42#[cfg(feature = "titlebar")]
43pub mod titlebar;
44pub mod tooltip;
45
46#[cfg(feature = "remote-asset")]
47pub use ureq::http::Uri;
48
49cfg_if::cfg_if! {
50 if #[cfg(feature = "router")] {
51 pub mod activable_route;
52 pub mod link;
53 pub mod native_router;
54 pub mod animated_router;
55 }
56}
57
58cfg_if::cfg_if! {
59 if #[cfg(feature = "plot")] {
60 pub mod plot;
61 }
62}
63
64cfg_if::cfg_if! {
65 if #[cfg(feature = "gif")] {
66 pub mod gif_viewer;
67 }
68}
69
70cfg_if::cfg_if! {
71 if #[cfg(feature = "markdown")] {
72 pub mod markdown;
73 }
74}
75
76#[cfg_attr(feature = "docs",
95 doc = embed_doc_image::embed_image!("gallery_button", "images/gallery_button.png"),
96 doc = embed_doc_image::embed_image!("gallery_filled_button", "images/gallery_filled_button.png"),
97 doc = embed_doc_image::embed_image!("gallery_outline_button", "images/gallery_outline_button.png"),
98 doc = embed_doc_image::embed_image!("gallery_toggled_switch", "images/gallery_toggled_switch.png"),
99 doc = embed_doc_image::embed_image!("gallery_slider", "images/gallery_slider.png"),
100 doc = embed_doc_image::embed_image!("gallery_checkbox", "images/gallery_checkbox.png"),
101 doc = embed_doc_image::embed_image!("gallery_radio", "images/gallery_radio.png"),
102 doc = embed_doc_image::embed_image!("gallery_input", "images/gallery_input.png"),
103 doc = embed_doc_image::embed_image!("gallery_filled_input", "images/gallery_filled_input.png"),
104 doc = embed_doc_image::embed_image!("gallery_flat_input", "images/gallery_flat_input.png"),
105 doc = embed_doc_image::embed_image!("gallery_progressbar", "images/gallery_progressbar.png"),
106 doc = embed_doc_image::embed_image!("gallery_select", "images/gallery_select.png"),
107 doc = embed_doc_image::embed_image!("gallery_accordion", "images/gallery_accordion.png"),
108 doc = embed_doc_image::embed_image!("gallery_floating_tab", "images/gallery_floating_tab.png"),
109 doc = embed_doc_image::embed_image!("gallery_image_viewer", "images/gallery_image_viewer.png"),
110 doc = embed_doc_image::embed_image!("gallery_scrollview", "images/gallery_scrollview.png"),
111 doc = embed_doc_image::embed_image!("gallery_virtual_scrollview", "images/gallery_virtual_scrollview.png"),
112 doc = embed_doc_image::embed_image!("gallery_circular_loader", "images/gallery_circular_loader.png"),
113 doc = embed_doc_image::embed_image!("gallery_tooltip", "images/gallery_tooltip.png"),
114 doc = embed_doc_image::embed_image!("gallery_gif_viewer", "images/gallery_gif_viewer.png"),
115 doc = embed_doc_image::embed_image!("gallery_segmented_button", "images/gallery_segmented_button.png"),
116 doc = embed_doc_image::embed_image!("gallery_flat_button", "images/gallery_flat_button.png"),
117 doc = embed_doc_image::embed_image!("gallery_calendar", "images/gallery_calendar.png"),
118 doc = embed_doc_image::embed_image!("gallery_color_picker", "images/gallery_color_picker.png"),
119 doc = embed_doc_image::embed_image!("gallery_chip", "images/gallery_chip.png"),
120 doc = embed_doc_image::embed_image!("gallery_menu", "images/gallery_menu.png"),
121 doc = embed_doc_image::embed_image!("gallery_popup", "images/gallery_popup.png"),
122 doc = embed_doc_image::embed_image!("gallery_resizable_container", "images/gallery_resizable_container.png"),
123 doc = embed_doc_image::embed_image!("gallery_sidebar", "images/gallery_sidebar.png"),
124 doc = embed_doc_image::embed_image!("gallery_table", "images/gallery_table.png"),
125 doc = embed_doc_image::embed_image!("gallery_card", "images/gallery_card.png"),
126)]
127pub fn gallery() {}