@bigbinary/neeto-editor 1.26.11 → 1.26.13
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/index.cjs.js +1271 -1448
- package/index.cjs.js.map +1 -1
- package/index.js +1271 -1448
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +2 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ interface EditorProps {
|
|
|
122
122
|
error?: string;
|
|
123
123
|
attachments?: Array<attachment>;
|
|
124
124
|
onChangeAttachments?: (attachments: attachment[]) => void;
|
|
125
|
+
showAttachmentsToastr?: boolean;
|
|
125
126
|
children?: ReactNode;
|
|
126
127
|
[otherProps: string]: any;
|
|
127
128
|
}
|
|
@@ -138,6 +139,7 @@ interface AttachmentsProps {
|
|
|
138
139
|
isIndependent?: boolean;
|
|
139
140
|
disabled?: boolean;
|
|
140
141
|
className?: string;
|
|
142
|
+
showToastr?: boolean;
|
|
141
143
|
}
|
|
142
144
|
|
|
143
145
|
export function Editor(props: EditorProps): JSX.Element;
|