rahmanramsi / filament-editorjs
Next generation block styled editor.
Installs: 14 693
Dependents: 0
Suggesters: 0
Security: 0
Stars: 73
Watchers: 8
Forks: 30
Open Issues: 10
Requires
- php: ^8.1
- filament/forms: ^3.0
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.22
- nunomaduro/collision: ^7.8
- orchestra/testbench: ^8.5
- pestphp/pest: ^2.13
- pestphp/pest-plugin-laravel: ^2.1
- phpunit/phpunit: ^10.3
This package is auto-updated.
Last update: 2024-11-15 03:19:50 UTC
README
EditorJs integration for Filament Admin/Forms.
Installation
You can install the package via composer:
composer require rahmanramsi/filament-editorjs
Usage
use FilamentEditorJs\Forms\Components\EditorJs; EditorJs::make('content')
Customization
Tools
By default all tools are enabled. This is a list of available tools:
[ 'header', 'image', 'delimiter', 'list', 'underline', 'quote', 'table', 'raw', 'code', 'inline-code', 'style', ]
You can disable any of them using by passing an array of tool names:
EditorJs::make('content')->disableTools(['image', 'raw']);
Also you can enable only certain tools:
EditorJs::make('content')->tools(['image', 'raw']);
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.