microweber-deps/filament-slider-input-field
最新稳定版本:1.0
Composer 安装命令:
composer require microweber-deps/filament-slider-input-field
包简介
This is a wrapper around noUiSlider which allows creating a slider field on Filament Forms.
README 文档
README
This is a wrapper around noUiSlider which allows creating a slider field on Filament Forms.
Installation
You can install the package via composer:
composer require nettantra/filament-slider-input-field
Usage
use NetTantra\FilamentSliderInputField\Forms\Components\SliderInput; // admin panel public static function form(Form $form): Form { return $form->schema([ ... SliderInput::make('rating') ->minValue(0) ->maxValue(5) ->step(0.05); ]); } //frontend-forms protected function getFormSchema(): array { return [ .... SliderInput::make('rating') ->minValue(0) ->maxValue(5) ->step(0.05); ]; }
Changelog
Please see CHANGELOG for more information on latest changes.
Security Vulnerabilities
Please report any security vulnerabilities by raising an issue here
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 2.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-07-21