jodit-pro-react 5.4.14 → 5.4.16

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.
@@ -0,0 +1,20 @@
1
+ import { DeepPartial } from 'jodit/esm/types';
2
+ import { Jodit } from 'jodit-pro/esm/index.js';
3
+ import { Config } from 'jodit-pro/esm/config';
4
+ import React from 'react';
5
+
6
+ interface JoditEditorProps<T extends typeof Jodit = typeof Jodit> {
7
+ JoditConstructor?: T;
8
+ config?: DeepPartial<Config>;
9
+ className?: string;
10
+ id?: string;
11
+ name?: string;
12
+ onBlur?: (value: string, event: MouseEvent) => void;
13
+ onChange?: (value: string) => void;
14
+ tabIndex?: number;
15
+ value?: string;
16
+ editorRef?: (editor: Jodit) => void;
17
+ }
18
+ declare const JoditEditor: React.ForwardRefExoticComponent<JoditEditorProps<typeof Jodit> & React.RefAttributes<Jodit>>;
19
+
20
+ export { type JoditEditorProps, JoditEditor as default };
@@ -0,0 +1,6 @@
1
+ import {
2
+ JoditEditor_default
3
+ } from "./chunk-O64OOYGL.mjs";
4
+ export {
5
+ JoditEditor_default as default
6
+ };