helppeople-ui 1.10.2 → 1.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,6 +28,8 @@ interface CustomRichTextEditorProps {
28
28
  className?: string;
29
29
  /** Permite o bloquea la inserción de imágenes mediante el toolbar y el portapapeles. Por defecto: true */
30
30
  allowImages?: boolean;
31
+ /** Límite máximo de caracteres (solo texto plano, sin HTML). Por defecto: 3000 */
32
+ maxLength?: number;
31
33
  }
32
34
  declare const CustomRichTextEditor: React.FC<CustomRichTextEditorProps>;
33
35
  export default CustomRichTextEditor;
package/dist/index.d.ts CHANGED
@@ -42,6 +42,7 @@ export { default as Tag } from './components/CustomTag/CustomTag';
42
42
  export { default as Calendar } from './components/CustomCalendar/CustomCalendar';
43
43
  export type { InputRef } from 'antd';
44
44
  export { default as RichTextEditor } from './components/CustomRichTextEditor/CustomRichTextEditor';
45
+ export type { default as CustomRichTextEditorProps } from './components/CustomRichTextEditor/CustomRichTextEditor';
45
46
  export { default as Menu } from './components/CustomMenu/CustomMenu';
46
47
  export { default as Dropdown } from './components/CustomDropdown/CustomDropdown';
47
48
  export { default as DragAndDrop } from './components/CustomDragAndDrop/CustomDragAndDrop';