artisanpack-ui / livewire-ui-components
A Livewire UI component library for the TALL stack, forked from MaryUI and adapted for the ArtisanPack UI ecosystem.
Installs: 277
Dependents: 3
Suggesters: 1
Security: 0
Stars: 0
Forks: 0
pkg:composer/artisanpack-ui/livewire-ui-components
Requires
- artisanpack-ui/accessibility: ^2.0.0
- artisanpack-ui/core: ^1.0
- artisanpack-ui/icons: ^2.0
- artisanpack-ui/security: ^1.0
- blade-ui-kit/blade-heroicons: ^2.0
- illuminate/support: ^10.0|^11.0|^12.0
- jfcherng/php-diff: ^6.15
- laravel/prompts: ^0|^1
- livewire/livewire: ^3.6|^4.0
- owenvoke/blade-fontawesome: ^2.9
Requires (Dev)
- ext-dom: *
- ext-libxml: *
- artisanpack-ui/code-style: ^1.0
- artisanpack-ui/code-style-pint: ^1.0
- brianium/paratest: ^7.0
- dealerdirect/phpcodesniffer-composer-installer: ^1.1
- fakerphp/faker: ^1.20
- infection/infection: ^0.29
- larastan/larastan: ^3.0
- laravel/boost: ^1.0
- laravel/dusk: ^8.0
- laravel/pint: ^1.25
- livewire/volt: ^1.0
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^8|^9|^10
- pestphp/pest: ^3.5
- pestphp/pest-plugin-laravel: ^3.0
- pestphp/pest-plugin-type-coverage: ^3.0
- pestphp/pest-plugin-watch: ^3.0
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^10|^11
- rector/rector: ^2.0
- spatie/pest-plugin-snapshots: ^2.0
- squizlabs/php_codesniffer: ^3.13
Suggests
- barryvdh/laravel-dompdf: Required for PDF export functionality in Table component (^3.0)
- phpoffice/phpspreadsheet: Required for XLSX/Excel export functionality in Table component (^2.0|^3.0)
- dev-main
- 2.0.1
- 2.0.0
- 2.0.0-beta1
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0-beta4
- 1.0-beta3
- 1.0-beta2
- 1.0-beta1
- 0.6.0
- 0.5.0
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.0
- 0.1.0
- dev-release/2.0.1
- dev-release/2.x
- dev-release/2.0
- dev-release/1.x
- dev-planning
- dev-release/1.0.2
- dev-release/1.0.0
- dev-add/accessibility-framework
- dev-fix/naming-standardization
- dev-package-audit
This package is auto-updated.
Last update: 2026-01-28 17:13:11 UTC
README
ArtisanPack UI Livewire UI Components is a comprehensive set of UI components for Livewire powered by daisyUI and Tailwind CSS. This package provides a collection of beautiful, responsive, and customizable components to accelerate your Laravel application development.
🚀 Quick Start
Installation
# Install the package
composer require artisanpack-ui/livewire-ui-components
# Run the interactive installer
php artisan livewire-ui-components:install
# Compile your assets
npm run dev
Basic Usage
<!-- Simple button -->
<x-artisanpack-button>Click Me</x-artisanpack-button>
<!-- Card with header and footer -->
<x-artisanpack-card>
<x-slot:header>
<h3 class="text-lg font-bold">Card Title</h3>
</x-slot:header>
<p>Card content goes here.</p>
<x-slot:footer>
<x-artisanpack-button color="primary">Action</x-artisanpack-button>
</x-slot:footer>
</x-artisanpack-card>
✨ Key Features
- 🎯 70+ Pre-built Components: From simple inputs to complex data tables and charts
- ⚡ TALL Stack Integration: Built specifically for Tailwind CSS, Alpine.js, Laravel, and Livewire
- 🎨 DaisyUI Powered: Leverages the beautiful daisyUI component library for consistent styling
- 🔧 Livewire 3 & 4 Compatible: Fully compatible with Livewire 3 and 4
- 🎨 Customizable Theming: Generate custom color themes with a simple Artisan command
- 📱 Responsive Design: All components are fully responsive out of the box
- ♿ Accessibility Focused: Components designed with accessibility best practices
- 📚 Comprehensive Documentation: Detailed documentation with examples for every component
🧩 Component Categories
📝 Form Components
Input, Button, Checkbox, Select, DatePicker, File Upload, Rich Text Editor, and more.
🏗️ Layout Components
Card, Modal, Tabs, Accordion, Drawer, Dropdown, and structural elements.
🧭 Navigation Components
Menu, Breadcrumbs, Pagination, Spotlight Search, and navigation helpers.
📊 Data Display Components
Table, Chart, Calendar, Avatar, Badge, Progress indicators, and data visualization.
💬 Feedback Components
Alert, Toast, Loading states, and user feedback elements.
🛠️ Utility Components
Icon, Theme Toggle, Carousel, and various utility components.
📖 Documentation
Comprehensive documentation is available in our Documentation Wiki:
- Installation Guide - Detailed setup instructions
- Components Overview - Complete component reference
- Customization Guide - Theming and customization options
- Advanced Topics - Color system, custom components, and more
🎨 Theming
Generate custom themes to match your brand:
php artisan artisanpack:generate-theme
This interactive command helps you create custom color schemes that work across all components.
📦 Optional Dependencies
Some features require optional packages:
# For Excel (XLSX) export
composer require phpoffice/phpspreadsheet
# For PDF export
composer require barryvdh/laravel-dompdf
CSV export works without any additional dependencies.
📊 JavaScript Dependencies
Some components require additional JavaScript packages and configuration.
Charts & Sparklines
The Chart and Sparkline components require ApexCharts:
npm install apexcharts
Then add to your resources/js/app.js:
import ApexCharts from 'apexcharts';
window.ApexCharts = ApexCharts;
// Import sparkline Alpine component
import '../../vendor/artisanpack-ui/livewire-ui-components/resources/js/sparkline.js';
Note: For symlinked package development, use the path above. For production installations via Composer, the path would be different and you may need to adjust based on your setup.
Date Pickers
The DatePicker component requires flatpickr:
npm install flatpickr
Configure in your app.js:
import flatpickr from 'flatpickr';
import 'flatpickr/dist/flatpickr.min.css';
window.flatpickr = flatpickr;
🚀 Migration Guides
Upgrading to v2.0
Version 2.0 is fully backwards compatible with v1.x. All your existing code will continue to work without any modifications. Simply update the package:
composer require artisanpack-ui/livewire-ui-components:^2.0
See the complete v1.x to v2.0 Migration Guide for details on new features and optional enhancements.
Upgrading to v1.0
Version 1.0.0 introduced standardized component naming. The duplicated prefix was removed:
Before (deprecated):
<x-artisanpack-artisanpack-button>Click Me</x-artisanpack-artisanpack-button>
After (v1.0.0+):
<x-artisanpack-button>Click Me</x-artisanpack-button>
Search and replace artisanpack-artisanpack- with artisanpack- in your Blade files.
Acknowledgements
ArtisanPack UI Livewire UI Components is a fork of the excellent MaryUI library, created by Robson Tenorio and contributors.
We extend our sincere gratitude to the MaryUI team for their incredible work and for making it available to the open-source community. This fork aims to adapt MaryUI to the specific coding standards and architectural patterns of the ArtisanPack UI ecosystem while adding new features.
Contributing
Contributions are welcome! To contribute:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
ArtisanPack UI Livewire UI Components is open-sourced software licensed under the MIT license.