chore(widget): re-export missing iced widgets

This commit is contained in:
Michael Aaron Murphy 2023-08-21 22:58:10 +02:00 committed by Michael Murphy
parent caf07e8288
commit 2e3d9af720

View file

@ -3,6 +3,17 @@
//! Cosmic-themed widget implementations.
// Re-exports from Iced
pub use iced::widget::{checkbox, Checkbox};
pub use iced::widget::{column, Column};
pub use iced::widget::{image, Image};
pub use iced::widget::{pick_list, PickList};
pub use iced::widget::{radio, Radio};
pub use iced::widget::{row, Row};
pub use iced::widget::{slider, Slider};
pub use iced::widget::{space, Space};
pub use iced::widget::{text_input, TextInput};
pub mod aspect_ratio;
mod button;
@ -37,21 +48,16 @@ pub use popover::{popover, Popover};
pub mod rectangle_tracker;
mod scrollable;
pub use scrollable::*;
pub mod search;
pub mod segmented_button;
pub use segmented_button::horizontal as horizontal_segmented_button;
pub use segmented_button::vertical as vertical_segmented_button;
pub mod segmented_selection;
pub use segmented_selection::horizontal as horizontal_segmented_selection;
pub use segmented_selection::vertical as vertical_segmented_selection;
pub mod settings;
mod scrollable;
pub use scrollable::*;
pub mod spin_button;
pub use spin_button::{spin_button, SpinButton};