@bigbinary/neeto-editor 1.12.6 → 1.12.7

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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
  3. package/types.d.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-editor",
3
- "version": "1.12.6",
3
+ "version": "1.12.7",
4
4
  "main": "./index.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
package/types.d.ts CHANGED
@@ -121,6 +121,9 @@ interface AttachmentsProps {
121
121
  attachments?: Array<attachment>;
122
122
  dragDropRef?: React.RefObject<HTMLDivElement>;
123
123
  onChange: (attachments: attachment[]) => void;
124
+ isIndependent?: boolean;
125
+ disabled?: boolean;
126
+ className?: string;
124
127
  }
125
128
 
126
129
  export function Editor(props: EditorProps): JSX.Element;