@flozy/editor 5.6.9 → 5.7.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 +10 -15
- package/dist/Editor/Editor.css +17 -22
- package/dist/Editor/Elements/Button/EditorButton.js +1 -3
- package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +9 -12
- package/dist/Editor/Elements/Form/Form.js +0 -1
- package/dist/Editor/Elements/FreeGrid/styles.js +0 -1
- package/dist/Editor/Elements/List/CheckList.js +1 -2
- package/dist/Editor/Elements/Search/SearchAttachment.js +0 -1
- package/dist/Editor/Elements/Signature/SignaturePopup.js +1 -3
- package/dist/Editor/Elements/SimpleText/index.js +1 -8
- package/dist/Editor/Elements/SimpleText/style.js +1 -5
- package/dist/Editor/Elements/Table/DragButton.js +1 -2
- package/dist/Editor/Elements/Table/TableCell.js +2 -4
- package/dist/Editor/Elements/Title/title.js +1 -13
- package/dist/Editor/Elements/Variables/Style.js +2 -20
- package/dist/Editor/Elements/Variables/VariableButton.js +3 -7
- package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +3 -13
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +0 -5
- package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +1 -1
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +0 -45
- package/dist/Editor/common/FontLoader/FontLoader.js +4 -4
- package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +0 -1
- package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -14
- package/dist/Editor/common/RnD/Utils/gridDropItem.js +7 -26
- package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
- package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +2 -10
- package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +1 -3
- package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +0 -4
- package/dist/Editor/common/Uploader.js +0 -8
- package/dist/Editor/commonStyle.js +10 -9
- package/dist/Editor/helper/index.js +2 -2
- package/dist/Editor/helper/theme.js +1 -24
- package/dist/Editor/hooks/useMouseMove.js +2 -5
- package/dist/Editor/plugins/withLayout.js +1 -1
- package/dist/Editor/utils/SlateUtilityFunctions.js +1 -8
- package/dist/Editor/utils/button.js +4 -4
- package/dist/Editor/utils/draftToSlate.js +2 -3
- package/dist/Editor/utils/helper.js +23 -27
- package/dist/Editor/utils/pageSettings.js +2 -14
- package/package.json +1 -1
- package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +0 -79
@@ -26,8 +26,8 @@ import editorStyles from "./Styles/EditorStyles";
|
|
26
26
|
import DragAndDrop from "./common/DnD";
|
27
27
|
import Section from "./common/Section";
|
28
28
|
import decorators from "./utils/Decorators";
|
29
|
-
import {
|
30
|
-
import { getInitialValue, handleInsertLastElement, isFreeGrid, isFreeGridFragment,
|
29
|
+
import { getTRBLBreakPoints } from "./helper/theme";
|
30
|
+
import { getInitialValue, handleInsertLastElement, isFreeGrid, isFreeGridFragment, isPageSettings, outsideEditorClickLabel } from "./utils/helper";
|
31
31
|
import useWindowResize from "./hooks/useWindowResize";
|
32
32
|
import PopoverAIInput from "./Elements/AI/PopoverAIInput";
|
33
33
|
import RnDCopy from "./common/RnD/RnDCopy";
|
@@ -96,8 +96,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
96
96
|
const editorWrapper = useRef();
|
97
97
|
const mentionsRef = useRef();
|
98
98
|
const convertedContent = draftToSlate({
|
99
|
-
data: content
|
100
|
-
needLayout: otherProps?.needLayout
|
99
|
+
data: content
|
101
100
|
});
|
102
101
|
const [value, setValue] = useState(convertedContent);
|
103
102
|
const [isInteracted, setIsInteracted] = useState(false);
|
@@ -140,8 +139,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
140
139
|
pageColor,
|
141
140
|
color: pageTextColor,
|
142
141
|
pageWidth,
|
143
|
-
maxWidth: pageMaxWidth
|
144
|
-
lineHeight
|
142
|
+
maxWidth: pageMaxWidth
|
145
143
|
} = pageSt?.pageProps || {
|
146
144
|
bannerSpacing: {
|
147
145
|
left: 0,
|
@@ -168,11 +166,11 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
168
166
|
const debounced = useDebouncedCallback(
|
169
167
|
// function
|
170
168
|
value => {
|
171
|
-
debouncedValue.current = value;
|
172
169
|
const {
|
173
170
|
value: strVal,
|
174
171
|
...restVal
|
175
172
|
} = getOnSaveData(value);
|
173
|
+
debouncedValue.current = value;
|
176
174
|
onSave(strVal, restVal);
|
177
175
|
},
|
178
176
|
// delay in ms
|
@@ -183,7 +181,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
183
181
|
return {
|
184
182
|
value: JSON.stringify(val),
|
185
183
|
text: text,
|
186
|
-
title: serializeToText(title?.children) || ""
|
184
|
+
title: serializeToText(title?.children) || "Untitled"
|
187
185
|
};
|
188
186
|
};
|
189
187
|
const getPreviewImage = async (needBackground = false, options = {}) => {
|
@@ -332,7 +330,6 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
332
330
|
onDrawerOpen: onDrawerOpen,
|
333
331
|
ICON_API: "https://assets.agenciflow.com"
|
334
332
|
};
|
335
|
-
const lineH = getBreakpointLineSpacing(lineHeight, breakpoint);
|
336
333
|
const renderElement = useCallback(props => {
|
337
334
|
return /*#__PURE__*/_jsx(Element, {
|
338
335
|
...props,
|
@@ -391,8 +388,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
391
388
|
} else if (event.key === "ArrowDown" && otherProps?.tagName !== "Pages") {
|
392
389
|
upDownArrowKeyEvents(event, editor);
|
393
390
|
} else if (event.key === "Backspace") {
|
394
|
-
const
|
395
|
-
if (
|
391
|
+
const isPageSettingsNode = isPageSettings(event, editor);
|
392
|
+
if (isPageSettingsNode) {
|
396
393
|
return;
|
397
394
|
}
|
398
395
|
const {
|
@@ -535,7 +532,6 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
535
532
|
padding: {
|
536
533
|
...getTRBLBreakPoints(bannerSpacing)
|
537
534
|
},
|
538
|
-
lineHeight: lineH,
|
539
535
|
width: !pageWidth || pageWidth === "fixed" ? fixedWidth : fullWidth,
|
540
536
|
height: viewport.h ? `${viewport.h}px` : `100%`,
|
541
537
|
alignSelf: "center",
|
@@ -543,7 +539,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
543
539
|
transition: "all 0.3s",
|
544
540
|
minHeight: "87%",
|
545
541
|
maxWidth: pageMaxWidth ? `${parseInt(pageMaxWidth)}px !important` : "auto",
|
546
|
-
paddingTop: hasTopBanner() ?
|
542
|
+
paddingTop: hasTopBanner() ? '20px !important' : isMobile ? '10px !important' : ''
|
547
543
|
},
|
548
544
|
"data-info": outsideEditorClickLabel,
|
549
545
|
children: [/*#__PURE__*/_jsx(Editable, {
|
@@ -597,9 +593,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
597
593
|
setIsTextSelected: setIsTextSelected,
|
598
594
|
customProps: customProps,
|
599
595
|
editorWrapper: editorWrapper
|
600
|
-
}) : null, !readOnly ? /*#__PURE__*/_jsx(SwitchViewport, {
|
596
|
+
}) : null, !readOnly && showViewport ? /*#__PURE__*/_jsx(SwitchViewport, {
|
601
597
|
breakpoint: breakpoint,
|
602
|
-
show: showViewport,
|
603
598
|
onChange: b => onSwitchBreakpoint(b)
|
604
599
|
}) : null]
|
605
600
|
})
|
package/dist/Editor/Editor.css
CHANGED
@@ -397,12 +397,6 @@ blockquote {
|
|
397
397
|
padding: 0px 5px 0px 2px !important
|
398
398
|
}
|
399
399
|
|
400
|
-
.signatureActionBtnContainer {
|
401
|
-
display: flex;
|
402
|
-
align-items: center;
|
403
|
-
gap: 1rem;
|
404
|
-
}
|
405
|
-
|
406
400
|
.signature-tab {
|
407
401
|
display: flex;
|
408
402
|
align-items: center;
|
@@ -611,8 +605,8 @@ blockquote {
|
|
611
605
|
display: block !important;
|
612
606
|
}
|
613
607
|
|
614
|
-
.dialog-actions-si .
|
615
|
-
margin-top:
|
608
|
+
.dialog-actions-si .actionBtn {
|
609
|
+
margin-top: 24px;
|
616
610
|
}
|
617
611
|
}
|
618
612
|
|
@@ -995,7 +989,7 @@ blockquote {
|
|
995
989
|
|
996
990
|
.sliderInput {
|
997
991
|
width: 66px !important;
|
998
|
-
padding: 2px
|
992
|
+
padding: 2px 10px;
|
999
993
|
margin-left: 18px;
|
1000
994
|
box-shadow: 0px 4px 16px 0px #0000000d;
|
1001
995
|
border: 1px solid #6f6f6f33;
|
@@ -1263,19 +1257,6 @@ blockquote {
|
|
1263
1257
|
pointer-events: auto;
|
1264
1258
|
}
|
1265
1259
|
|
1266
|
-
@media (max-width: 899px) {
|
1267
|
-
.MuiPopover-root {
|
1268
|
-
z-index: 1302 !important;
|
1269
|
-
}
|
1270
|
-
canvas {
|
1271
|
-
max-width: 100% !important;
|
1272
|
-
}
|
1273
|
-
}
|
1274
|
-
|
1275
|
-
.settingsHeader {
|
1276
|
-
font-size: 14px !important;
|
1277
|
-
font-weight: 500 !important;
|
1278
|
-
}
|
1279
1260
|
.hideScroll {
|
1280
1261
|
overflow-anchor: none;
|
1281
1262
|
}
|
@@ -1291,6 +1272,20 @@ blockquote {
|
|
1291
1272
|
.hideScroll::-webkit-scrollbar-thumb:hover {
|
1292
1273
|
background: none !important;
|
1293
1274
|
}
|
1275
|
+
@media (max-width: 899px) {
|
1276
|
+
.MuiPopover-root {
|
1277
|
+
z-index: 1302 !important;
|
1278
|
+
}
|
1279
|
+
|
1280
|
+
canvas {
|
1281
|
+
max-width: 100% !important;
|
1282
|
+
}
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.settingsHeader {
|
1286
|
+
font-size: 14px !important;
|
1287
|
+
font-weight: 500 !important;
|
1288
|
+
}
|
1294
1289
|
|
1295
1290
|
.custom-scroll::-webkit-scrollbar {
|
1296
1291
|
height: .6rem;
|
@@ -162,7 +162,6 @@ const EditorButton = props => {
|
|
162
162
|
display: "inline-flex",
|
163
163
|
color: "rgba(0, 0, 0, 0.54)",
|
164
164
|
marginBottom: "0px !important",
|
165
|
-
...classes.buttonMoreOption,
|
166
165
|
...classes.buttonMoreOption3
|
167
166
|
},
|
168
167
|
...btnProps,
|
@@ -265,12 +264,11 @@ const EditorButton = props => {
|
|
265
264
|
...btnSp,
|
266
265
|
borderStyle: borderStyle || "solid",
|
267
266
|
color: `${textColor || "#FFFFFF"}`,
|
268
|
-
fontSize: textSize || "
|
267
|
+
fontSize: textSize || "inherit",
|
269
268
|
fontFamily: fontFamily || "PoppinsRegular",
|
270
269
|
display: "inline-flex",
|
271
270
|
alignItems: "center",
|
272
271
|
position: "relative",
|
273
|
-
lineHeight: 1.43,
|
274
272
|
"& .element-toolbar": {
|
275
273
|
display: "none"
|
276
274
|
},
|
@@ -20,7 +20,7 @@ const useTableStyles = (theme, appTheme) => ({
|
|
20
20
|
"& .fillStroke": {
|
21
21
|
stroke: appTheme?.palette?.editor?.tv_stroke
|
22
22
|
},
|
23
|
-
|
23
|
+
'& path': {
|
24
24
|
stroke: appTheme?.palette?.editor?.tv_text
|
25
25
|
}
|
26
26
|
}
|
@@ -30,10 +30,7 @@ const useTableStyles = (theme, appTheme) => ({
|
|
30
30
|
"& input": {
|
31
31
|
color: appTheme?.palette?.editor?.tv_text_primary,
|
32
32
|
background: "transparent",
|
33
|
-
fontSize:
|
34
|
-
},
|
35
|
-
"& .Mui-disabled": {
|
36
|
-
"-webkit-text-fill-color": `${appTheme?.palette?.editor?.tv_text_primary} !important`
|
33
|
+
fontSize: '14px'
|
37
34
|
}
|
38
35
|
},
|
39
36
|
"& th, tr, td": {
|
@@ -42,19 +39,19 @@ const useTableStyles = (theme, appTheme) => ({
|
|
42
39
|
"& .tv-act-btn": {
|
43
40
|
color: appTheme?.palette?.editor?.tv_text,
|
44
41
|
textTransform: "none",
|
45
|
-
|
42
|
+
'& .MuiButton-startIcon': {
|
46
43
|
background: appTheme?.palette?.editor?.tv_ico_bg,
|
47
|
-
borderRadius:
|
48
|
-
padding:
|
44
|
+
borderRadius: '4px',
|
45
|
+
padding: '4px',
|
49
46
|
"& svg": {
|
50
|
-
width:
|
51
|
-
height:
|
47
|
+
width: '14px',
|
48
|
+
height: '14px'
|
52
49
|
}
|
53
50
|
},
|
54
51
|
"&.ico": {
|
55
52
|
"& svg": {
|
56
53
|
color: appTheme?.palette?.editor?.tv_text,
|
57
|
-
|
54
|
+
'& path': {
|
58
55
|
stroke: appTheme?.palette?.editor?.tv_text
|
59
56
|
}
|
60
57
|
}
|
@@ -63,7 +60,7 @@ const useTableStyles = (theme, appTheme) => ({
|
|
63
60
|
color: appTheme?.palette?.editor?.tv_hover_text,
|
64
61
|
"& svg": {
|
65
62
|
color: appTheme?.palette?.editor?.tv_hover_text,
|
66
|
-
|
63
|
+
'& path': {
|
67
64
|
stroke: appTheme?.palette?.editor?.tv_hover_text
|
68
65
|
}
|
69
66
|
}
|
@@ -49,7 +49,6 @@ const SearchAttachment = props => {
|
|
49
49
|
background: `${theme?.palette?.containers?.slashBrainCardBg} !important`,
|
50
50
|
cursor: 'pointer',
|
51
51
|
margin: '4px 0px',
|
52
|
-
lineHeight: 1.43,
|
53
52
|
"&.MuiPaper-root.MuiPaper-rounded": {
|
54
53
|
borderRadius: "7px !important",
|
55
54
|
paddingTop: '0px !important'
|
@@ -512,9 +512,7 @@ const SignaturePopup = props => {
|
|
512
512
|
})
|
513
513
|
})
|
514
514
|
})]
|
515
|
-
}) : null, /*#__PURE__*/_jsxs(
|
516
|
-
component: "div",
|
517
|
-
className: "signatureActionBtnContainer",
|
515
|
+
}) : null, /*#__PURE__*/_jsxs(_Fragment, {
|
518
516
|
children: [!readOnly ? /*#__PURE__*/_jsx(Button, {
|
519
517
|
onClick: handleClear,
|
520
518
|
className: `secondaryBtn actionBtn deleteBtn deleteButtonSignature`,
|
@@ -5,7 +5,6 @@ import { getPageSettings } from "../../utils/pageSettings";
|
|
5
5
|
import { isTextSelected } from "../../utils/helper";
|
6
6
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
7
7
|
import SimpleTextStyle from "./style";
|
8
|
-
import { getBreakpointLineSpacing } from "../../helper/theme";
|
9
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
10
9
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
11
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
@@ -34,14 +33,8 @@ const SimpleText = props => {
|
|
34
33
|
const {
|
35
34
|
pageColor
|
36
35
|
} = pageSt?.pageProps || {};
|
37
|
-
const {
|
38
|
-
activeBreakPoint
|
39
|
-
} = useEditorContext();
|
40
|
-
const lineHeight = element?.children[0]?.lineHeight;
|
41
|
-
const lineH = getBreakpointLineSpacing(lineHeight, activeBreakPoint);
|
42
36
|
const classes = SimpleTextStyle({
|
43
|
-
pageColor: pageColor || theme?.palette?.editor?.background || "#FFFFFF"
|
44
|
-
lineHeight: lineH
|
37
|
+
pageColor: pageColor || theme?.palette?.editor?.background || "#FFFFFF"
|
45
38
|
});
|
46
39
|
const selected = useSelected();
|
47
40
|
const path = ReactEditor.findPath(editor, element);
|
@@ -1,12 +1,10 @@
|
|
1
1
|
import { invertColor } from "../../helper";
|
2
2
|
const SimpleTextStyle = ({
|
3
|
-
pageColor
|
4
|
-
lineHeight
|
3
|
+
pageColor
|
5
4
|
}) => ({
|
6
5
|
root: {
|
7
6
|
position: "relative",
|
8
7
|
padding: "0px",
|
9
|
-
lineHeight: lineHeight,
|
10
8
|
"&.dataView": {
|
11
9
|
"& .placeholder-simple-text": {
|
12
10
|
opacity: 0
|
@@ -35,8 +33,6 @@ const SimpleTextStyle = ({
|
|
35
33
|
height: "24px",
|
36
34
|
overflow: "hidden",
|
37
35
|
fontSize: "14px",
|
38
|
-
display: "inline-flex",
|
39
|
-
alignItems: "center",
|
40
36
|
"& .bg-pad-sl": {
|
41
37
|
padding: "2px 4px 2px 4px",
|
42
38
|
background: "transparent",
|
@@ -288,8 +288,6 @@ const TableCell = props => {
|
|
288
288
|
Transforms.select(editor, selection);
|
289
289
|
};
|
290
290
|
const onRowDrag = () => {
|
291
|
-
selectCurrentCell();
|
292
|
-
const [rowNode] = getNodeWithType(editor, "table-row", path);
|
293
291
|
const {
|
294
292
|
children
|
295
293
|
} = rowNode[0] || {};
|
@@ -301,10 +299,9 @@ const TableCell = props => {
|
|
301
299
|
endCellPath: rowEndCell,
|
302
300
|
isDragging: false
|
303
301
|
});
|
302
|
+
selectCurrentCell();
|
304
303
|
};
|
305
304
|
const onColDrag = () => {
|
306
|
-
selectCurrentCell();
|
307
|
-
const [tableNode] = getNodeWithType(editor, "table", path);
|
308
305
|
const [tableData, tablePath] = tableNode;
|
309
306
|
const {
|
310
307
|
rows
|
@@ -316,6 +313,7 @@ const TableCell = props => {
|
|
316
313
|
endCellPath: endColCell,
|
317
314
|
isDragging: false
|
318
315
|
});
|
316
|
+
selectCurrentCell();
|
319
317
|
};
|
320
318
|
const handleToolAction = (value, option, dragType) => {
|
321
319
|
const isRowDrag = dragType === "row";
|
@@ -1,24 +1,12 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { Text } from "slate";
|
3
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
4
|
-
const isEmptyTextNode = node => {
|
5
|
-
if (Text.isText(node)) {
|
6
|
-
return !node.text.trim();
|
7
|
-
}
|
8
|
-
return false;
|
9
|
-
};
|
10
3
|
const Title = props => {
|
11
4
|
const {
|
12
|
-
element,
|
13
5
|
attributes,
|
14
|
-
children
|
15
|
-
customProps
|
6
|
+
children
|
16
7
|
} = props;
|
17
|
-
const isEmpty = !customProps?.readOnly && isEmptyTextNode(element?.children[0]) ? "empty" : "";
|
18
8
|
return /*#__PURE__*/_jsx("div", {
|
19
9
|
...attributes,
|
20
|
-
placeholder: "Title",
|
21
|
-
className: `content-editable ${isEmpty}`,
|
22
10
|
style: {
|
23
11
|
fontWeight: "bold",
|
24
12
|
fontSize: "20px"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
const VariableStyles =
|
1
|
+
const VariableStyles = () => ({
|
2
2
|
variablesItem: {
|
3
3
|
color: "#2563EB",
|
4
4
|
background: "#EEEEEE"
|
@@ -37,26 +37,8 @@ const VariableStyles = theme => ({
|
|
37
37
|
"& .MuiMenuItem-root": {
|
38
38
|
color: "#64748B"
|
39
39
|
},
|
40
|
-
"& .MuiPaper-root": {
|
41
|
-
borderRadius: '8px',
|
42
|
-
backgroundColor: `${theme?.palette?.editor?.miniToolBarBackground} !important`
|
43
|
-
},
|
44
|
-
"& .MuiList-root": {
|
45
|
-
padding: '0px'
|
46
|
-
},
|
47
|
-
"& .MuiButtonBase-root": {
|
48
|
-
margin: '6px',
|
49
|
-
borderRadius: '8px',
|
50
|
-
padding: '6px 14px',
|
51
|
-
fontSize: '14px',
|
52
|
-
fontWeight: '400',
|
53
|
-
color: theme?.palette?.editor?.deletePopUpButtonTextColor,
|
54
|
-
"&:hover": {
|
55
|
-
background: `${theme?.palette?.editor?.menuOptionHoverBackground} !important`
|
56
|
-
}
|
57
|
-
},
|
58
40
|
"& .Mui-selected": {
|
59
|
-
backgroundColor:
|
41
|
+
backgroundColor: "rgba(0, 0, 0, 0.04) !important"
|
60
42
|
}
|
61
43
|
}
|
62
44
|
});
|
@@ -3,15 +3,11 @@ import { useSlateStatic } from "slate-react";
|
|
3
3
|
import { MenuItem, Select } from "@mui/material";
|
4
4
|
import { insertVariables } from "../../utils/variables";
|
5
5
|
import VariableStyles from "./Style";
|
6
|
-
import
|
7
|
-
import { useEditorContext } from "../../hooks/useMouseMove";
|
6
|
+
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
|
8
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
8
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
9
|
const VariableButton = props => {
|
11
|
-
const
|
12
|
-
theme
|
13
|
-
} = useEditorContext();
|
14
|
-
const classes = VariableStyles(theme);
|
10
|
+
const classes = VariableStyles();
|
15
11
|
const editor = useSlateStatic();
|
16
12
|
const {
|
17
13
|
options
|
@@ -28,7 +24,7 @@ const VariableButton = props => {
|
|
28
24
|
value: "",
|
29
25
|
sx: classes.variableBtn,
|
30
26
|
onChange: updateVariable,
|
31
|
-
IconComponent: () => /*#__PURE__*/_jsx(
|
27
|
+
IconComponent: () => /*#__PURE__*/_jsx(KeyboardArrowDownIcon, {}),
|
32
28
|
MenuProps: {
|
33
29
|
sx: classes.variableMenuItem,
|
34
30
|
PaperProps: {
|
@@ -98,22 +98,12 @@ const AddTemplates = props => {
|
|
98
98
|
setCategory(newValue);
|
99
99
|
setFilteredTemplates(templates.filter(f => f.category === newValue));
|
100
100
|
};
|
101
|
-
const onSelectTemplate = card =>
|
101
|
+
const onSelectTemplate = card => () => {
|
102
102
|
try {
|
103
|
-
|
104
|
-
data
|
105
|
-
} = await services("templateContent", {
|
106
|
-
id: card?.id
|
107
|
-
});
|
108
|
-
const content = data?.content;
|
109
|
-
if (content) {
|
110
|
-
editor.insertNode(JSON.parse(content));
|
111
|
-
} else {
|
112
|
-
console.log("No data found");
|
113
|
-
}
|
103
|
+
editor.insertNode(JSON.parse(card.content));
|
114
104
|
onClose();
|
115
105
|
} catch (err) {
|
116
|
-
console.log(
|
106
|
+
console.log(err);
|
117
107
|
}
|
118
108
|
};
|
119
109
|
const filterByTitle = f => {
|
@@ -416,11 +416,6 @@ const usePopupStyle = theme => ({
|
|
416
416
|
"& .MuiOutlinedInput-notchedOutline": {
|
417
417
|
border: `1px solid ${theme?.palette?.editor?.inputFieldBorder} !important`
|
418
418
|
},
|
419
|
-
'& .MuiInputBase-root': {
|
420
|
-
'& input': {
|
421
|
-
border: "none !important"
|
422
|
-
}
|
423
|
-
},
|
424
419
|
"& svg": {
|
425
420
|
width: "20px",
|
426
421
|
height: "24px"
|
@@ -47,7 +47,7 @@ const TemplateCard = props => {
|
|
47
47
|
}), /*#__PURE__*/_jsx(CardMedia, {
|
48
48
|
className: `template-card-media ${fullScreen ? "fullscreen" : ""}`,
|
49
49
|
component: "div",
|
50
|
-
image: m?.
|
50
|
+
image: m?.thumbnail,
|
51
51
|
alt: m?.title,
|
52
52
|
sx: classes.templateCardMedia
|
53
53
|
}), /*#__PURE__*/_jsx(PreviewAndSelect, {
|
@@ -14,8 +14,6 @@ import SelectSuperSubscript from "./MiniTextFormat/SelectSuperSubscript";
|
|
14
14
|
import { ColorResetIcon, TextDefaultStyleIcon } from "../../common/iconListV2";
|
15
15
|
import FontFamilyAutocomplete from "../FormatTools/FontFamilyAutocomplete";
|
16
16
|
import { useEditorContext } from "../../hooks/useMouseMove";
|
17
|
-
import LineSpacing from "../../common/StyleBuilder/fieldTypes/lineSpacing";
|
18
|
-
import { getPageSettings } from "../../utils/pageSettings";
|
19
17
|
import { jsx as _jsx } from "react/jsx-runtime";
|
20
18
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
21
19
|
const allTools = toolbarGroups.flat();
|
@@ -33,18 +31,10 @@ const TextFormat = props => {
|
|
33
31
|
const [anchorEl, setAnchorEl] = useState(null);
|
34
32
|
const [type, setType] = useState(null);
|
35
33
|
const open = Boolean(anchorEl);
|
36
|
-
const {
|
37
|
-
element: pageSt
|
38
|
-
} = getPageSettings(editor) || {};
|
39
|
-
const pageSettingLine = pageSt?.pageProps?.lineHeight;
|
40
34
|
const {
|
41
35
|
fontFamilies,
|
42
36
|
theme
|
43
37
|
} = useEditorContext();
|
44
|
-
const {
|
45
|
-
activeBreakPoint
|
46
|
-
} = useEditorContext();
|
47
|
-
const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
|
48
38
|
const fontWeight = allTools.find(f => f.format === "fontWeight");
|
49
39
|
const fontStyle = allTools.filter(f => f.type === "mark" && f.format !== "strikethrough" && f.format !== "superscript" && f.format !== "subscript");
|
50
40
|
const fontAlign = allTools.filter(f => f.format?.indexOf("align") >= 0);
|
@@ -61,8 +51,6 @@ const TextFormat = props => {
|
|
61
51
|
color: "",
|
62
52
|
bgColor: ""
|
63
53
|
};
|
64
|
-
let lineSpacingValue = activeMark(editor, 'lineHeight');
|
65
|
-
lineSpacingValue = lineSpacingValue?.[breakpoint] !== undefined ? lineSpacingValue : pageSettingLine;
|
66
54
|
const handleColorPicker = type => e => {
|
67
55
|
setType(type);
|
68
56
|
setAnchorEl(e.currentTarget);
|
@@ -103,13 +91,6 @@ const TextFormat = props => {
|
|
103
91
|
value
|
104
92
|
});
|
105
93
|
};
|
106
|
-
const handleLineSpacing = data => {
|
107
|
-
const [[format, value]] = Object.entries(data);
|
108
|
-
addMarkData(editor, {
|
109
|
-
format,
|
110
|
-
value
|
111
|
-
});
|
112
|
-
};
|
113
94
|
return /*#__PURE__*/_jsxs(Grid, {
|
114
95
|
container: true,
|
115
96
|
sx: classes.textFormatWrapper,
|
@@ -379,32 +360,6 @@ const TextFormat = props => {
|
|
379
360
|
xs: 12,
|
380
361
|
sx: classes.dividerGrid,
|
381
362
|
children: /*#__PURE__*/_jsx(Divider, {})
|
382
|
-
}), /*#__PURE__*/_jsxs(Grid, {
|
383
|
-
item: true,
|
384
|
-
xs: 12,
|
385
|
-
children: [/*#__PURE__*/_jsx(Typography, {
|
386
|
-
variant: "body1",
|
387
|
-
color: "primary",
|
388
|
-
sx: classes.typoLabel,
|
389
|
-
children: "Line Spacing"
|
390
|
-
}), /*#__PURE__*/_jsx(Grid, {
|
391
|
-
item: true,
|
392
|
-
xs: 12,
|
393
|
-
className: "typo-icons",
|
394
|
-
sx: classes.evenSpace,
|
395
|
-
children: /*#__PURE__*/_jsx(LineSpacing, {
|
396
|
-
value: lineSpacingValue,
|
397
|
-
onChange: handleLineSpacing,
|
398
|
-
data: {
|
399
|
-
key: 'lineHeight'
|
400
|
-
}
|
401
|
-
})
|
402
|
-
})]
|
403
|
-
}), /*#__PURE__*/_jsx(Grid, {
|
404
|
-
item: true,
|
405
|
-
xs: 12,
|
406
|
-
sx: classes.dividerGrid,
|
407
|
-
children: /*#__PURE__*/_jsx(Divider, {})
|
408
363
|
}), /*#__PURE__*/_jsx(Grid, {
|
409
364
|
item: true,
|
410
365
|
xs: 12,
|
@@ -41,9 +41,9 @@ const FontLoader = props => {
|
|
41
41
|
// Retry loading the same batch
|
42
42
|
loadNextBatch();
|
43
43
|
} else {
|
44
|
-
|
45
|
-
|
46
|
-
|
44
|
+
console.log(
|
45
|
+
// `Max retries reached for batch: ${batch}. Moving to the next batch.`
|
46
|
+
);
|
47
47
|
currentIndex += batchSize;
|
48
48
|
retryCount = 0; // Reset retry count for the next batch
|
49
49
|
loadNextBatch();
|
@@ -67,7 +67,7 @@ const FontLoader = props => {
|
|
67
67
|
});
|
68
68
|
loadFontsInBatches(families);
|
69
69
|
}).catch(err => {
|
70
|
-
|
70
|
+
console.log(err);
|
71
71
|
});
|
72
72
|
} else {
|
73
73
|
function correctFontArray(fontString) {
|