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