aytackayin/filament-select-icon
最新稳定版本:v1.0.7
Composer 安装命令:
composer require aytackayin/filament-select-icon
包简介
A custom Filament form component that provides a beautiful, grid-based icon picker with a built-in search functionality and custom tooltips.
README 文档
README
A custom Filament form component that provides a beautiful, grid-based icon picker with a built-in search functionality and custom tooltips.
Features
- 🚀 Grid Layout: Displays icons in a clean, responsive grid.
- 🔍 Searchable: Built-in search functionality to quickly find icons.
- 🎨 Custom Tooltips: Modern, rounded, and shadowed tooltips that appear on hover.
- 🌓 Dark Mode Support: Fully compatible with Filament's light and dark themes.
- ⚙️ Configurable: Easily customize the list of available icons via a config file.
- 📦 No External Dependencies: Self-contained CSS and Alpine.js logic.
Installation
You can install the package via composer:
composer require aytackayin/filament-select-icon
Configuration
By default, the plugin automatically discovers all Outlined Heroicons provided by Filament. No configuration is required.
However, if you want to limit the icons or add custom ones, you can publish the config file:
php artisan vendor:publish --tag="filament-select-icon-config"
This is the contents of the published config file:
<?php return [ 'icons' => [ // 'Label' => 'heroicon-name', // If left empty, all Outlined Heroicons are discovered automatically. ] ];
Usage
Simply use the SelectIcon component in your Filament form schema:
use AytacKayin\FilamentSelectIcon\Forms\Components\SelectIcon; public function form(Form $form): Form { return $form ->schema([ SelectIcon::make('icon') ->label('Select an Icon'), ]); }
Customization
Tooltip Width
You can adjust the tooltip width or behavior in the select-icon.blade.php file within the <style> block:
.select-icon-tooltip { width: 100px !important; /* Fixed width */ white-space: normal !important; /* Allow wrapping */ }
Credits
Developed by Aytaç Kayın.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-19