Skip to main content

euv_ui/
lib.rs

1//! euv-ui
2//!
3//! Reusable UI component library for the euv framework,
4//! providing buttons, cards, modals, inputs, theme management, and more.
5
6mod component;
7mod hook;
8mod style;
9
10pub use {component::*, hook::*, style::*};
11
12use euv::*;
13
14use std::{
15    any::Any,
16    cell::{Cell, RefCell, RefMut, UnsafeCell},
17    collections::{HashMap, HashSet},
18    fmt::{Debug, Display, Formatter, Result as FmtResult},
19    hash::Hash,
20    ops::Deref,
21    panic::{AssertUnwindSafe, UnwindSafe, catch_unwind},
22    rc::Rc,
23    sync::{
24        LazyLock, OnceLock, RwLock,
25        atomic::{AtomicBool, Ordering},
26    },
27};
28
29use {js_sys::*, lombok_macros::*, wasm_bindgen::prelude::*, wasm_bindgen_futures::*, web_sys::*};