summaryrefslogtreecommitdiffstats
path: root/web/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r--web/src/lib.rs14
1 files changed, 10 insertions, 4 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs
index 8cfe685b..4679b457 100644
--- a/web/src/lib.rs
+++ b/web/src/lib.rs
@@ -73,12 +73,18 @@ pub use css::Css;
pub use dodrio;
pub use element::Element;
pub use hasher::Hasher;
+pub use subscription::Subscription;
+
+pub use iced_core::alignment;
+pub use iced_core::keyboard;
+pub use iced_core::mouse;
+pub use iced_futures::executor;
+pub use iced_futures::futures;
+
pub use iced_core::{
- keyboard, mouse, Align, Background, Color, Font, HorizontalAlignment,
- Length, Padding, Point, Rectangle, Size, Vector, VerticalAlignment,
+ Alignment, Background, Color, Font, Length, Padding, Point, Rectangle,
+ Size, Vector,
};
-pub use iced_futures::{executor, futures};
-pub use subscription::Subscription;
#[doc(no_inline)]
pub use widget::*;