selli/ui

Selli UI — enterprise Blade & Livewire 4 component library built on the Selli Design System (Electric Violet, dark-first).

Maintainers

Package info

github.com/Sellinnate/selli-ui-library-livewire

Language:Blade

pkg:composer/selli/ui

Fund package maintenance!

:vendor_name

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

v1.0.0 2026-06-27 15:06 UTC

This package is auto-updated.

Last update: 2026-06-28 06:21:27 UTC


README

Selli UI for Livewire — Blade & Livewire component library

Selli UI — Blade & Livewire 4 component library

run-tests PHPStan e2e

An enterprise-grade UI component library for Laravel, built on the Selli Design System — Electric Violet, Instrument Sans, dark-first, with the brand's signature violet glow. Ships as a set of x-selli::* Blade components designed to drop straight into any Laravel + Livewire 4 application.

Every component is themeable through CSS custom properties (design tokens), works in light and dark mode, and ships with tests.

📖 Documentation

Full documentation, with live examples and screenshots of every component: selli-ui-livewire.selli.io

Requirements

  • PHP ^8.3
  • Laravel ^11.0 || ^12.0
  • Livewire ^4.0 (only required for the interactive components)

Installation

composer require selli/ui

Publish the stylesheet and JavaScript assets:

php artisan vendor:publish --tag=selli-ui-assets

(Optionally) publish the config file:

php artisan vendor:publish --tag=selli-ui-config

Add the design-system stylesheet to your layout <head>:

<link rel="stylesheet" href="{{ \Selli\Ui\Facades\SelliUi::css() }}">

The system is dark-first. Add the dark appearance by leaving <html> as-is, or switch to the light surface with <html class="light">.

Usage

All components are anonymous Blade components under the selli namespace:

<x-selli::button variant="primary" icon="rocket">Inizia ora</x-selli::button>

<x-selli::card>
    <x-selli::card.icon name="sparkles" />
    <x-selli::card.title>Componenti enterprise</x-selli::card.title>
    <x-selli::card.body>Pronti per la produzione, testati e documentati.</x-selli::card.body>
</x-selli::card>

<x-selli::badge tone="success" icon="circle-check">Attivo</x-selli::badge>

See the documentation for the full component reference.

Testing

composer test

Changelog

Please see CHANGELOG for what has changed recently.

License

The MIT License (MIT). Please see License File for more information.