@flozy/editor 9.6.1 → 9.6.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/dist/Editor/CommonEditor.js +1 -0
- package/dist/Editor/Editor.css +2 -2
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Elements/Table/Table.js +1 -1
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +3 -6
- package/dist/Editor/Toolbar/PopupTool/index.js +9 -3
- package/dist/Editor/common/ImageSelector/Options/Upload.js +1 -1
- package/dist/Editor/common/ImageSelector/UploadStyles.js +9 -9
- package/dist/Editor/common/RnD/ElementSettings/styles.js +1 -0
- package/dist/Editor/common/RnD/index.js +7 -0
- package/dist/Editor/commonStyle.js +49 -49
- package/dist/Editor/hooks/useDrag.js +1 -1
- package/dist/Editor/hooks/useEditorScroll.js +1 -0
- package/dist/Editor/plugins/withHTML.js +2 -1
- package/dist/Editor/utils/SlateUtilityFunctions.js +1 -1
- package/package.json +2 -2
package/dist/Editor/Editor.css
CHANGED
@@ -5,7 +5,7 @@ import AspectRatioIcon from "@mui/icons-material/AspectRatio";
|
|
5
5
|
import useResize from "../../utils/customHooks/useResize";
|
6
6
|
import EmbedPopup from "./EmbedPopup";
|
7
7
|
import { IconButton, Tooltip, Box, useTheme } from "@mui/material";
|
8
|
-
import {
|
8
|
+
import { LinkIcon } from "../../common/iconslist";
|
9
9
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
10
10
|
import { getTRBLBreakPoints, getBreakPointsValue, groupByBreakpoint } from "../../helper/theme";
|
11
11
|
import Icon from "../../common/Icon";
|
@@ -32,7 +32,7 @@ const ToolBar = ({
|
|
32
32
|
top: "-4px",
|
33
33
|
left: topM ? "35px" : "0px",
|
34
34
|
margin: "0px",
|
35
|
-
gap:
|
35
|
+
gap: "3px"
|
36
36
|
},
|
37
37
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
38
38
|
title: "Image Settings",
|
@@ -297,7 +297,7 @@ const Table = props => {
|
|
297
297
|
onScroll: handleScroll,
|
298
298
|
onMouseOver: onMouseOver,
|
299
299
|
onMouseLeave: onMouseLeave,
|
300
|
-
className: "custom-scroll",
|
300
|
+
className: !hideTools.includes("add_column") ? "custom-scroll" : '',
|
301
301
|
children: [/*#__PURE__*/_jsx(TableComp, {
|
302
302
|
className: readOnly ? "readOnly" : "",
|
303
303
|
sx: {
|
@@ -33,17 +33,14 @@ const TextFormat = props => {
|
|
33
33
|
const [anchorEl, setAnchorEl] = useState(null);
|
34
34
|
const [type, setType] = useState(null);
|
35
35
|
const open = Boolean(anchorEl);
|
36
|
-
|
37
|
-
|
38
|
-
} = getPageSettings(editor) || {};
|
36
|
+
|
37
|
+
// const { element: pageSt } = getPageSettings(editor) || {};
|
39
38
|
// const pageSettingLine = pageSt?.pageProps?.lineHeight;
|
40
39
|
const {
|
41
40
|
fontFamilies,
|
42
41
|
theme
|
43
42
|
} = useEditorContext();
|
44
|
-
const {
|
45
|
-
activeBreakPoint
|
46
|
-
} = useEditorContext();
|
43
|
+
// const { activeBreakPoint } = useEditorContext();
|
47
44
|
// const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
|
48
45
|
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
49
46
|
const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
|
@@ -14,7 +14,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
14
14
|
const PopupTool = props => {
|
15
15
|
const {
|
16
16
|
theme,
|
17
|
-
setIsTextSelected,
|
18
17
|
customProps,
|
19
18
|
editorWrapper
|
20
19
|
} = props;
|
@@ -35,6 +34,9 @@ const PopupTool = props => {
|
|
35
34
|
const [size] = useWindowResize();
|
36
35
|
const updateAnchorEl = isScroll => {
|
37
36
|
try {
|
37
|
+
const {
|
38
|
+
selection
|
39
|
+
} = editor;
|
38
40
|
const isHavingSelection = selection && !Range.isCollapsed(selection);
|
39
41
|
if (isHavingSelection && event === "end") {
|
40
42
|
const domRange = ReactEditor.toDOMRange(editor, editor.selection);
|
@@ -74,15 +76,16 @@ const PopupTool = props => {
|
|
74
76
|
if (!isCarouselEdit) {
|
75
77
|
setOpen(true);
|
76
78
|
setPopupType("textFormat");
|
77
|
-
setIsTextSelected(true);
|
79
|
+
// setIsTextSelected(true);
|
78
80
|
}
|
79
81
|
} else if (!anchorEl) {
|
80
82
|
setOpen(false);
|
81
83
|
setPopupType("");
|
82
|
-
setIsTextSelected(false);
|
84
|
+
// setIsTextSelected(false);
|
83
85
|
}
|
84
86
|
}, [event, anchorEl]);
|
85
87
|
useEffect(() => {
|
88
|
+
console.log("Editor useEffect", selection);
|
86
89
|
const {
|
87
90
|
path,
|
88
91
|
enable
|
@@ -92,17 +95,20 @@ const PopupTool = props => {
|
|
92
95
|
if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || isFreeGridEnabled) {
|
93
96
|
setAnchorEl(null);
|
94
97
|
} else {
|
98
|
+
console.log("Editor updateAnchorEl", selection);
|
95
99
|
updateAnchorEl();
|
96
100
|
hideSlateSelection(); // removes slate selection background, when there is no selection
|
97
101
|
}
|
98
102
|
}, [selection, event, selectedElement?.enable]);
|
99
103
|
const handleClose = () => {
|
104
|
+
console.log("Editor closing");
|
100
105
|
// setAnchorEl(null);
|
101
106
|
setOpen(false);
|
102
107
|
setPopupType("");
|
103
108
|
};
|
104
109
|
return open && !openAI ? /*#__PURE__*/_jsx(ClickAwayListener, {
|
105
110
|
onClickAway: e => {
|
111
|
+
console.log("ClickAwayListener", e.target, document.body, e.target !== document.body);
|
106
112
|
// close the mini toolbar, if user clicks outside the editor (in Flozy app.)
|
107
113
|
if (e.target !== document.body) {
|
108
114
|
// e.target returns body, if the user clicks material ui select popup inside the tool bar, on that time, we don't need to close
|
@@ -5,8 +5,8 @@ const UploadStyles = theme => ({
|
|
5
5
|
borderRadius: "11px",
|
6
6
|
boxShadow: "0px 4px 10px rgba(0, 0, 0, 0.16)",
|
7
7
|
background: theme?.palette?.editor?.uploadFileBg,
|
8
|
-
minHeight:
|
9
|
-
height:
|
8
|
+
minHeight: "150px",
|
9
|
+
height: "inherit"
|
10
10
|
},
|
11
11
|
uploadField: {
|
12
12
|
width: "100%",
|
@@ -18,21 +18,21 @@ const UploadStyles = theme => ({
|
|
18
18
|
backgroundColor: theme?.palette?.editor?.uploadFileInnerBg,
|
19
19
|
borderRadius: "9px",
|
20
20
|
border: "1px dashed #2563EB",
|
21
|
-
minHeight:
|
21
|
+
minHeight: "150px"
|
22
22
|
},
|
23
23
|
uploadIcon: {
|
24
24
|
display: "grid !important",
|
25
25
|
"& svg": {
|
26
|
-
display:
|
27
|
-
width:
|
26
|
+
display: "flex",
|
27
|
+
width: "100%",
|
28
28
|
"& path": {
|
29
29
|
stroke: "#2563EB"
|
30
30
|
}
|
31
31
|
},
|
32
|
-
|
33
|
-
display:
|
34
|
-
width:
|
35
|
-
marginTop:
|
32
|
+
"& span": {
|
33
|
+
display: "flex",
|
34
|
+
width: "100%",
|
35
|
+
marginTop: "5px"
|
36
36
|
}
|
37
37
|
}
|
38
38
|
});
|
@@ -58,6 +58,7 @@ const useElementSettingsStyle = theme => ({
|
|
58
58
|
maxHeight: "500px",
|
59
59
|
overflowX: "hidden",
|
60
60
|
overflowY: "auto",
|
61
|
+
paddingLeft: "4px",
|
61
62
|
background: theme?.palette?.editor?.background,
|
62
63
|
paddingLeft: "4px",
|
63
64
|
"& .MuiTypography-root, .MuiInputBase-root, input": {
|
@@ -470,6 +470,13 @@ const RnD = props => {
|
|
470
470
|
}
|
471
471
|
e.preventDefault();
|
472
472
|
e.stopPropagation();
|
473
|
+
const isMuiBackdrop = e.target.classList.contains("MuiBackdrop-root");
|
474
|
+
if (isMuiBackdrop) {
|
475
|
+
setContextMenu({
|
476
|
+
path: null
|
477
|
+
});
|
478
|
+
return;
|
479
|
+
}
|
473
480
|
onClick({
|
474
481
|
detail: 1
|
475
482
|
});
|
@@ -54,10 +54,10 @@ const useCommonStyle = theme => ({
|
|
54
54
|
marginTop: "4px"
|
55
55
|
},
|
56
56
|
"& .MuiPaper-root": {
|
57
|
-
border:
|
58
|
-
borderRadius:
|
59
|
-
height:
|
60
|
-
padding:
|
57
|
+
border: "unset !important",
|
58
|
+
borderRadius: "0px",
|
59
|
+
height: "fit-content",
|
60
|
+
padding: "2px"
|
61
61
|
},
|
62
62
|
"& .muiIconsListParent": {
|
63
63
|
"& svg": {
|
@@ -73,7 +73,7 @@ const useCommonStyle = theme => ({
|
|
73
73
|
"& .MuiGrid-root>.MuiGrid-item": {
|
74
74
|
paddingRight: "0px !important",
|
75
75
|
fontFamily: "Inter, sans-serif",
|
76
|
-
height:
|
76
|
+
height: "fit-content"
|
77
77
|
},
|
78
78
|
"& .MuiInputBase-root": {
|
79
79
|
borderRadius: "10px",
|
@@ -134,14 +134,14 @@ const useCommonStyle = theme => ({
|
|
134
134
|
borderRadius: "10px",
|
135
135
|
width: "46px !important",
|
136
136
|
marginLeft: "10px",
|
137
|
-
height:
|
137
|
+
height: "36px !important"
|
138
138
|
},
|
139
139
|
"& .spacingSlider": {
|
140
140
|
width: "calc(100% - 18px)"
|
141
141
|
}
|
142
142
|
},
|
143
|
-
|
144
|
-
margin:
|
143
|
+
"& .MuiFormHelperText-root": {
|
144
|
+
margin: "4px 0px 0px 0px",
|
145
145
|
color: theme?.palette?.editor?.closeButtonSvgStroke,
|
146
146
|
fontFamily: "Inter, sans-serif"
|
147
147
|
}
|
@@ -397,14 +397,14 @@ const useCommonStyle = theme => ({
|
|
397
397
|
padding: "8px 12px",
|
398
398
|
fontSize: "12px",
|
399
399
|
color: theme?.palette?.editor?.menuOptionTextColor,
|
400
|
-
fontWeight:
|
400
|
+
fontWeight: "500",
|
401
401
|
fontFamily: "Inter, sans-serif",
|
402
|
-
minHeight:
|
402
|
+
minHeight: "36px",
|
403
403
|
"&:hover": {
|
404
404
|
backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
|
405
405
|
}
|
406
406
|
},
|
407
|
-
|
407
|
+
"& .Mui-selected": {
|
408
408
|
background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
|
409
409
|
},
|
410
410
|
"& .MuiListSubheader-root": {
|
@@ -413,16 +413,16 @@ const useCommonStyle = theme => ({
|
|
413
413
|
fontSize: "12px"
|
414
414
|
},
|
415
415
|
"& .MuiPaper-root": {
|
416
|
-
borderRadius:
|
417
|
-
padding:
|
416
|
+
borderRadius: "8px",
|
417
|
+
padding: "0px",
|
418
418
|
background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
|
419
419
|
},
|
420
|
-
|
421
|
-
margin:
|
422
|
-
borderRadius:
|
420
|
+
"& .MuiButtonBase-root": {
|
421
|
+
margin: "4px",
|
422
|
+
borderRadius: "6px"
|
423
423
|
},
|
424
|
-
|
425
|
-
padding:
|
424
|
+
"& .MuiList-root": {
|
425
|
+
padding: "0px"
|
426
426
|
}
|
427
427
|
},
|
428
428
|
datePicker: {
|
@@ -529,11 +529,11 @@ const useCommonStyle = theme => ({
|
|
529
529
|
buttonMoreOption: {
|
530
530
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
531
531
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
532
|
-
padding:
|
533
|
-
|
534
|
-
width:
|
535
|
-
height:
|
536
|
-
|
532
|
+
padding: "4px !important",
|
533
|
+
"& svg": {
|
534
|
+
width: "18px !important",
|
535
|
+
height: "18px !important",
|
536
|
+
"& path": {
|
537
537
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
538
538
|
}
|
539
539
|
}
|
@@ -541,8 +541,8 @@ const useCommonStyle = theme => ({
|
|
541
541
|
buttonMoreOption2: {
|
542
542
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
543
543
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
544
|
-
|
545
|
-
|
544
|
+
"& svg": {
|
545
|
+
"& path": {
|
546
546
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
547
547
|
}
|
548
548
|
}
|
@@ -550,11 +550,11 @@ const useCommonStyle = theme => ({
|
|
550
550
|
buttonMoreOption3: {
|
551
551
|
background: `${theme?.palette?.editor?.aiInputBackground} !important`,
|
552
552
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
553
|
-
padding:
|
554
|
-
|
555
|
-
width:
|
556
|
-
height:
|
557
|
-
|
553
|
+
padding: "5px !important",
|
554
|
+
"& svg": {
|
555
|
+
width: "16px !important",
|
556
|
+
height: "16px !important",
|
557
|
+
"& path": {
|
558
558
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
559
559
|
}
|
560
560
|
}
|
@@ -562,37 +562,37 @@ const useCommonStyle = theme => ({
|
|
562
562
|
resizeButton: {
|
563
563
|
background: theme?.palette?.editor?.aiInputBackground,
|
564
564
|
border: `1px solid ${theme?.palette?.editor?.buttonBorder1}`,
|
565
|
-
padding:
|
566
|
-
borderRadius:
|
567
|
-
|
568
|
-
width:
|
569
|
-
height:
|
570
|
-
|
565
|
+
padding: "5px !important",
|
566
|
+
borderRadius: "50% !important",
|
567
|
+
"& svg": {
|
568
|
+
width: "18px",
|
569
|
+
height: "18px",
|
570
|
+
"& path": {
|
571
571
|
fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
|
572
572
|
}
|
573
573
|
},
|
574
|
-
|
574
|
+
"&:hover": {
|
575
575
|
background: theme?.palette?.editor?.aiInputBackground
|
576
576
|
}
|
577
577
|
},
|
578
578
|
gradientFillBtn: {
|
579
579
|
background: `linear-gradient(112.61deg, #2C63ED 19.3%, #8360FD 88.14%) !important`,
|
580
|
-
textTransform:
|
581
|
-
color:
|
582
|
-
padding:
|
583
|
-
height:
|
584
|
-
borderRadius:
|
585
|
-
fontWeight:
|
586
|
-
fontSize:
|
580
|
+
textTransform: "math-auto !important",
|
581
|
+
color: "#FFFFFF !important",
|
582
|
+
padding: "0px 12px !important",
|
583
|
+
height: "32px",
|
584
|
+
borderRadius: "8px",
|
585
|
+
fontWeight: "500",
|
586
|
+
fontSize: "14px"
|
587
587
|
},
|
588
588
|
emptyThumbBtn: {
|
589
589
|
background: `${theme?.palette?.editor?.sectionSettingIconHover} !important`,
|
590
590
|
color: `${theme?.palette?.editor?.textColor} !important`,
|
591
|
-
fontSize:
|
592
|
-
|
593
|
-
width:
|
594
|
-
height:
|
595
|
-
|
591
|
+
fontSize: "14px !important",
|
592
|
+
"& svg": {
|
593
|
+
width: "20px !important",
|
594
|
+
height: "20px !important",
|
595
|
+
"& path": {
|
596
596
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
597
597
|
}
|
598
598
|
}
|
@@ -5,6 +5,7 @@ function useEditorScroll(editorWrapper = {
|
|
5
5
|
useEffect(() => {
|
6
6
|
if (!editorWrapper?.current) return;
|
7
7
|
const handleScroll = () => {
|
8
|
+
console.log("Editor debug useEditorScroll ====>", editorWrapper, callback);
|
8
9
|
callback("scroll");
|
9
10
|
};
|
10
11
|
const currentEditorWrapper = editorWrapper.current;
|
@@ -149,6 +149,7 @@ const getFocusedNode = (editor, nodeType = "") => {
|
|
149
149
|
console.log(err);
|
150
150
|
}
|
151
151
|
};
|
152
|
+
const voidTypes = ["image", "page-settings"];
|
152
153
|
const withHtml = editor => {
|
153
154
|
const {
|
154
155
|
insertData,
|
@@ -159,7 +160,7 @@ const withHtml = editor => {
|
|
159
160
|
return element.type === "link" ? true : isInline(element);
|
160
161
|
};
|
161
162
|
editor.isVoid = element => {
|
162
|
-
return element.type
|
163
|
+
return voidTypes.includes(element.type) ? true : isVoid(element);
|
163
164
|
};
|
164
165
|
editor.insertData = data => {
|
165
166
|
const slateHTML = data?.getData("application/x-slate-fragment");
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Editor, Transforms, Element as SlateElement, Range
|
1
|
+
import { Editor, Transforms, Element as SlateElement, Range } from "slate";
|
2
2
|
import { Box } from "@mui/material";
|
3
3
|
import { sizeMap } from "./font";
|
4
4
|
import Link from "../Elements/Link/Link";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@flozy/editor",
|
3
|
-
"version": "9.6.
|
3
|
+
"version": "9.6.2",
|
4
4
|
"description": "An Editor for flozy app brain",
|
5
5
|
"files": [
|
6
6
|
"dist"
|
@@ -61,7 +61,7 @@
|
|
61
61
|
"scripts": {
|
62
62
|
"prepare": "husky install .husky",
|
63
63
|
"analyze": "source-map-explorer build/static/js/*.js",
|
64
|
-
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
|
64
|
+
"lint": "./node_modules/. bin/eslint --ignore-path .gitignore .",
|
65
65
|
"start": "craco start",
|
66
66
|
"build": "NODE_OPTIONS='--max_old_space_size=4096' craco build",
|
67
67
|
"test": "craco test --passWithNoTests",
|