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"))]
|
#[cfg(not(feature = "ssr"))]
|
||||||
{
|
{
|
||||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||||
let OnClickOutsideOptions {
|
let OnClickOutsideOptions {
|
||||||
ignore,
|
ignore,
|
||||||
capture,
|
capture,
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
use crate::core::ElementMaybeSignal;
|
use crate::core::ElementMaybeSignal;
|
||||||
use cfg_if::cfg_if;
|
use cfg_if::cfg_if;
|
||||||
use default_struct_builder::DefaultBuilder;
|
use default_struct_builder::DefaultBuilder;
|
||||||
use leptos::reactive_graph::wrappers::read::Signal;
|
|
||||||
use leptos::prelude::*;
|
use leptos::prelude::*;
|
||||||
|
use leptos::reactive_graph::wrappers::read::Signal;
|
||||||
use std::fmt::{Debug, Formatter};
|
use std::fmt::{Debug, Formatter};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ where
|
||||||
|
|
||||||
#[cfg(not(feature = "ssr"))]
|
#[cfg(not(feature = "ssr"))]
|
||||||
{
|
{
|
||||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||||
let UseDropZoneOptions {
|
let UseDropZoneOptions {
|
||||||
on_drop,
|
on_drop,
|
||||||
on_enter,
|
on_enter,
|
||||||
|
|
|
@ -119,7 +119,7 @@ where
|
||||||
|
|
||||||
#[cfg(not(feature = "ssr"))]
|
#[cfg(not(feature = "ssr"))]
|
||||||
{
|
{
|
||||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||||
use send_wrapper::SendWrapper;
|
use send_wrapper::SendWrapper;
|
||||||
let event_name = event.name();
|
let event_name = event.name();
|
||||||
let closure_js = Closure::wrap(Box::new(move |e| {
|
let closure_js = Closure::wrap(Box::new(move |e| {
|
||||||
|
|
|
@ -51,7 +51,7 @@ where
|
||||||
#[cfg(not(feature = "ssr"))]
|
#[cfg(not(feature = "ssr"))]
|
||||||
{
|
{
|
||||||
use leptos::leptos_dom::helpers::TimeoutHandle;
|
use leptos::leptos_dom::helpers::TimeoutHandle;
|
||||||
use leptos::prelude::diagnostics::SpecialNonReactiveZone;
|
use leptos::reactive_graph::diagnostics::SpecialNonReactiveZone;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue