UNPKG

strapi-plugin-jodit-editor

Version:

A powerful rich text editor plugin for Strapi v5 using the Jodit Editor with advanced formatting capabilities and seamless integration with Strapi's media library.

46 lines (45 loc) 1.1 kB
import React from 'react'; interface JoditInputProps { name: string; value: string; onChange: (value: any) => void; required?: boolean; disabled?: boolean; error?: string | boolean; description?: string; intlLabel: { id: string; defaultMessage: string; }; customFieldUID?: string; attribute?: { options?: { height?: number; buttons?: string; removeButtons?: string; toolbar?: boolean; readonly?: boolean; fonts?: string; webp?: string; }; }; labelAction?: React.ReactNode; label?: string; hint?: string; placeholder?: string; forwardedAs?: string; fieldSchema?: { displayName?: string; description?: string; name?: string; }; metadatas?: { label?: string; description?: string; placeholder?: string; visible?: boolean; editable?: boolean; }; } declare const _default: React.NamedExoticComponent<JoditInputProps>; export default _default;