@flozy/editor 9.8.6 → 9.8.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.
@@ -298,6 +298,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
298
298
  },
299
299
  toggleFullscreen() {
300
300
  setFullScreen(!fullScreen);
301
+ Transforms.deselect(editor);
301
302
  },
302
303
  toggleToolbarShow() {
303
304
  setToolbarShow(!toolbarShow);
@@ -62,7 +62,7 @@ blockquote {
62
62
  height: fit-content;
63
63
  max-width: 100%;
64
64
  border: none !important;
65
- z-index: 1;
65
+ /* z-index: 1; */
66
66
  }
67
67
 
68
68
  .editor-wrapper table {
@@ -40,6 +40,7 @@ const EditorButton = props => {
40
40
  const [edit, setEdit] = useState(false);
41
41
  const [openNav, setOpenNav] = useState(false);
42
42
  const [openMoreOptions, setOpenMoreOptions] = useState(false);
43
+ const [, setIconLoaded] = useState(false);
43
44
  const classes = useCommonStyle(appTheme);
44
45
  const {
45
46
  theme: selectedTheme
@@ -220,6 +221,15 @@ const EditorButton = props => {
220
221
  e.stopPropagation();
221
222
  setOpenMoreOptions(!openMoreOptions);
222
223
  };
224
+ const muiIconProps = {
225
+ iconName: buttonIcon,
226
+ style: {
227
+ paddingLeft: "4px",
228
+ paddingRight: "4px"
229
+ },
230
+ props: customProps,
231
+ onIconLoad: () => setIconLoaded(true)
232
+ };
223
233
  return /*#__PURE__*/_jsxs("div", {
224
234
  className: `editor-btn-wrapper`,
225
235
  ...attributes,
@@ -300,25 +310,19 @@ const EditorButton = props => {
300
310
  },
301
311
  ...buttonProps,
302
312
  children: [BtnIcon && iconPosition === "start" && /*#__PURE__*/_jsx(MUIIcon, {
303
- iconName: buttonIcon,
304
- style: {
305
- paddingLeft: "4px",
306
- paddingRight: "4px"
307
- },
308
- props: customProps
313
+ ...muiIconProps
309
314
  }), label || translation("My Button"), BtnIcon && iconPosition === "end" && /*#__PURE__*/_jsx(MUIIcon, {
310
- iconName: buttonIcon,
311
- style: {
312
- paddingLeft: "4px",
313
- paddingRight: "4px"
314
- },
315
- props: customProps
315
+ ...muiIconProps
316
316
  })]
317
317
  }), !readOnly && buttonRef?.current && /*#__PURE__*/_jsx(Popper, {
318
318
  anchorEl: buttonRef?.current,
319
319
  open: true,
320
320
  placement: "right",
321
321
  container: buttonRef?.current,
322
+ modifiers: [{
323
+ name: "preventOverflow",
324
+ enabled: false
325
+ }],
322
326
  children: /*#__PURE__*/_jsx(IconButton, {
323
327
  className: `moreBtnShow ${isMobile || openMoreOptions ? "activeBtnShow" : ""}`,
324
328
  sx: {
@@ -113,7 +113,7 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
113
113
  open: open,
114
114
  onClose: handleClose,
115
115
  customClass: "emojiDrawer",
116
- swipeableDrawer: false,
116
+ swipeableDrawer: true,
117
117
  children: /*#__PURE__*/_jsx(Paper, {
118
118
  sx: {
119
119
  width: '100%',
@@ -35,7 +35,7 @@ const SearchAndDocList = ({
35
35
  children: translation("Brains")
36
36
  }), !isMobile ? /*#__PURE__*/_jsx(IconButton, {
37
37
  onClick: e => {
38
- e.stopPropagation();
38
+ e?.stopPropagation();
39
39
  handleClose();
40
40
  },
41
41
  sx: {
@@ -138,8 +138,7 @@ const SearchAndDocList = ({
138
138
  position: 'relative',
139
139
  maxHeight: '400px',
140
140
  minWidth: "275px",
141
- overflowY: 'auto',
142
- overflowX: 'hidden',
141
+ overflow: 'auto',
143
142
  padding: '0px 16px 8px',
144
143
  marginBottom: '20px',
145
144
  scrollbarWidth: "thin",
@@ -1,6 +1,6 @@
1
1
  import React, { useRef, useState } from "react";
2
2
  import SignatureCanvas from "react-signature-canvas";
3
- import { Grid } from "@mui/material";
3
+ import { Grid, useMediaQuery } from "@mui/material";
4
4
  import { jsx as _jsx } from "react/jsx-runtime";
5
5
  import { jsxs as _jsxs } from "react/jsx-runtime";
6
6
  const DrawSignature = props => {
@@ -24,6 +24,11 @@ const DrawSignature = props => {
24
24
  signature: result?.imageURL || strImage
25
25
  });
26
26
  };
27
+ const isMobile = useMediaQuery("(max-width:599px)");
28
+ const signatureCanvasStyle = isMobile ? {
29
+ width: "260px",
30
+ height: "200px"
31
+ } : {};
27
32
  return /*#__PURE__*/_jsxs(Grid, {
28
33
  container: true,
29
34
  children: [uploading ? "Uploading..." : "", /*#__PURE__*/_jsx(Grid, {
@@ -35,7 +40,8 @@ const DrawSignature = props => {
35
40
  },
36
41
  children: /*#__PURE__*/_jsx(SignatureCanvas, {
37
42
  canvasProps: {
38
- className: "signature-canvas"
43
+ className: "signature-canvas",
44
+ ...signatureCanvasStyle
39
45
  },
40
46
  onEnd: onSigned,
41
47
  ref: ref => canvasRef = ref,
@@ -1,8 +1,7 @@
1
1
  import React, { useEffect, useState } from "react";
2
- import { Editor } from "slate";
2
+ import { Editor, Text } from "slate";
3
3
  import { useSlate } from "slate-react";
4
4
  import { getNodeText } from "../../utils/helper";
5
- import { Text } from "slate";
6
5
  import { jsx as _jsx } from "react/jsx-runtime";
7
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
8
7
  const isEmptyTextNode = node => {
@@ -18,8 +17,8 @@ const Title = props => {
18
17
  element,
19
18
  customProps
20
19
  } = props;
21
- useDetectExitFromTitle(element, customProps?.getTitleSaveData);
22
20
  const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
21
+ useDetectExitFromTitle(element, customProps?.getTitleSaveData);
23
22
  return /*#__PURE__*/_jsxs("div", {
24
23
  ...attributes,
25
24
  placeholder: "Title",
@@ -27,6 +27,9 @@ const DynamicIcon = ({
27
27
  iconLoader(iconName, props).then(iconHTML => {
28
28
  if (mounted) {
29
29
  setIcon(iconHTML);
30
+ if (props.onIconLoad) {
31
+ props.onIconLoad(iconHTML);
32
+ }
30
33
  }
31
34
  });
32
35
  return () => {
@@ -509,6 +509,13 @@ const RnD = props => {
509
509
  }
510
510
  e.preventDefault();
511
511
  e.stopPropagation();
512
+ const isMuiBackdrop = e.target.classList.contains("MuiBackdrop-root");
513
+ if (isMuiBackdrop) {
514
+ setContextMenu({
515
+ path: null
516
+ });
517
+ return;
518
+ }
512
519
  onClick({
513
520
  detail: 1
514
521
  });
@@ -29,8 +29,8 @@ function SwipeableDrawerComponent({
29
29
  } = useEditorContext();
30
30
  const classes = DrawerStyles(theme);
31
31
  const handleClose = e => {
32
- e.stopPropagation();
33
32
  onClose();
33
+ e?.stopPropagation();
34
34
  };
35
35
  return /*#__PURE__*/_jsx(Fragment, {
36
36
  children: swipeableDrawer ? /*#__PURE__*/_jsxs(SwipeableDrawer, {
@@ -151,6 +151,7 @@ const getFocusedNode = (editor, nodeType = "") => {
151
151
  console.log(err);
152
152
  }
153
153
  };
154
+ const voidTypes = ["image", "page-settings"];
154
155
  const withHtml = editor => {
155
156
  const {
156
157
  insertData,
@@ -161,7 +162,7 @@ const withHtml = editor => {
161
162
  return element.type === "link" ? true : isInline(element);
162
163
  };
163
164
  editor.isVoid = element => {
164
- return element.type === "image" ? true : isVoid(element);
165
+ return voidTypes.includes(element.type) ? true : isVoid(element);
165
166
  };
166
167
  editor.insertData = data => {
167
168
  const slateHTML = data?.getData("application/x-slate-fragment");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.8.6",
3
+ "version": "9.8.7",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"