Releases: RustForWeb/floating-ui
Releases · RustForWeb/floating-ui
v0.2.0
What's Changed
- Update actions/configure-pages action to v5 by @renovate in #65
- Update dependencies by @DanielleHuisman in #66
- Update Rust crate octocrab to 0.42.0 by @renovate in #62
- Update dependency prettier-plugin-tailwindcss to v0.6.8 by @renovate in #59
- Update dependency tailwindcss to v3.4.15 by @renovate in #60
- Update rust-wasm-bindgen monorepo by @renovate in #69
- Update Rust crate octocrab to v0.42.1 by @renovate in #67
- Update dependency prettier to v3.4.1 by @renovate in #72
- Update dependency prettier-plugin-tailwindcss to v0.6.9 by @renovate in #68
- Upgrade to Leptos v0.7 by @DanielleHuisman in #73
New Contributors
- @DanielleHuisman made their first contribution in #66
Full Changelog: 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()),
)
v0.1.3
What's Changed
- Update to upstream @floating-ui/[email protected] by @github-actions in #49
Full Changelog: v0.1.2...v0.1.3
v0.1.2
What's Changed
- Update to upstream @floating-ui/[email protected] by @github-actions in #45
- Update to upstream @floating-ui/[email protected] by @github-actions in #43
- Update to upstream @floating-ui/[email protected] by @github-actions in #44
- Update to upstream @floating-ui/[email protected] by @github-actions in #46
Full Changelog: v0.1.1...v0.1.2
v0.1.1
Full Changelog: v0.1.0...v0.1.1
v0.1.0
What's Changed
- Update dependency prettier to v3.3.1 by @renovate in #18
- Update dependency prettier to v3.3.2 by @renovate in #19
- Update to upstream @floating-ui/[email protected] by @github-actions in #22
- Update to upstream @floating-ui/[email protected] by @github-actions in #20
- Update to upstream @floating-ui/[email protected] by @github-actions in #23
- Update to upstream @floating-ui/[email protected] by @github-actions in #21
- Update to upstream @floating-ui/[email protected] by @github-actions in #27
- Update to upstream @floating-ui/[email protected] by @github-actions in #26
- Update to upstream @floating-ui/[email protected] by @github-actions in #25
- Update to upstream @floating-ui/[email protected] by @github-actions in #28
- Update to upstream @floating-ui/[email protected] by @github-actions in #29
- Update to upstream @floating-ui/[email protected] by @github-actions in #32
- Update to upstream @floating-ui/[email protected] by @github-actions in #30
- Update to upstream @floating-ui/[email protected] by @github-actions in #31
- Update to upstream @floating-ui/[email protected] by @github-actions in #33
- Update to upstream @floating-ui/[email protected] by @github-actions in #36
- Update to upstream @floating-ui/[email protected] by @github-actions in #34
- Update to upstream @floating-ui/[email protected] by @github-actions in #35
- Update to upstream @floating-ui/[email protected] by @github-actions in #37
- Update to upstream @floating-ui/[email protected] by @github-actions in #40
- Update to upstream @floating-ui/[email protected] by @github-actions in #38
- Update to upstream @floating-ui/[email protected] by @github-actions in #39
- Update to upstream @floating-ui/[email protected] by @github-actions in #41
New Contributors
Full Changelog: v0.0.9...v0.1.0
v0.0.9
What's Changed
- Update to upstream @floating-ui/[email protected] by @github-actions in #9
- Update to upstream @floating-ui/[email protected] by @github-actions in #11
- Update to upstream @floating-ui/[email protected] by @github-actions in #10
- Update to upstream @floating-ui/[email protected] by @github-actions in #15
- Update to upstream @floating-ui/[email protected] by @github-actions in #16
- Add support for Leptos stable by @zakstucke in #17
Full Changelog: v0.0.8...v0.0.9
v0.0.8
Full Changelog: v0.0.7...v0.0.8
v0.0.7
Full Changelog: v0.0.6...v0.0.7
v0.0.6
Full Changelog: v0.0.5...v0.0.6
v0.0.5
Full Changelog: v0.0.4...v0.0.5