@micromerce/formbuilder-react 1.0.769 → 1.0.772
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.
- package/dist/components/Textarea/editors/Default.d.ts +2 -1
- package/dist/components/Textarea/editors/Html.d.ts +2 -0
- package/dist/components/Textarea/editors/Json.d.ts +2 -0
- package/dist/components/Textarea/editors/Markdown.d.ts +2 -0
- package/dist/components/Textarea/editors/Richtext.d.ts +2 -0
- package/dist/formbuilder.js +3 -3
- package/dist/formbuilder.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export interface IProps extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTex
|
|
|
9
9
|
textColor?: string;
|
|
10
10
|
errorClass?: string;
|
|
11
11
|
placeholder?: string;
|
|
12
|
+
isStyleFull?: boolean;
|
|
12
13
|
}
|
|
13
|
-
declare const DefaultEditor: ({ value, onChange, id, readOnly, control, errorClass, textColor, placeholder, }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
declare const DefaultEditor: ({ value, onChange, id, readOnly, control, errorClass, textColor, placeholder, isStyleFull, }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export default DefaultEditor;
|
|
@@ -6,6 +6,8 @@ interface IHtmlEditorProps {
|
|
|
6
6
|
id: string;
|
|
7
7
|
readOnly: boolean;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
onChangeValue?: (newProperties: OnChangeValueType) => void;
|
|
10
|
+
isStyleFull?: boolean;
|
|
9
11
|
}
|
|
10
12
|
declare const HtmlEditor: React.FC<IHtmlEditorProps>;
|
|
11
13
|
export default HtmlEditor;
|
|
@@ -6,6 +6,8 @@ interface ICodeEditorProps {
|
|
|
6
6
|
id: string;
|
|
7
7
|
readOnly: boolean;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
onChangeValue?: (newProperties: OnChangeValueType) => void;
|
|
10
|
+
isStyleFull?: boolean;
|
|
9
11
|
}
|
|
10
12
|
declare const CodeEditor: React.FC<ICodeEditorProps>;
|
|
11
13
|
export default CodeEditor;
|
|
@@ -6,6 +6,8 @@ interface IMarkdownEditorProps {
|
|
|
6
6
|
id: string;
|
|
7
7
|
readOnly: boolean;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
onChangeValue?: (newProperties: OnChangeValueType) => void;
|
|
10
|
+
isStyleFull?: boolean;
|
|
9
11
|
}
|
|
10
12
|
declare const MarkdownEditor: React.FC<IMarkdownEditorProps>;
|
|
11
13
|
export default MarkdownEditor;
|
|
@@ -8,6 +8,8 @@ interface IRichTextEditorProps {
|
|
|
8
8
|
id: string;
|
|
9
9
|
readOnly: boolean;
|
|
10
10
|
placeholder?: string;
|
|
11
|
+
onChangeValue?: (newProperties: OnChangeValueType) => void;
|
|
12
|
+
isStyleFull?: boolean;
|
|
11
13
|
}
|
|
12
14
|
declare const RichTextEditor: React.FC<IRichTextEditorProps>;
|
|
13
15
|
export default RichTextEditor;
|