Skip to content

Commit 855a6c3

Browse files
fix(deps): migrate to Dioxus v0.7.0
1 parent c10efdb commit 855a6c3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/dioxus/src/use_auto_update.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub fn use_auto_update() -> Memo<ShallowRc<WhileElementsMountedFn>> {
2222
///
2323
/// Can be passed to [`UseFloatingOptions::while_elements_mounted`][crate::types::UseFloatingOptions::while_elements_mounted].
2424
pub fn use_auto_update_with_options(
25-
options: ReadOnlySignal<AutoUpdateOptions>,
25+
options: ReadSignal<AutoUpdateOptions>,
2626
) -> Memo<ShallowRc<WhileElementsMountedFn>> {
2727
use_memo(move || {
2828
let options = options();

packages/dioxus/src/use_floating.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::{cell::RefCell, rc::Rc};
22

3-
use dioxus::{prelude::*, web::WebEventExt};
3+
use dioxus::{core::use_drop, prelude::*, web::WebEventExt};
44
use floating_ui_dom::{
55
ComputePositionConfig, MiddlewareData, Placement, Strategy, compute_position,
66
};

0 commit comments

Comments
 (0)