@flozy/editor 9.6.3 → 9.6.5
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.
@@ -302,6 +302,10 @@ const EditorButton = props => {
|
|
302
302
|
open: true,
|
303
303
|
placement: "right",
|
304
304
|
container: buttonRef?.current,
|
305
|
+
modifiers: [{
|
306
|
+
name: "preventOverflow",
|
307
|
+
enabled: false
|
308
|
+
}],
|
305
309
|
children: /*#__PURE__*/_jsx(IconButton, {
|
306
310
|
className: `moreBtnShow ${isMobile || openMoreOptions ? "activeBtnShow" : ""}`,
|
307
311
|
sx: {
|
@@ -112,7 +112,7 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
112
112
|
open: open,
|
113
113
|
onClose: handleClose,
|
114
114
|
customClass: "emojiDrawer",
|
115
|
-
swipeableDrawer:
|
115
|
+
swipeableDrawer: true,
|
116
116
|
children: /*#__PURE__*/_jsx(Paper, {
|
117
117
|
sx: {
|
118
118
|
width: '100%',
|
@@ -18,7 +18,19 @@ const withEmbeds = editor => {
|
|
18
18
|
};
|
19
19
|
editor.insertNodes = (...args) => {
|
20
20
|
try {
|
21
|
+
const {
|
22
|
+
selection
|
23
|
+
} = editor;
|
24
|
+
if (!selection || !selection.focus) {
|
25
|
+
console.warn("No valid selection. Inserting nodes without selection.");
|
26
|
+
insertNodes(...args);
|
27
|
+
return;
|
28
|
+
}
|
21
29
|
const parentPath = Path.parent(editor.selection.focus.path);
|
30
|
+
if (parentPath[parentPath.length - 1] === 0) {
|
31
|
+
insertNodes(...args);
|
32
|
+
return;
|
33
|
+
}
|
22
34
|
const parentNode = Node.get(editor, parentPath);
|
23
35
|
const previousPath = Path.previous(parentPath);
|
24
36
|
const previousNode = Node.get(editor, previousPath);
|