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