Release Notes
router.url
If you just want the url of the page the user is on, then rx.State.router.url
is what you need. It's very similar to urllib.parse url
, so you can do host
, port
, and whatnot. The plan is to move away from router.page
.
- add url and route_id to routerdata as a replacement for pagedata by @adhami3310 in #5516
Blur focus
Do you want to de-focus an element? You can use rx.event.blur_focus
Load plugins from environ
If you need to override plugins through an environment variable, now you can do so.
REFLEX_PLUGINS=reflex.plugins.tailwind_v3.TailwindV3Plugin
- load plugins from env variable by @adhami3310 in #5524
rx.el.a maps to react router link
You can still get the original through rx.el.elements.a
.
Bugfixes
- fix gunicorn in prod mode by @Lendemor in #5521
- use deterministic hash for stateful component names by @adhami3310 in #5525
- Limit scope of bun react-dom/server hack by @masenf in #5532
- only access .name for upload component by @adhami3310 in #5515
- use jsx for root by @adhami3310 in #5535
- add error handling for port process check by @adhami3310 in #5540
- remove keyframes as template string and inline it by @adhami3310 in #5541
Chores
- bump to 081 for dev by @adhami3310 in #5514
New Contributors
Full Changelog: v0.8.0...v0.8.1