mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
chore: clear warning and add exports of helpers with handles
This commit is contained in:
parent
875d2d5a3a
commit
abb9320e31
1 changed files with 5 additions and 2 deletions
|
@ -150,12 +150,15 @@ pub use leptos_config::{self, get_configuration, LeptosOptions};
|
|||
pub mod ssr {
|
||||
pub use leptos_dom::{ssr::*, ssr_in_order::*};
|
||||
}
|
||||
#[allow(deprecated)]
|
||||
pub use leptos_dom::{
|
||||
self, create_node_ref, debug_warn, document, error, ev,
|
||||
helpers::{
|
||||
event_target, event_target_checked, event_target_value,
|
||||
request_animation_frame, request_idle_callback, set_interval,
|
||||
set_timeout, window_event_listener,
|
||||
request_animation_frame, request_animation_frame_with_handle,
|
||||
request_idle_callback, request_idle_callback_with_handle, set_interval,
|
||||
set_interval_with_handle, set_timeout, set_timeout_with_handle,
|
||||
window_event_listener,
|
||||
},
|
||||
html, log, math, mount_to, mount_to_body, svg, warn, window, Attribute,
|
||||
Class, Errors, Fragment, HtmlElement, IntoAttribute, IntoClass,
|
||||
|
|
Loading…
Reference in a new issue