Corex is an accessible and unstyled UI components library written in Elixir and TypeScript that integrates Zag.js state machines into the Phoenix Framework.
Corex bridges the gap between Phoenix and modern JavaScript UI patterns by leveraging Zag.js: a collection of framework-agnostic UI component state machines. This approach gives you:
- Accessible by default - Built-in ARIA attributes and keyboard navigation
- Unstyled components - Complete control over styling and design
- Type-safe state management - Powered by Zag.js state machines
- Works everywhere - Phoenix Controllers and LiveView
- No Node.js required - Install directly from Hex and connect the Phoenix hooks
Alpha stage Corex is actively being developed and is currently in alpha stage. It's not recommended for production use at this time. You can monitor development progress and contribute to the project on GitHub.
To preview the components, a Live Demo is available to showcase some uses of components, language switching, RTL, and Dark Mode and Site Navigation.
You can also explore all components via Live Captures, a zero-boilerplate storybook for LiveView components. A big thanks to @achempion for assisting.
This is still in an early stage and will evolve with future stable releases.
Thanks to Gigalixir for providing a reliable hosting solution for Elixir projects (not sponsored, just a personal experience).
Full documentation is available at hexdocs.pm/corex.
Install the Corex project generator, then create a new Phoenix application with Corex:
mix archive.install hex corex_new
mix corex.new my_app
cd my_app
mix deps.getTo update the generator to the latest version first, run mix local.corex before mix corex.new my_app.
The generated project includes Corex, configuration, and default styling.
To add Corex to an existing Phoenix app instead of using the generator, see Manual installation.
Example Accordion using Corex.Content.new/1:
<.accordion
class="accordion"
items={Corex.Content.new([
[trigger: "Lorem ipsum dolor sit amet", content: "Consectetur adipiscing elit. Sed sodales ullamcorper tristique."],
[trigger: "Duis dictum gravida odio ac pharetra?", content: "Nullam eget vestibulum ligula, at interdum tellus."],
[trigger: "Donec condimentum ex mi", content: "Congue molestie ipsum gravida a. Sed ac eros luctus."]
])}
/>More Accordion examples (with indicator, custom slots, controlled, async) and API control are in the Installation guide.