Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 10, 2025

This PR contains the following updates:

Package Type Update Change
floating-ui-leptos (source) dependencies minor 0.1.3 -> 0.6.0

Release Notes

RustForWeb/floating-ui (floating-ui-leptos)

v0.6.0

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.5.1...v0.6.0

v0.5.1

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.5.0...v0.5.1

v0.5.0

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.4.1...v0.5.0

v0.4.1

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.4.0...v0.4.1

v0.4.0

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.3.1...v0.4.0

v0.3.1

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.2.2...v0.3.1

v0.3.0

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.2.1...v0.3.0

v0.2.2

Compare Source

Yanked due to SemVer breakage, see v0.3.0 instead.

v0.2.1

Compare Source

What's Changed

Full Changelog: RustForWeb/floating-ui@v0.2.0...v0.2.1

v0.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: RustForWeb/floating-ui@v0.1.3...v0.2.0

Upgrade to Leptos v0.7

Node References

Install leptos-node-ref and replace the node references with AnyNodeRef:

- let reference_ref = NodeRef<Div>::new();
- let floating_ref = NodeRef<Div>::new();
- let arrow_ref = NodeRef<Div>::new();
+ use leptos_node_ref::AnyNodeRef;
+ 
+ let reference_ref = AnyNodeRef::new();
+ let floating_ref = AnyNodeRef::new();
+ let arrow_ref = AnyNodeRef::new();
Reference

Remove .into_reference() from use_floating calls:

  use_floating(
-     reference_ref.into_reference(),
+     reference_ref,
      floating_ref,
      UseFloatingOptions::default(),
  )
Middleware

Install send_wrapper and wrap the middleware vector in SendWrapper:

+ use send_wrapper::SendWrapper;

  let middleware: MiddlewareVec = vec![/* ... */];
  
  use_floating(
      reference_ref,
      floating_ref,
      UseFloatingOptions::default()
-          .middleware(middleware.into()),
+          .middleware(SendWrapper::new(middleware).into()),
  )

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/floating-ui-leptos-0.x branch from c1e6d4e to d66cdc5 Compare November 10, 2025 09:36
@renovate renovate bot force-pushed the renovate/floating-ui-leptos-0.x branch from d66cdc5 to 8e6e3b6 Compare November 24, 2025 09:35
@renovate renovate bot force-pushed the renovate/floating-ui-leptos-0.x branch from 8e6e3b6 to 0855f14 Compare December 10, 2025 10:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant