@bigbinary/neeto-editor 1.27.1 → 1.27.2

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.27.1",
3
+ "version": "1.27.2",
4
4
  "main": "./index.cjs.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
package/types.d.ts CHANGED
@@ -68,7 +68,6 @@ interface MenuProps {
68
68
  menuType?: "fixed" | "bubble" | "headless" | "none";
69
69
  defaults?: string[];
70
70
  addons?: string[];
71
- uploadEndpoint?: string;
72
71
  mentions?: Mention[];
73
72
  editorSecrets?: Array<{ unsplash?: string }>;
74
73
  variables?: (VariableCategory | Variable)[];
@@ -92,6 +91,7 @@ interface attachmentsConfig {
92
91
  interface EditorProps {
93
92
  attachmentsConfig?: attachmentsConfig;
94
93
  isMenuIndependent?: boolean;
94
+ isMenuCollapsible?: boolean;
95
95
  menuClassName?: string;
96
96
  attachmentsClassName?: string;
97
97
  tooltips?: tooltips;
@@ -106,7 +106,6 @@ interface EditorProps {
106
106
  addonCommands?: Command[];
107
107
  className?: string;
108
108
  contentClassName?: string;
109
- uploadEndpoint?: string;
110
109
  onChange?: (htmlContent: string) => void;
111
110
  onFocus?: EditorFocus;
112
111
  onBlur?: EditorFocus;