@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.
- package/index.js +1 -1
- package/package.json +1 -1
- package/types.d.ts +3 -0
package/package.json
CHANGED
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;
|