@flozy/editor 9.6.0 → 9.6.1
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 +0 -1
- package/dist/Editor/Editor.css +2 -2
- package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -1
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +6 -1
- package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +7 -2
- package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +49 -26
- package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +4 -1
- package/dist/Editor/Elements/DataView/styles.js +13 -0
- package/dist/Editor/Elements/Embed/Image.js +2 -2
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +6 -3
- package/dist/Editor/Toolbar/PopupTool/index.js +3 -9
- package/dist/Editor/common/Icon.js +18 -1
- 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 +0 -1
- package/dist/Editor/common/RnD/index.js +0 -7
- package/dist/Editor/commonStyle.js +49 -49
- package/dist/Editor/hooks/useDrag.js +1 -1
- package/dist/Editor/hooks/useEditorScroll.js +0 -1
- package/dist/Editor/plugins/withHTML.js +1 -2
- package/dist/Editor/utils/SlateUtilityFunctions.js +1 -1
- package/package.json +2 -2
package/dist/Editor/Editor.css
CHANGED
@@ -57,7 +57,10 @@ const ColumnView = props => {
|
|
57
57
|
value: row[property?.key] || "",
|
58
58
|
rowIndex: rowIndex,
|
59
59
|
label: property?.label,
|
60
|
-
readOnly: readOnly
|
60
|
+
readOnly: readOnly,
|
61
|
+
settings: {
|
62
|
+
wrapColumn: property?.wrapColumn
|
63
|
+
}
|
61
64
|
}), needAnchor && !readOnly ? /*#__PURE__*/_jsx(Popper, {
|
62
65
|
sx: classes.root,
|
63
66
|
open: open,
|
@@ -40,13 +40,14 @@ export default function Select(props) {
|
|
40
40
|
limitTags = 2,
|
41
41
|
placeholder = "",
|
42
42
|
disabled = false,
|
43
|
-
optionAvatar = false
|
43
|
+
optionAvatar = false,
|
44
|
+
className = ""
|
44
45
|
} = props;
|
45
46
|
const value = Array.isArray(pValue) ? pValue : [];
|
46
47
|
const options = selectOptions?.length ? selectOptions.filter(s => s.value) : [];
|
47
48
|
return /*#__PURE__*/_jsx(Autocomplete, {
|
48
49
|
disabled: disabled,
|
49
|
-
className:
|
50
|
+
className: `tv-ac-field ${className}`,
|
50
51
|
multiple: true,
|
51
52
|
limitTags: limitTags,
|
52
53
|
placeholder: placeholder,
|
@@ -102,7 +103,7 @@ export default function Select(props) {
|
|
102
103
|
},
|
103
104
|
renderTags: (value, getTagProps) => {
|
104
105
|
return /*#__PURE__*/_jsx(Box, {
|
105
|
-
className:
|
106
|
+
className: `tv-ms-tag-wrpr ${className}`,
|
106
107
|
sx: {
|
107
108
|
"& svg": {
|
108
109
|
marginRight: "5px",
|
@@ -9,8 +9,12 @@ const MultiSelectType = props => {
|
|
9
9
|
value: pValue,
|
10
10
|
options,
|
11
11
|
label = "",
|
12
|
-
readOnly
|
12
|
+
readOnly,
|
13
|
+
settings
|
13
14
|
} = props;
|
15
|
+
const {
|
16
|
+
wrapColumn
|
17
|
+
} = settings;
|
14
18
|
const {
|
15
19
|
onChange
|
16
20
|
} = useDataView();
|
@@ -27,6 +31,7 @@ const MultiSelectType = props => {
|
|
27
31
|
});
|
28
32
|
};
|
29
33
|
return /*#__PURE__*/_jsx(Select, {
|
34
|
+
className: `wrap-${wrapColumn}`,
|
30
35
|
value: coloredValues,
|
31
36
|
onChange: handleChange,
|
32
37
|
options: options,
|
@@ -8,8 +8,12 @@ const TextType = props => {
|
|
8
8
|
rowIndex,
|
9
9
|
property,
|
10
10
|
value,
|
11
|
-
readOnly
|
11
|
+
readOnly,
|
12
|
+
settings
|
12
13
|
} = props;
|
14
|
+
const {
|
15
|
+
wrapColumn
|
16
|
+
} = settings;
|
13
17
|
const {
|
14
18
|
onChange
|
15
19
|
} = useDataView();
|
@@ -34,7 +38,8 @@ const TextType = props => {
|
|
34
38
|
onChange: handleChange,
|
35
39
|
disabled: readOnly,
|
36
40
|
id: `tv-text-input-${rowIndex}-${property}` // * should be unique
|
41
|
+
,
|
42
|
+
multiline: wrapColumn
|
37
43
|
});
|
38
44
|
};
|
39
|
-
|
40
45
|
export default TextType;
|
@@ -7,6 +7,7 @@ import Icon from "../../../../common/Icon";
|
|
7
7
|
import CloseIcon from "@mui/icons-material/Close";
|
8
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
9
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
|
+
const NEED_WRAPS = ["text", "multi-select"];
|
10
11
|
const EditProperty = props => {
|
11
12
|
const {
|
12
13
|
classes,
|
@@ -20,6 +21,8 @@ const EditProperty = props => {
|
|
20
21
|
const editData = useRef({
|
21
22
|
...edit
|
22
23
|
});
|
24
|
+
const type = mode?.edit?.type || "";
|
25
|
+
const needWrap = NEED_WRAPS?.indexOf(type) >= 0;
|
23
26
|
useEffect(() => {
|
24
27
|
return () => {
|
25
28
|
// on un-mount update the label
|
@@ -88,6 +91,12 @@ const EditProperty = props => {
|
|
88
91
|
}, false);
|
89
92
|
onEvent("close");
|
90
93
|
break;
|
94
|
+
case "wrapColumn":
|
95
|
+
onUpdate({
|
96
|
+
wrapColumn: !edit?.wrapColumn
|
97
|
+
});
|
98
|
+
// onEvent("close");
|
99
|
+
break;
|
91
100
|
case "Delete":
|
92
101
|
onEvent("deleteProperty", {
|
93
102
|
...editData?.current
|
@@ -108,17 +117,17 @@ const EditProperty = props => {
|
|
108
117
|
size: "small",
|
109
118
|
onClick: onBack,
|
110
119
|
sx: {
|
111
|
-
paddingLeft:
|
112
|
-
|
113
|
-
background:
|
120
|
+
paddingLeft: "0px",
|
121
|
+
"&:hover": {
|
122
|
+
background: "transparent !important"
|
114
123
|
},
|
115
|
-
|
116
|
-
width:
|
117
|
-
height:
|
124
|
+
"& svg": {
|
125
|
+
width: "14px !important",
|
126
|
+
height: "14px !important"
|
118
127
|
}
|
119
128
|
},
|
120
129
|
children: /*#__PURE__*/_jsx(Icon, {
|
121
|
-
icon:
|
130
|
+
icon: "leftArrow"
|
122
131
|
})
|
123
132
|
}), "Edit Property"]
|
124
133
|
}), /*#__PURE__*/_jsx(IconButton, {
|
@@ -126,8 +135,8 @@ const EditProperty = props => {
|
|
126
135
|
size: "small",
|
127
136
|
onClick: onClose,
|
128
137
|
sx: {
|
129
|
-
|
130
|
-
|
138
|
+
"& svg": {
|
139
|
+
"& path": {
|
131
140
|
strokeWidth: 0
|
132
141
|
}
|
133
142
|
}
|
@@ -140,8 +149,8 @@ const EditProperty = props => {
|
|
140
149
|
label: "Field Name",
|
141
150
|
labelPlacement: "top",
|
142
151
|
sx: {
|
143
|
-
|
144
|
-
marginBottom:
|
152
|
+
"& .MuiFormControl-root": {
|
153
|
+
marginBottom: "4px"
|
145
154
|
}
|
146
155
|
},
|
147
156
|
control: /*#__PURE__*/_jsx(TextField, {
|
@@ -151,31 +160,45 @@ const EditProperty = props => {
|
|
151
160
|
fullWidth: true,
|
152
161
|
placeholder: "Field Name"
|
153
162
|
})
|
154
|
-
}), /*#__PURE__*/_jsx(List, {
|
163
|
+
}), needWrap ? /*#__PURE__*/_jsx(List, {
|
164
|
+
className: "fe-dv-opt-list",
|
165
|
+
children: /*#__PURE__*/_jsxs(ListItemButton, {
|
166
|
+
onClick: onAction("wrapColumn"),
|
167
|
+
children: [/*#__PURE__*/_jsx(ListItemText, {
|
168
|
+
children: "Wrap Column"
|
169
|
+
}), /*#__PURE__*/_jsx(ListItemIcon, {
|
170
|
+
children: edit?.wrapColumn ? /*#__PURE__*/_jsx(Icon, {
|
171
|
+
icon: "toggleOn"
|
172
|
+
}) : /*#__PURE__*/_jsx(Icon, {
|
173
|
+
icon: "toggleOff"
|
174
|
+
})
|
175
|
+
})]
|
176
|
+
})
|
177
|
+
}) : null, /*#__PURE__*/_jsx(List, {
|
155
178
|
className: "fe-dv-opt-list st",
|
156
179
|
children: /*#__PURE__*/_jsxs(ListItemButton, {
|
157
180
|
sx: {
|
158
|
-
paddingBottom:
|
181
|
+
paddingBottom: "12px"
|
159
182
|
},
|
160
183
|
onClick: onChangeProperty,
|
161
184
|
children: [/*#__PURE__*/_jsx(ListItemText, {
|
162
185
|
children: "Type"
|
163
186
|
}), /*#__PURE__*/_jsxs(ListItemIcon, {
|
164
187
|
sx: {
|
165
|
-
display:
|
188
|
+
display: "flex",
|
166
189
|
alignItems: "center",
|
167
190
|
gap: 1
|
168
191
|
},
|
169
192
|
children: [/*#__PURE__*/_jsx(Box, {
|
170
193
|
sx: {
|
171
194
|
background: "#64748B1F",
|
172
|
-
borderRadius:
|
173
|
-
display:
|
174
|
-
alignItems:
|
175
|
-
padding:
|
176
|
-
|
177
|
-
width:
|
178
|
-
height:
|
195
|
+
borderRadius: "4px",
|
196
|
+
display: "flex",
|
197
|
+
alignItems: "center",
|
198
|
+
padding: "2px",
|
199
|
+
"& svg": {
|
200
|
+
width: "16px",
|
201
|
+
height: "16px"
|
179
202
|
}
|
180
203
|
},
|
181
204
|
children: /*#__PURE__*/_jsx(Icon, {
|
@@ -185,7 +208,7 @@ const EditProperty = props => {
|
|
185
208
|
className: "label-tp",
|
186
209
|
children: TYPE_LABELS[edit?.type]
|
187
210
|
}), /*#__PURE__*/_jsx(Icon, {
|
188
|
-
icon:
|
211
|
+
icon: "rightArrow"
|
189
212
|
})]
|
190
213
|
})]
|
191
214
|
})
|
@@ -205,9 +228,9 @@ const EditProperty = props => {
|
|
205
228
|
onClick: onAction("Visibilty"),
|
206
229
|
children: [/*#__PURE__*/_jsx(ListItemIcon, {
|
207
230
|
children: edit?.visible ? /*#__PURE__*/_jsx(Icon, {
|
208
|
-
icon:
|
231
|
+
icon: "eyeSlash"
|
209
232
|
}) : /*#__PURE__*/_jsx(Icon, {
|
210
|
-
icon:
|
233
|
+
icon: "eyeIcon"
|
211
234
|
})
|
212
235
|
}), /*#__PURE__*/_jsxs(ListItemText, {
|
213
236
|
children: [edit?.visible ? "Hide" : "Show", " in View"]
|
@@ -216,7 +239,7 @@ const EditProperty = props => {
|
|
216
239
|
onClick: onAction("Duplicate"),
|
217
240
|
children: [/*#__PURE__*/_jsx(ListItemIcon, {
|
218
241
|
children: /*#__PURE__*/_jsx(Icon, {
|
219
|
-
icon:
|
242
|
+
icon: "duplicateIcon"
|
220
243
|
})
|
221
244
|
}), /*#__PURE__*/_jsx(ListItemText, {
|
222
245
|
children: "Duplicate Property"
|
@@ -225,7 +248,7 @@ const EditProperty = props => {
|
|
225
248
|
onClick: onAction("Delete"),
|
226
249
|
children: [/*#__PURE__*/_jsx(ListItemIcon, {
|
227
250
|
children: /*#__PURE__*/_jsx(Icon, {
|
228
|
-
icon:
|
251
|
+
icon: "trashIcon"
|
229
252
|
})
|
230
253
|
}), /*#__PURE__*/_jsx(ListItemText, {
|
231
254
|
children: "Delete Property"
|
@@ -33,7 +33,7 @@ const useTableStyles = (theme, appTheme) => ({
|
|
33
33
|
height: "40px",
|
34
34
|
maxWidth: "0px !important",
|
35
35
|
minWidth: "0px !important",
|
36
|
-
"& input": {
|
36
|
+
"& input, & textarea": {
|
37
37
|
color: appTheme?.palette?.editor?.tv_text_primary,
|
38
38
|
background: "transparent",
|
39
39
|
fontSize: "14px"
|
@@ -107,6 +107,9 @@ const useTableStyles = (theme, appTheme) => ({
|
|
107
107
|
"& .MuiChip-deleteIcon": {
|
108
108
|
minWidth: "22px",
|
109
109
|
minHeight: "22px"
|
110
|
+
},
|
111
|
+
"&.wrap-true": {
|
112
|
+
flexWrap: "wrap"
|
110
113
|
}
|
111
114
|
},
|
112
115
|
"&.Mui-disabled": {
|
@@ -69,6 +69,19 @@ const useDataViewStyles = (theme, appTheme) => ({
|
|
69
69
|
opacity: 1
|
70
70
|
}
|
71
71
|
}
|
72
|
+
},
|
73
|
+
"& .fe-tv-type_text": {
|
74
|
+
"& .MuiInputBase-multiline": {
|
75
|
+
height: "auto !important",
|
76
|
+
"&.Mui-focused": {
|
77
|
+
border: 0,
|
78
|
+
outline: 0,
|
79
|
+
"& textarea:focus-visible": {
|
80
|
+
border: 0,
|
81
|
+
borderColor: "none"
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
72
85
|
}
|
73
86
|
},
|
74
87
|
filterView: {
|
@@ -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 { LinkIcon } from "../../common/iconslist";
|
8
|
+
import { GridSettingsIcon, 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",
|
@@ -33,14 +33,17 @@ 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
|
-
|
36
|
+
const {
|
37
|
+
element: pageSt
|
38
|
+
} = getPageSettings(editor) || {};
|
38
39
|
// const pageSettingLine = pageSt?.pageProps?.lineHeight;
|
39
40
|
const {
|
40
41
|
fontFamilies,
|
41
42
|
theme
|
42
43
|
} = useEditorContext();
|
43
|
-
|
44
|
+
const {
|
45
|
+
activeBreakPoint
|
46
|
+
} = useEditorContext();
|
44
47
|
// const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
|
45
48
|
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
46
49
|
const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
|
@@ -14,6 +14,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
14
14
|
const PopupTool = props => {
|
15
15
|
const {
|
16
16
|
theme,
|
17
|
+
setIsTextSelected,
|
17
18
|
customProps,
|
18
19
|
editorWrapper
|
19
20
|
} = props;
|
@@ -34,9 +35,6 @@ const PopupTool = props => {
|
|
34
35
|
const [size] = useWindowResize();
|
35
36
|
const updateAnchorEl = isScroll => {
|
36
37
|
try {
|
37
|
-
const {
|
38
|
-
selection
|
39
|
-
} = editor;
|
40
38
|
const isHavingSelection = selection && !Range.isCollapsed(selection);
|
41
39
|
if (isHavingSelection && event === "end") {
|
42
40
|
const domRange = ReactEditor.toDOMRange(editor, editor.selection);
|
@@ -76,16 +74,15 @@ const PopupTool = props => {
|
|
76
74
|
if (!isCarouselEdit) {
|
77
75
|
setOpen(true);
|
78
76
|
setPopupType("textFormat");
|
79
|
-
|
77
|
+
setIsTextSelected(true);
|
80
78
|
}
|
81
79
|
} else if (!anchorEl) {
|
82
80
|
setOpen(false);
|
83
81
|
setPopupType("");
|
84
|
-
|
82
|
+
setIsTextSelected(false);
|
85
83
|
}
|
86
84
|
}, [event, anchorEl]);
|
87
85
|
useEffect(() => {
|
88
|
-
console.log("Editor useEffect", selection);
|
89
86
|
const {
|
90
87
|
path,
|
91
88
|
enable
|
@@ -95,20 +92,17 @@ const PopupTool = props => {
|
|
95
92
|
if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || isFreeGridEnabled) {
|
96
93
|
setAnchorEl(null);
|
97
94
|
} else {
|
98
|
-
console.log("Editor updateAnchorEl", selection);
|
99
95
|
updateAnchorEl();
|
100
96
|
hideSlateSelection(); // removes slate selection background, when there is no selection
|
101
97
|
}
|
102
98
|
}, [selection, event, selectedElement?.enable]);
|
103
99
|
const handleClose = () => {
|
104
|
-
console.log("Editor closing");
|
105
100
|
// setAnchorEl(null);
|
106
101
|
setOpen(false);
|
107
102
|
setPopupType("");
|
108
103
|
};
|
109
104
|
return open && !openAI ? /*#__PURE__*/_jsx(ClickAwayListener, {
|
110
105
|
onClickAway: e => {
|
111
|
-
console.log("ClickAwayListener", e.target, document.body, e.target !== document.body);
|
112
106
|
// close the mini toolbar, if user clicks outside the editor (in Flozy app.)
|
113
107
|
if (e.target !== document.body) {
|
114
108
|
// 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
|
@@ -13,6 +13,9 @@ import EmailRoundedIcon from "@mui/icons-material/EmailRounded";
|
|
13
13
|
import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
|
14
14
|
import GridOnIcon from "@mui/icons-material/GridOn";
|
15
15
|
import GppBadOutlinedIcon from "@mui/icons-material/GppBadOutlined";
|
16
|
+
import WrapTextIcon from "@mui/icons-material/WrapText";
|
17
|
+
import ToggleOn from "@mui/icons-material/ToggleOn";
|
18
|
+
import ToggleOff from "@mui/icons-material/ToggleOff";
|
16
19
|
import { AccordionTextFormatIcon, BoldTextFormatIcon, BulletedListTextFormatIcon, ButtonElementIcon, CarouselElementIcon, CheckListTextFormatIcon, ColorBoxElementIcon, DividerElementIcon, DocUploadElementIcon, EmbedElementIcon, EmojiElementIcon, FormElementIcon, GridElementIcon, H1, H2, H3, ImageElementIcon, ItalicTextFormatIcon, LinkIconV2, OrderedListTextFormatIcon, SignatureElementIcon, TableElementIcon, TopBannerElementIcon, UnderlineTextFormatIcon, VideoElementIcon, LeftAlignTextFormat, CenterAlignTextFormat, RightAlignTextFormat, JustifyTextFormat, FreeGridElement, AppHeaderElement, CodeElementIcon } from "./iconListV2";
|
17
20
|
import MoreVertRoundedIcon from "@mui/icons-material/MoreVertRounded";
|
18
21
|
import SettingsIcon from "../assets/svg/SettingsIcon";
|
@@ -312,7 +315,21 @@ const iconList = {
|
|
312
315
|
trashIcon: /*#__PURE__*/_jsx(TrashIcon, {}),
|
313
316
|
dataTable: /*#__PURE__*/_jsx(DataTableIcon, {}),
|
314
317
|
chervUp: /*#__PURE__*/_jsx(ChervUp, {}),
|
315
|
-
chervDown: /*#__PURE__*/_jsx(ChervDown, {})
|
318
|
+
chervDown: /*#__PURE__*/_jsx(ChervDown, {}),
|
319
|
+
wrapColumn: /*#__PURE__*/_jsx(WrapTextIcon, {}),
|
320
|
+
toggleOn: /*#__PURE__*/_jsx(ToggleOn, {
|
321
|
+
sx: {
|
322
|
+
fill: "rgb(37, 99, 235)",
|
323
|
+
stroke: "rgb(37, 99, 235)"
|
324
|
+
}
|
325
|
+
}),
|
326
|
+
toggleOff: /*#__PURE__*/_jsx(ToggleOff, {
|
327
|
+
sx: {
|
328
|
+
fill: "#64748B",
|
329
|
+
stroke: "#64748B",
|
330
|
+
color: "#64748B"
|
331
|
+
}
|
332
|
+
})
|
316
333
|
};
|
317
334
|
export const icons = {
|
318
335
|
...iconList
|
@@ -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,7 +58,6 @@ const useElementSettingsStyle = theme => ({
|
|
58
58
|
maxHeight: "500px",
|
59
59
|
overflowX: "hidden",
|
60
60
|
overflowY: "auto",
|
61
|
-
paddingLeft: "4px",
|
62
61
|
background: theme?.palette?.editor?.background,
|
63
62
|
paddingLeft: "4px",
|
64
63
|
"& .MuiTypography-root, .MuiInputBase-root, input": {
|
@@ -470,13 +470,6 @@ 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
|
-
}
|
480
473
|
onClick({
|
481
474
|
detail: 1
|
482
475
|
});
|
@@ -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,7 +5,6 @@ function useEditorScroll(editorWrapper = {
|
|
5
5
|
useEffect(() => {
|
6
6
|
if (!editorWrapper?.current) return;
|
7
7
|
const handleScroll = () => {
|
8
|
-
console.log("Editor debug useEditorScroll ====>", editorWrapper, callback);
|
9
8
|
callback("scroll");
|
10
9
|
};
|
11
10
|
const currentEditorWrapper = editorWrapper.current;
|
@@ -149,7 +149,6 @@ const getFocusedNode = (editor, nodeType = "") => {
|
|
149
149
|
console.log(err);
|
150
150
|
}
|
151
151
|
};
|
152
|
-
const voidTypes = ["image", "page-settings"];
|
153
152
|
const withHtml = editor => {
|
154
153
|
const {
|
155
154
|
insertData,
|
@@ -160,7 +159,7 @@ const withHtml = editor => {
|
|
160
159
|
return element.type === "link" ? true : isInline(element);
|
161
160
|
};
|
162
161
|
editor.isVoid = element => {
|
163
|
-
return
|
162
|
+
return element.type === "image" ? true : isVoid(element);
|
164
163
|
};
|
165
164
|
editor.insertData = data => {
|
166
165
|
const slateHTML = data?.getData("application/x-slate-fragment");
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Editor, Transforms, Element as SlateElement, Range } from "slate";
|
1
|
+
import { Editor, Transforms, Element as SlateElement, Range, Text, Element } 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.1",
|
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/.
|
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",
|