@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-editor",
3
- "version": "1.26.11",
3
+ "version": "1.26.13",
4
4
  "main": "./index.cjs.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
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;