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