@flozy/editor 3.3.4 → 3.3.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/CommonEditor.js +9 -2
- package/dist/Editor/Elements/AI/Styles.js +4 -3
- package/dist/Editor/Elements/Variables/Style.js +14 -6
- package/dist/Editor/Elements/Variables/VariableButton.js +4 -1
- package/dist/Editor/Styles/EditorStyles.js +4 -0
- package/dist/Editor/common/MentionsPopup/ElementsListCard.js +2 -1
- package/dist/Editor/common/Shorthands/elements.js +1 -1
- package/dist/Editor/hooks/useMouseMove.js +6 -2
- package/package.json +1 -1
@@ -96,6 +96,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
96
96
|
});
|
97
97
|
const [isScrolling, setIsScrolling] = useState(false);
|
98
98
|
const [isTextSelected, setIsTextSelected] = useState(false);
|
99
|
+
const [openInfiniti, setOpenInfiniti] = useState(false);
|
99
100
|
const [size] = useWindowResize();
|
100
101
|
const {
|
101
102
|
needDotsBG,
|
@@ -381,6 +382,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
381
382
|
return /*#__PURE__*/_jsx(EditorProvider, {
|
382
383
|
theme: theme,
|
383
384
|
editor: editor,
|
385
|
+
setOpenInfiniti: setOpenInfiniti,
|
384
386
|
children: /*#__PURE__*/_jsx(DialogWrapper, {
|
385
387
|
classes: classes,
|
386
388
|
...props,
|
@@ -402,13 +404,18 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
|
|
402
404
|
children: [/*#__PURE__*/_jsx(Box, {
|
403
405
|
className: `${hasTopBanner() ? "has-topbanner" : ""} ${!pageColor ? "no-color" : ""} ${isScrolling ? "" : "hideScroll"} scrollable-content scrollSmooth`,
|
404
406
|
sx: classes.slateWrapper,
|
405
|
-
id: "slate-wrapper-scroll-container"
|
406
|
-
style
|
407
|
+
id: "slate-wrapper-scroll-container"
|
408
|
+
// style={editorWrapperStyle}
|
409
|
+
,
|
407
410
|
ref: editorWrapper,
|
408
411
|
onClick: e => {
|
409
412
|
handleInsertLastElement(e, editor);
|
410
413
|
},
|
411
414
|
onScroll: handleScroll,
|
415
|
+
style: {
|
416
|
+
...editorWrapperStyle,
|
417
|
+
overflowY: openInfiniti ? "hidden" : "auto"
|
418
|
+
},
|
412
419
|
children: /*#__PURE__*/_jsxs(Box, {
|
413
420
|
component: "div",
|
414
421
|
className: "max-content",
|
@@ -11,7 +11,7 @@ const Styles = theme => ({
|
|
11
11
|
padding: "0px 12px",
|
12
12
|
minHeight: "36px",
|
13
13
|
position: "relative",
|
14
|
-
background:
|
14
|
+
background: "#FCFAFF",
|
15
15
|
borderRadius: "7px",
|
16
16
|
"& .icon-container": {
|
17
17
|
display: "flex",
|
@@ -82,8 +82,9 @@ const Styles = theme => ({
|
|
82
82
|
},
|
83
83
|
generatedText: {
|
84
84
|
margin: "8px",
|
85
|
-
maxHeight: "
|
86
|
-
overflow: "auto"
|
85
|
+
maxHeight: "100px",
|
86
|
+
overflow: "auto",
|
87
|
+
fontSize: "inherit"
|
87
88
|
},
|
88
89
|
customSelectWrapper: {
|
89
90
|
width: "fit-content",
|
@@ -17,11 +17,11 @@ const VariableStyles = () => ({
|
|
17
17
|
textTransform: "none",
|
18
18
|
border: "1px solid #D8DDE1",
|
19
19
|
height: "36px",
|
20
|
-
paddingLeft:
|
21
|
-
paddingRight:
|
20
|
+
paddingLeft: "8px",
|
21
|
+
paddingRight: "18px",
|
22
22
|
"& svg": {
|
23
|
-
width:
|
24
|
-
height:
|
23
|
+
width: "20px",
|
24
|
+
height: "20px",
|
25
25
|
"& path": {
|
26
26
|
stroke: "#64748B"
|
27
27
|
}
|
@@ -29,8 +29,16 @@ const VariableStyles = () => ({
|
|
29
29
|
"&:hover": {
|
30
30
|
border: "1px solid #64748B"
|
31
31
|
},
|
32
|
-
|
33
|
-
paddingRight:
|
32
|
+
"& .MuiSelect-select.MuiInputBase-input.MuiOutlinedInput-input": {
|
33
|
+
paddingRight: "5px"
|
34
|
+
}
|
35
|
+
},
|
36
|
+
variableMenuItem: {
|
37
|
+
"& .MuiMenuItem-root": {
|
38
|
+
color: "#64748B"
|
39
|
+
},
|
40
|
+
"& .Mui-selected": {
|
41
|
+
backgroundColor: "rgba(0, 0, 0, 0.04) !important"
|
34
42
|
}
|
35
43
|
}
|
36
44
|
});
|
@@ -21,10 +21,13 @@ const VariableButton = props => {
|
|
21
21
|
labelId: "variable-selection",
|
22
22
|
id: "variable-selection-mini",
|
23
23
|
displayEmpty: true,
|
24
|
-
value:
|
24
|
+
value: "",
|
25
25
|
sx: classes.variableBtn,
|
26
26
|
onChange: updateVariable,
|
27
27
|
IconComponent: () => /*#__PURE__*/_jsx(KeyboardArrowDownIcon, {}),
|
28
|
+
MenuProps: {
|
29
|
+
sx: classes.variableMenuItem
|
30
|
+
},
|
28
31
|
children: [/*#__PURE__*/_jsx(MenuItem, {
|
29
32
|
value: "",
|
30
33
|
children: "Variables"
|
@@ -19,7 +19,8 @@ export const useEditorSelection = editor => {
|
|
19
19
|
export const EditorProvider = ({
|
20
20
|
editor,
|
21
21
|
theme,
|
22
|
-
children
|
22
|
+
children,
|
23
|
+
setOpenInfiniti
|
23
24
|
}) => {
|
24
25
|
const [event] = useMouseMove();
|
25
26
|
const [previous, setPrevious] = useState("");
|
@@ -54,7 +55,10 @@ export const EditorProvider = ({
|
|
54
55
|
popupType,
|
55
56
|
setPopupType,
|
56
57
|
openAI,
|
57
|
-
setOpenAI
|
58
|
+
setOpenAI: value => {
|
59
|
+
setOpenAI(value);
|
60
|
+
setOpenInfiniti(!!value);
|
61
|
+
}
|
58
62
|
},
|
59
63
|
children: children
|
60
64
|
});
|