File: /home/posscale/public_html/printmanager/vendor/filament/forms/src/Components/RichEditor.php
<?php
namespace Filament\Forms\Components;
use Closure;
use Filament\Support\Concerns\HasExtraAlpineAttributes;
class RichEditor extends Field implements Contracts\CanBeLengthConstrained, Contracts\HasFileAttachments
{
use Concerns\CanBeLengthConstrained;
use Concerns\CanDisableGrammarly;
use Concerns\HasExtraInputAttributes;
use Concerns\HasFileAttachments;
use Concerns\HasPlaceholder;
use Concerns\InteractsWithToolbarButtons;
use HasExtraAlpineAttributes;
/**
* @var view-string
*/
protected string $view = 'filament-forms::components.rich-editor';
/**
* @var array<string>
*/
protected array | Closure $toolbarButtons = [
'attachFiles',
'blockquote',
'bold',
'bulletList',
'codeBlock',
'h2',
'h3',
'italic',
'link',
'orderedList',
'redo',
'strike',
'underline',
'undo',
];
}