aq-fe-framework 0.1.278 → 0.1.279
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.
@@ -408,7 +408,7 @@ interface IMyTextEditor extends Partial<EditorOptions> {
|
|
408
408
|
autoHiddenToolBar?: boolean;
|
409
409
|
withAsterisk?: boolean;
|
410
410
|
inputWrapperProps?: InputWrapperProps;
|
411
|
-
richTextEditorProps?: RichTextEditorProps
|
411
|
+
richTextEditorProps?: Omit<RichTextEditorProps, "editor" | "children">;
|
412
412
|
}
|
413
413
|
declare function MyTextEditor({ autoHiddenToolBar, contentHeight, onChange, value, error, label, withAsterisk, inputWrapperProps, richTextEditorProps, ...rest }: IMyTextEditor): react_jsx_runtime.JSX.Element;
|
414
414
|
|