@bigbinary/neeto-editor 1.11.0 → 1.12.0

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 +11 -11
  2. package/package.json +2 -1
  3. package/types.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-editor",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "main": "./index.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
@@ -64,6 +64,7 @@
64
64
  "@tiptap/starter-kit": "2.0.0-beta.199",
65
65
  "@tiptap/suggestion": "2.0.0-beta.197",
66
66
  "@uppy/core": "2.3.1",
67
+ "@uppy/drop-target": "2.0.1",
67
68
  "@uppy/react": "2.2.2",
68
69
  "@uppy/url": "2.2.0",
69
70
  "antd": "4.18.7",
package/types.d.ts CHANGED
@@ -119,6 +119,7 @@ interface FormikEditorProps extends EditorProps {
119
119
  interface AttachmentsProps {
120
120
  endpoint?: string;
121
121
  attachments?: Array<attachment>;
122
+ dragDropRef?: React.RefObject<HTMLDivElement>;
122
123
  onChange: (attachments: attachment[]) => void;
123
124
  }
124
125