@flozy/editor 9.8.6 → 9.8.8
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/dist/Editor/CommonEditor.js +1 -0
- package/dist/Editor/Editor.css +1 -1
- package/dist/Editor/Elements/Button/EditorButton.js +16 -12
- package/dist/Editor/Elements/Search/SearchButton.js +1 -1
- package/dist/Editor/Elements/Search/SearchList.js +2 -3
- package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +8 -2
- package/dist/Editor/Elements/Title/title.js +2 -3
- package/dist/Editor/common/MUIIcon/index.js +3 -0
- package/dist/Editor/common/RnD/index.js +7 -0
- package/dist/Editor/common/SwipeableDrawer/index.js +1 -1
- package/dist/Editor/common/iconslist.js +22 -0
- package/dist/Editor/plugins/withHTML.js +2 -1
- package/dist/Editor/themeSettings/index.js +1 -1
- package/dist/Editor/themeSettingsAI/index.js +1 -1
- package/dist/Editor/themeSettingsAI/saveTheme.js +1 -1
- package/package.json +1 -1
package/dist/Editor/Editor.css
CHANGED
@@ -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
|
-
|
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
|
-
|
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:
|
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
|
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
|
-
|
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",
|
@@ -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, {
|
@@ -1655,11 +1655,33 @@ export const CsvIcon = () => /*#__PURE__*/_jsxs("svg", {
|
|
1655
1655
|
})]
|
1656
1656
|
});
|
1657
1657
|
export const CloseIcon = props => /*#__PURE__*/_jsxs("svg", {
|
1658
|
+
width: "20",
|
1659
|
+
height: "20",
|
1660
|
+
viewBox: "0 0 20 20",
|
1661
|
+
fill: "none",
|
1662
|
+
xmlns: "http://www.w3.org/2000/svg",
|
1663
|
+
...(props || {}),
|
1664
|
+
children: [/*#__PURE__*/_jsx("path", {
|
1665
|
+
d: "M14.1245 5.875L5.87493 14.1246",
|
1666
|
+
stroke: "#64748B",
|
1667
|
+
strokeWidth: "1.5",
|
1668
|
+
strokeLinecap: "round",
|
1669
|
+
strokeLinejoin: "round"
|
1670
|
+
}), /*#__PURE__*/_jsx("path", {
|
1671
|
+
d: "M5.875 5.875L14.1246 14.1246",
|
1672
|
+
stroke: "#64748B",
|
1673
|
+
strokeWidth: "1.5",
|
1674
|
+
strokeLinecap: "round",
|
1675
|
+
strokeLinejoin: "round"
|
1676
|
+
})]
|
1677
|
+
});
|
1678
|
+
export const CloseIcon2 = props => /*#__PURE__*/_jsxs("svg", {
|
1658
1679
|
width: "10",
|
1659
1680
|
height: "10",
|
1660
1681
|
viewBox: "0 0 10 10",
|
1661
1682
|
fill: "none",
|
1662
1683
|
xmlns: "http://www.w3.org/2000/svg",
|
1684
|
+
...(props || {}),
|
1663
1685
|
children: [/*#__PURE__*/_jsx("path", {
|
1664
1686
|
d: "M9.12476 0.875L0.875176 9.12458",
|
1665
1687
|
stroke: "#8F9CAE",
|
@@ -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
|
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");
|
@@ -5,7 +5,7 @@ import { Box, CircularProgress, Drawer, Grid, IconButton, Tab, Tabs, Typography,
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { TickIcon } from "./icons";
|
10
10
|
import ColorTheme from "./colorTheme";
|
11
11
|
import Buttons from "./buttons";
|
@@ -5,7 +5,7 @@ import { Button, Checkbox, CircularProgress, Divider, Drawer, FormControlLabel,
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { CloudIcon } from "./icons";
|
10
10
|
import { TickIcon } from "./icons";
|
11
11
|
import { ResetIcon } from "./icons";
|
@@ -5,7 +5,7 @@ import { Box, Button, CircularProgress, Dialog, Divider, Grid, IconButton, TextF
|
|
5
5
|
import Style from "./style";
|
6
6
|
|
7
7
|
// icons
|
8
|
-
import { CloseIcon } from "../common/iconslist";
|
8
|
+
import { CloseIcon2 as CloseIcon } from "../common/iconslist";
|
9
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
10
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
11
11
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|