The Changelog

What's new around here?

Succinct and informative updates about Flux.
August 31, 2026
Stacked toast notifications
Toast dismissal timers now pause when the browser tab is hidden and resume when it becomes visible again.
This prevents toasts from disappearing while you're on another tab.
It works automatically for both regular and stacked toasts. No changes required.

August 29, 2026

Flags

Version ^2.18.0
A row of country flags from around the world
Flux now ships with a Flag component: consistent 3:2 SVG artwork for every ISO 3166-1 country and territory, plus Kosovo. Every flag is served locally from your app.
Copy to clipboard
<flux:flag country="US" />

API overview

Pass a two-letter country code and Flux handles the rest. Codes are case-insensitive, and every flag uses the same sizing API:
Copy to clipboard
<flux:flag country="JP" size="xl" /><flux:flag country="BR" size="lg" /><flux:flag country="DE" size="md" /><flux:flag country="ZA" />
Need a compact circular crop instead? Add the circle prop:
Copy to clipboard
<flux:flag country="FR" circle />
The bundled SVGs are served through a cacheable, versioned URL, so a page full of flags stays light with no third-party image host involved.

Bring your own

Need a state, province, organization, or historical flag? Pass any image URL using src:
Copy to clipboard
<flux:flag src="/img/flags/california.svg" alt="California" />

Accessibility

Flags are decorative by default and render with an empty alt. Only add alternative text when the flag communicates something that isn't already in nearby text.

August 24, 2026
The Flux documentation is now easier for coding agents to consume. Every page has a markdown version, agents can discover it through emerging standards and retrieve the context they need without parsing a full webpage.

Clean markdown output

Append .md to any docs URL and you get clean, structured markdown — up to 98% smaller than the HTML version:
Copy to clipboard
https://fluxui.dev/components/button.md
The output isn't just HTML converted to markdown, it's a perfect translation of the docs written in Blade. To produce it, we're parsing the Blade structure in the source files and translating each part to its proper markdown equivalent.

Discoverable by agents

We've shipped llms.txt, implemented content negotiation, added alternate link headers, a sitemap, an agent-aware robots.txt — all of it. So no matter what agent you're using, it knows how to get the content it needs.

Better Boost results

Laravel Boost already pulls from the new markdown endpoints, so Boost-powered agents get dramatically better Flux search results out of the box.

Copyright © 2026 Wireable LLC ·Terms of Service
Built with by
Caleb Porzio and Hugo Sainte-Marie