mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-02-02 10:54:15 -05:00
fixed more imports
This commit is contained in:
parent
c30dce5a80
commit
b3361c58c9
4 changed files with 5 additions and 5 deletions
|
@ -114,7 +114,7 @@ where
|
|||
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
||||
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||
let OnClickOutsideOptions {
|
||||
ignore,
|
||||
capture,
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
use crate::core::ElementMaybeSignal;
|
||||
use cfg_if::cfg_if;
|
||||
use default_struct_builder::DefaultBuilder;
|
||||
use leptos::reactive_graph::wrappers::read::Signal;
|
||||
use leptos::prelude::*;
|
||||
use leptos::reactive_graph::wrappers::read::Signal;
|
||||
use std::fmt::{Debug, Formatter};
|
||||
use std::sync::Arc;
|
||||
|
||||
|
@ -77,7 +77,7 @@ where
|
|||
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
||||
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||
let UseDropZoneOptions {
|
||||
on_drop,
|
||||
on_enter,
|
||||
|
|
|
@ -119,7 +119,7 @@ where
|
|||
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
||||
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||
use send_wrapper::SendWrapper;
|
||||
let event_name = event.name();
|
||||
let closure_js = Closure::wrap(Box::new(move |e| {
|
||||
|
|
|
@ -51,7 +51,7 @@ where
|
|||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
use leptos::leptos_dom::helpers::TimeoutHandle;
|
||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
||||
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||
use std::sync::{Arc, Mutex};
|
||||
use std::time::Duration;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue