@flozy/editor 4.9.8 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Editor/Editor.css +4 -0
- package/dist/Editor/Elements/Color Picker/Styles.js +2 -2
- package/dist/Editor/Elements/Color Picker/defaultColors.js +2 -2
- package/dist/Editor/Elements/Embed/Video.js +9 -2
- package/dist/Editor/Elements/Grid/GridItem.js +18 -22
- package/dist/Editor/Elements/Grid/Styles.js +27 -1
- package/dist/Editor/Elements/Search/SearchAttachment.js +5 -1
- package/dist/Editor/Elements/Search/SearchButton.js +10 -0
- package/dist/Editor/Elements/Search/SearchList.js +26 -6
- package/dist/Editor/Styles/EditorStyles.js +3 -1
- package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +10 -2
- package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +35 -3
- package/dist/Editor/Toolbar/PopupTool/TextFormat.js +5 -5
- package/dist/Editor/common/Section/index.js +11 -18
- package/dist/Editor/common/StyleBuilder/index.js +1 -1
- package/dist/Editor/common/iconslist.js +2 -0
- package/dist/Editor/commonStyle.js +5 -2
- package/dist/Editor/utils/SlateUtilityFunctions.js +2 -0
- package/package.json +1 -1
package/dist/Editor/Editor.css
CHANGED
@@ -9,7 +9,7 @@ const ColorPickerStyles = theme => ({
|
|
9
9
|
width: "24px",
|
10
10
|
height: "24px",
|
11
11
|
marginRight: "8px",
|
12
|
-
border: "
|
12
|
+
border: "unset"
|
13
13
|
}
|
14
14
|
},
|
15
15
|
colorPopper: {
|
@@ -58,7 +58,7 @@ const ColorPickerStyles = theme => ({
|
|
58
58
|
width: "24px",
|
59
59
|
height: "24px",
|
60
60
|
margin: "0px 4px",
|
61
|
-
border: "
|
61
|
+
border: "unset"
|
62
62
|
}
|
63
63
|
},
|
64
64
|
colorPickerIcon: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export const colors = ["#
|
1
|
+
export const colors = ["#000000", "#578CFF", "#A58CFF", "#46BBFF", "#FFC93A", "#33B24F", "#F06C83", "#64748B", "#82A9FE", "#C4B3FF", "#71CBFF", "#FFD055", "#61D57A", "#FA91A4", "#A2B0B9", "#A4C1FF", "#D7CBFF", "#9FDCFF", "#FFDC80", "#8AE59E", "#FCB0BE", "#E4ECF3", "#CDDCFF", "#E0D7FF", "#BEE7FF", "#FFE49E", "#B9F6C6", "#FDCAD3", "#FFFFFF", "#489FF8", "#FE7A00", "linear-gradient(327.62deg, #EBB9E0 13.53%, #9CEEE5 86.82%)", "linear-gradient(310.6deg, #7FA4F4 15.53%, #805EF5 83.64%)", "linear-gradient(95.19deg, #A831E7 4.17%, #F05339 88.89%)", "linear-gradient(90deg, #3F2AB7 12.5%, #0DC9B5 100%)", "#0F172A", "#2563EB", "#8360FD", "#19A9FC", "#FDB52A", "#0E8E2A", "#E1425E"
|
2
2
|
// "#E6E6E6",
|
3
|
-
// "#BEBEBE"
|
3
|
+
// "#BEBEBE",
|
4
4
|
];
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React, { useState, useEffect } from "react";
|
1
|
+
import React, { useState, useEffect, useRef } from "react";
|
2
2
|
import { useSlateStatic, ReactEditor } from "slate-react";
|
3
3
|
import { Node, Transforms } from "slate";
|
4
4
|
import { IconButton, Tooltip, Box, useTheme } from "@mui/material";
|
@@ -24,6 +24,13 @@ const VideoContent = props => {
|
|
24
24
|
alt,
|
25
25
|
videoSX
|
26
26
|
} = props;
|
27
|
+
const iframeRef = useRef(null);
|
28
|
+
useEffect(() => {
|
29
|
+
if (iframeRef.current) {
|
30
|
+
iframeRef.current.src = "about:blank"; // reloading the iframe
|
31
|
+
iframeRef.current.src = embedURL;
|
32
|
+
}
|
33
|
+
}, [embedURL, iframeRef.current]);
|
27
34
|
return resizing ? /*#__PURE__*/_jsx("div", {
|
28
35
|
style: {
|
29
36
|
width: "100%",
|
@@ -37,6 +44,7 @@ const VideoContent = props => {
|
|
37
44
|
icon: "videoPlayer"
|
38
45
|
})
|
39
46
|
}) : /*#__PURE__*/_jsx(Box, {
|
47
|
+
ref: iframeRef,
|
40
48
|
component: "iframe",
|
41
49
|
className: "embedd-iframe",
|
42
50
|
sx: {
|
@@ -52,7 +60,6 @@ const VideoContent = props => {
|
|
52
60
|
background: bgColor || "transparent",
|
53
61
|
...videoSX
|
54
62
|
},
|
55
|
-
src: embedURL,
|
56
63
|
title: alt,
|
57
64
|
allowFullScreen: true
|
58
65
|
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* eslint-disable no-unused-vars */
|
2
2
|
import React, { useEffect, useState, useRef } from "react";
|
3
|
-
import { Button, Dialog, DialogActions, DialogContent, useTheme } from "@mui/material";
|
3
|
+
import { Button, Dialog, DialogActions, DialogContent, useTheme, Popper } from "@mui/material";
|
4
4
|
import { Node, Path, Transforms } from "slate";
|
5
5
|
import { useSlateStatic, ReactEditor } from "slate-react";
|
6
6
|
import GridItemPopup from "./GridItemPopup";
|
@@ -37,27 +37,23 @@ const Resizer = ({
|
|
37
37
|
};
|
38
38
|
const GridItemToolbar = props => {
|
39
39
|
const {
|
40
|
+
classes,
|
40
41
|
selected,
|
41
42
|
showTool,
|
42
43
|
onSettings,
|
43
|
-
onAddColumn
|
44
|
+
onAddColumn,
|
45
|
+
columnRef
|
44
46
|
} = props;
|
45
|
-
return selected && !showTool ? /*#__PURE__*/_jsxs(
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
display: "flex",
|
52
|
-
flexDirection: "row"
|
53
|
-
},
|
47
|
+
return selected && !showTool ? /*#__PURE__*/_jsxs(Popper, {
|
48
|
+
anchorEl: columnRef?.current,
|
49
|
+
open: true,
|
50
|
+
placement: "top-end",
|
51
|
+
sx: classes.popTools,
|
52
|
+
className: "gi-tool-pp",
|
54
53
|
children: [/*#__PURE__*/_jsx(Tooltip, {
|
55
54
|
title: "Column Settings",
|
56
55
|
arrow: true,
|
57
56
|
children: /*#__PURE__*/_jsx(IconButton, {
|
58
|
-
sx: {
|
59
|
-
marginRight: "4px"
|
60
|
-
},
|
61
57
|
size: "small",
|
62
58
|
onClick: onSettings,
|
63
59
|
children: /*#__PURE__*/_jsx(GridSettingsIcon, {})
|
@@ -66,9 +62,6 @@ const GridItemToolbar = props => {
|
|
66
62
|
title: "Add Column",
|
67
63
|
arrow: true,
|
68
64
|
children: /*#__PURE__*/_jsx(IconButton, {
|
69
|
-
sx: {
|
70
|
-
marginRight: "4px"
|
71
|
-
},
|
72
65
|
size: "small",
|
73
66
|
onClick: onAddColumn,
|
74
67
|
children: /*#__PURE__*/_jsx(AddIcon, {})
|
@@ -84,9 +77,13 @@ const GridItem = props => {
|
|
84
77
|
updateColumnWidth,
|
85
78
|
updateColNodes
|
86
79
|
} = useGrid() || {};
|
80
|
+
const {
|
81
|
+
hoverPath,
|
82
|
+
theme: appTheme
|
83
|
+
} = useEditorContext();
|
87
84
|
const columnRef = useRef(null);
|
88
85
|
const theme = useTheme();
|
89
|
-
const classes = GridStyles(theme);
|
86
|
+
const classes = GridStyles(theme, appTheme);
|
90
87
|
const {
|
91
88
|
attributes,
|
92
89
|
children,
|
@@ -123,9 +120,6 @@ const GridItem = props => {
|
|
123
120
|
} = alignment || {};
|
124
121
|
const editor = useSlateStatic();
|
125
122
|
const path = ReactEditor.findPath(editor, element);
|
126
|
-
const {
|
127
|
-
hoverPath
|
128
|
-
} = useEditorContext();
|
129
123
|
const selected = hoverPath === path.join(",");
|
130
124
|
const [showTool] = useEditorSelection(editor);
|
131
125
|
const [parentDOM, setParentDOM] = useState({});
|
@@ -308,10 +302,12 @@ const GridItem = props => {
|
|
308
302
|
className: "element-selector-dots br",
|
309
303
|
children: " "
|
310
304
|
}), /*#__PURE__*/_jsx(GridItemToolbar, {
|
305
|
+
classes: classes,
|
311
306
|
selected: selected,
|
312
307
|
showTool: showTool,
|
313
308
|
onSettings: onSettings,
|
314
|
-
onAddColumn: onAddColumn
|
309
|
+
onAddColumn: onAddColumn,
|
310
|
+
columnRef: columnRef
|
315
311
|
})]
|
316
312
|
}), /*#__PURE__*/_jsx(Box, {
|
317
313
|
ref: columnRef,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
const GridStyles = theme => ({
|
1
|
+
const GridStyles = (theme, appTheme) => ({
|
2
2
|
gridButton: {
|
3
3
|
background: "#007FFF",
|
4
4
|
color: "#fff",
|
@@ -86,6 +86,32 @@ const GridStyles = theme => ({
|
|
86
86
|
}
|
87
87
|
}
|
88
88
|
}
|
89
|
+
},
|
90
|
+
popTools: {
|
91
|
+
zIndex: 1000,
|
92
|
+
"& button": {
|
93
|
+
borderRadius: "8px",
|
94
|
+
marginRight: "4px",
|
95
|
+
border: "1px solid rgba(37, 99, 235, 0.32)",
|
96
|
+
boxShadow: "0px 0px 10px 0px rgba(0, 0, 0, 0.16)",
|
97
|
+
background: appTheme?.palette?.editor?.background,
|
98
|
+
color: "#64748B",
|
99
|
+
"& svg": {
|
100
|
+
width: "16px",
|
101
|
+
height: "16px",
|
102
|
+
"& .fillStroke": {
|
103
|
+
stroke: "#64748B"
|
104
|
+
}
|
105
|
+
},
|
106
|
+
"&:hover": {
|
107
|
+
background: appTheme?.palette?.editor?.background,
|
108
|
+
border: "1px solid #2684ff",
|
109
|
+
color: "#2684ff",
|
110
|
+
"& .fillStroke": {
|
111
|
+
stroke: "#2684ff"
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
89
115
|
}
|
90
116
|
});
|
91
117
|
export default GridStyles;
|
@@ -36,7 +36,7 @@ const SearchAttachment = props => {
|
|
36
36
|
display: "block"
|
37
37
|
},
|
38
38
|
children: /*#__PURE__*/_jsxs(Card, {
|
39
|
-
|
39
|
+
sx: {
|
40
40
|
display: "flex",
|
41
41
|
justifyContent: "flex-start",
|
42
42
|
alignItems: "flex-end",
|
@@ -48,6 +48,10 @@ const SearchAttachment = props => {
|
|
48
48
|
borderRadius: "7px !important",
|
49
49
|
background: theme?.palette?.containers?.slashBrainCardBg,
|
50
50
|
cursor: 'pointer',
|
51
|
+
"&.MuiPaper-root.MuiPaper-rounded": {
|
52
|
+
borderRadius: "7px !important",
|
53
|
+
paddingTop: '0px !important'
|
54
|
+
},
|
51
55
|
"& *::selection": {
|
52
56
|
background: "#000"
|
53
57
|
}
|
@@ -7,6 +7,7 @@ import SwipeableDrawerComponent from "../../common/SwipeableDrawer";
|
|
7
7
|
import SearchAndDocList from "./SearchList";
|
8
8
|
import { insertBrain } from "../../utils/brains";
|
9
9
|
import { useDebounce } from "use-debounce";
|
10
|
+
import { Editor, Transforms } from "slate";
|
10
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
11
12
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
12
13
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
@@ -88,6 +89,15 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
|
|
88
89
|
setSkip(0);
|
89
90
|
};
|
90
91
|
const handleClose = () => {
|
92
|
+
const {
|
93
|
+
selection
|
94
|
+
} = editor;
|
95
|
+
if (selection) {
|
96
|
+
const [, currentPath] = Editor.node(editor, selection);
|
97
|
+
Transforms.insertText(editor, '', {
|
98
|
+
at: currentPath
|
99
|
+
});
|
100
|
+
}
|
91
101
|
setAnchorEl(null);
|
92
102
|
};
|
93
103
|
const handleClick = data => {
|
@@ -35,12 +35,12 @@ const SearchAndDocList = ({
|
|
35
35
|
},
|
36
36
|
sx: {
|
37
37
|
borderRadius: "6px",
|
38
|
-
backgroundColor: theme?.palette?.
|
39
|
-
border:
|
38
|
+
backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
|
39
|
+
border: `1px solid ${theme?.palette?.primary?.slashBrainBorder}`,
|
40
40
|
padding: "5px",
|
41
41
|
"&:hover": {
|
42
|
-
backgroundColor: theme?.palette?.
|
43
|
-
background: theme?.palette?.
|
42
|
+
backgroundColor: theme?.palette?.editor?.sectionSettingIconHover,
|
43
|
+
background: theme?.palette?.editor?.sectionSettingIconHover
|
44
44
|
}
|
45
45
|
},
|
46
46
|
children: /*#__PURE__*/_jsx(Icon, {
|
@@ -77,6 +77,7 @@ const SearchAndDocList = ({
|
|
77
77
|
"& .MuiOutlinedInput-root": {
|
78
78
|
color: theme?.palette?.primary?.main,
|
79
79
|
boxShadow: theme?.palette?.shadows?.shadow12,
|
80
|
+
backgroundColor: theme?.palette?.editor?.miniToolBarBackground,
|
80
81
|
"&:hover .MuiOutlinedInput-notchedOutline": {
|
81
82
|
borderRadius: "8px",
|
82
83
|
border: `1px solid ${theme?.palette?.primary?.slashBrainBorder}`,
|
@@ -85,7 +86,7 @@ const SearchAndDocList = ({
|
|
85
86
|
"&.Mui-focused .MuiOutlinedInput-notchedOutline": {
|
86
87
|
borderRadius: "8px",
|
87
88
|
border: `1px solid ${theme?.palette?.primary?.slashBrainBorder}`,
|
88
|
-
borderColor: theme?.palette?.primary?.slashBrainBorder
|
89
|
+
borderColor: `${theme?.palette?.primary?.slashBrainBorder} !important`
|
89
90
|
}
|
90
91
|
},
|
91
92
|
'& .MuiOutlinedInput-notchedOutline': {
|
@@ -113,7 +114,26 @@ const SearchAndDocList = ({
|
|
113
114
|
overflowY: 'auto',
|
114
115
|
overflowX: 'hidden',
|
115
116
|
padding: '0px 16px 8px',
|
116
|
-
marginBottom: '20px'
|
117
|
+
marginBottom: '20px',
|
118
|
+
scrollbarWidth: "thin",
|
119
|
+
scrollbarColor: `${theme?.palette?.primary?.slashBrainBorder} transparent`,
|
120
|
+
"&::-webkit-scrollbar": {
|
121
|
+
width: "3px",
|
122
|
+
height: "3px !important",
|
123
|
+
borderRadius: "10px !important"
|
124
|
+
},
|
125
|
+
"&::-webkit-scrollbar-thumb": {
|
126
|
+
backgroundColor: theme?.palette?.primary?.slashBrainBorder,
|
127
|
+
borderRadius: "10px !important",
|
128
|
+
width: "3px !important"
|
129
|
+
},
|
130
|
+
"&::-webkit-scrollbar-thumb:hover": {
|
131
|
+
backgroundColor: theme?.palette?.primary?.slashBrainBorder
|
132
|
+
},
|
133
|
+
"&::-webkit-scrollbar-track": {
|
134
|
+
background: "transparent",
|
135
|
+
borderRadius: "10px !important"
|
136
|
+
}
|
117
137
|
},
|
118
138
|
children: [mapData?.map((doc, index) => {
|
119
139
|
const title = doc?.title?.trim() === "" ? 'Untitled' : doc?.title;
|
@@ -291,9 +291,11 @@ const editorStyles = ({
|
|
291
291
|
}
|
292
292
|
},
|
293
293
|
fullScreenWrapper: {
|
294
|
+
"& .editor-wrapper": {
|
295
|
+
paddingTop: '20px'
|
296
|
+
},
|
294
297
|
"& .MuiPaper-root": {
|
295
298
|
borderRadius: "0px !important",
|
296
|
-
paddingTop: "20px",
|
297
299
|
"& .MuiDialogTitle-root": {
|
298
300
|
position: "absolute",
|
299
301
|
top: 0,
|
@@ -1,10 +1,11 @@
|
|
1
1
|
import React, { useState } from "react";
|
2
|
-
import { Grid, Typography, IconButton, Tooltip, TextField } from "@mui/material";
|
2
|
+
import { Grid, Typography, IconButton, Tooltip, TextField, InputAdornment } from "@mui/material";
|
3
3
|
import CloseIcon from "@mui/icons-material/Close";
|
4
4
|
import OpenInFullIcon from "@mui/icons-material/OpenInFull";
|
5
5
|
import CloseFullscreenIcon from "@mui/icons-material/CloseFullscreen";
|
6
6
|
import Icon from "../../common/Icon";
|
7
7
|
import { ToggleFullScreenIcon } from "../../common/iconListV2";
|
8
|
+
import { SearchIcon } from "../../common/iconslist";
|
8
9
|
import { jsx as _jsx } from "react/jsx-runtime";
|
9
10
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
11
|
const SearchBox = props => {
|
@@ -17,7 +18,13 @@ const SearchBox = props => {
|
|
17
18
|
sx: classes.searchBox,
|
18
19
|
size: "small",
|
19
20
|
value: search,
|
20
|
-
onChange: handleChange
|
21
|
+
onChange: handleChange,
|
22
|
+
InputProps: {
|
23
|
+
startAdornment: /*#__PURE__*/_jsx(InputAdornment, {
|
24
|
+
position: "start",
|
25
|
+
children: /*#__PURE__*/_jsx(SearchIcon, {})
|
26
|
+
})
|
27
|
+
}
|
21
28
|
});
|
22
29
|
};
|
23
30
|
const PopperHeader = props => {
|
@@ -63,6 +70,7 @@ const PopperHeader = props => {
|
|
63
70
|
sx: {
|
64
71
|
position: 'relative'
|
65
72
|
},
|
73
|
+
className: "inputField",
|
66
74
|
children: [/*#__PURE__*/_jsx(IconButton, {
|
67
75
|
className: openSearch ? 'searchContainer' : '',
|
68
76
|
onClick: handleSearchButton,
|
@@ -24,6 +24,31 @@ const usePopupStyle = theme => ({
|
|
24
24
|
"& .MuiDialog-paperFullScreen": {
|
25
25
|
borderRadius: "0px !important"
|
26
26
|
},
|
27
|
+
"& .inputField": {
|
28
|
+
height: '29px',
|
29
|
+
'& .MuiIconButton-root': {
|
30
|
+
padding: '5px'
|
31
|
+
},
|
32
|
+
"& .MuiFormControl-root": {
|
33
|
+
background: theme?.palette?.editor?.inputFieldBgColor,
|
34
|
+
borderRadius: "8px"
|
35
|
+
},
|
36
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
37
|
+
borderRadius: "8px",
|
38
|
+
border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`
|
39
|
+
},
|
40
|
+
"& .MuiOutlinedInput-input": {
|
41
|
+
padding: "3px 35px 4px 2px !important"
|
42
|
+
},
|
43
|
+
"& .MuiInputBase-adornedStart": {
|
44
|
+
padding: "0px 0px 0px 9px"
|
45
|
+
},
|
46
|
+
'& svg': {
|
47
|
+
'& path': {
|
48
|
+
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
49
|
+
}
|
50
|
+
}
|
51
|
+
},
|
27
52
|
"&.textSettings": {
|
28
53
|
"@media only screen and (max-width: 600px)": {
|
29
54
|
margin: "4px !important",
|
@@ -56,6 +81,11 @@ const usePopupStyle = theme => ({
|
|
56
81
|
"& .buttonsWrpr": {
|
57
82
|
"& button": {
|
58
83
|
color: theme?.palette?.editor?.textColor
|
84
|
+
},
|
85
|
+
"& .more-btn-cbs": {
|
86
|
+
color: `${theme?.palette?.editor?.closeButtonSvgStroke}`,
|
87
|
+
border: `1.5px solid ${theme?.palette?.editor?.closeButtonSvgStroke}`,
|
88
|
+
paddingTop: "10px"
|
59
89
|
}
|
60
90
|
},
|
61
91
|
"@media only screen and (max-width: 599px)": {
|
@@ -596,7 +626,7 @@ const usePopupStyle = theme => ({
|
|
596
626
|
borderRadius: "7px !important",
|
597
627
|
"& .buttonsWrpr": {
|
598
628
|
"& button": {
|
599
|
-
border: "1px solid #ccc",
|
629
|
+
// border: "1px solid #ccc",
|
600
630
|
margin: "4px",
|
601
631
|
width: "24px",
|
602
632
|
height: "24px",
|
@@ -652,14 +682,16 @@ const usePopupStyle = theme => ({
|
|
652
682
|
padding: "7px 15px",
|
653
683
|
color: "#FFF",
|
654
684
|
width: "100px",
|
655
|
-
marginBottom: "10px"
|
685
|
+
marginBottom: "10px",
|
686
|
+
textTransform: "capitalize"
|
656
687
|
},
|
657
688
|
"& .outlineBtn": {
|
658
689
|
border: "1px solid #D7DBEC",
|
659
690
|
borderRadius: "7px",
|
660
691
|
padding: "7px 15px",
|
661
692
|
color: "#FFF",
|
662
|
-
width: "100px"
|
693
|
+
width: "100px",
|
694
|
+
textTransform: "capitalize"
|
663
695
|
}
|
664
696
|
},
|
665
697
|
searchBox: {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { useState } from "react";
|
2
2
|
import { Button, ButtonGroup, Divider, Grid, Typography } from "@mui/material";
|
3
|
-
import
|
3
|
+
import KeyboardArrowDownRoundedIcon from "@mui/icons-material/KeyboardArrowDownRounded";
|
4
4
|
import { Dropdown, MarkButton, TextSize, BlockButton, AccordionButton } from "../FormatTools";
|
5
5
|
import { toolbarGroups } from "../toolbarGroups";
|
6
6
|
import ColorPicker from "../../Elements/Color Picker/ColorPicker";
|
@@ -438,8 +438,8 @@ const TextFormat = props => {
|
|
438
438
|
className: "vl"
|
439
439
|
}), /*#__PURE__*/_jsx(Button, {
|
440
440
|
onClick: handleColorPicker("bgColor"),
|
441
|
-
className: "colorPicker",
|
442
|
-
children: /*#__PURE__*/_jsx(
|
441
|
+
className: "colorPicker textFormatMUIIcon",
|
442
|
+
children: /*#__PURE__*/_jsx(KeyboardArrowDownRoundedIcon, {})
|
443
443
|
})]
|
444
444
|
}), /*#__PURE__*/_jsxs(ButtonGroup, {
|
445
445
|
sx: classes.btnGroup2,
|
@@ -460,8 +460,8 @@ const TextFormat = props => {
|
|
460
460
|
className: "vl"
|
461
461
|
}), /*#__PURE__*/_jsx(Button, {
|
462
462
|
onClick: handleColorPicker("color"),
|
463
|
-
className: "colorPicker",
|
464
|
-
children: /*#__PURE__*/_jsx(
|
463
|
+
className: "colorPicker textFormatMUIIcon",
|
464
|
+
children: /*#__PURE__*/_jsx(KeyboardArrowDownRoundedIcon, {})
|
465
465
|
})]
|
466
466
|
})]
|
467
467
|
}), /*#__PURE__*/_jsx(AllColors, {
|
@@ -9,7 +9,7 @@ import { getBreakPointsValue, getTRBLBreakPoints, groupByBreakpoint } from "../.
|
|
9
9
|
import DragHandle from "../DnD/DragHandleButton";
|
10
10
|
import { useEditorSelection } from "../../hooks/useMouseMove";
|
11
11
|
import SectionStyle from "./styles";
|
12
|
-
|
12
|
+
import useWindowResize from "../../hooks/useWindowResize";
|
13
13
|
import { jsx as _jsx } from "react/jsx-runtime";
|
14
14
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
15
15
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
@@ -45,11 +45,8 @@ const Section = props => {
|
|
45
45
|
const path = ReactEditor.findPath(editor, element);
|
46
46
|
const anchorEl = useRef(null);
|
47
47
|
const popperEl = useRef(null);
|
48
|
-
|
49
|
-
|
50
|
-
// const isSectionFullWidth =
|
51
|
-
// sectionGridSize && sectionGridSize[size?.device] >= 12;
|
52
|
-
|
48
|
+
const [size] = useWindowResize();
|
49
|
+
const isSectionFullWidth = sectionGridSize && sectionGridSize[size?.device] >= 12;
|
53
50
|
const [isHovering, setIsHovering] = useState(false);
|
54
51
|
const onMouseEnter = () => {
|
55
52
|
setIsHovering(true);
|
@@ -80,9 +77,6 @@ const Section = props => {
|
|
80
77
|
children: /*#__PURE__*/_jsx(Tooltip, {
|
81
78
|
title: "Section Settings",
|
82
79
|
children: /*#__PURE__*/_jsx(IconButton, {
|
83
|
-
sx: {
|
84
|
-
marginBottom: '25px !important'
|
85
|
-
},
|
86
80
|
onClick: onSettings,
|
87
81
|
children: /*#__PURE__*/_jsx(TuneIcon, {})
|
88
82
|
})
|
@@ -155,16 +149,11 @@ const Section = props => {
|
|
155
149
|
className: "ed-section-inner",
|
156
150
|
sx: {
|
157
151
|
position: "relative",
|
158
|
-
...edInnerSp
|
159
|
-
outline: isHovering ? `1px dashed ${theme?.palette?.editor?.inputFieldBorder}` : 'none'
|
160
|
-
// borderRadius: '5px'
|
152
|
+
...edInnerSp
|
161
153
|
},
|
162
|
-
|
163
154
|
ref: anchorEl,
|
164
|
-
children: [isHovering ? /*#__PURE__*/_jsx(Popper, {
|
165
|
-
open: isHovering
|
166
|
-
// open={isHovering && isSectionFullWidth} //commenting for ui demo if okay remove this comment before dev
|
167
|
-
,
|
155
|
+
children: [isHovering && isSectionFullWidth ? /*#__PURE__*/_jsx(Popper, {
|
156
|
+
open: isHovering && isSectionFullWidth,
|
168
157
|
anchorEl: anchorEl?.current,
|
169
158
|
placement: "top-start",
|
170
159
|
sx: {
|
@@ -187,7 +176,11 @@ const Section = props => {
|
|
187
176
|
fromPopper: true
|
188
177
|
})]
|
189
178
|
})
|
190
|
-
}) : /*#__PURE__*/
|
179
|
+
}) : /*#__PURE__*/_jsxs(_Fragment, {
|
180
|
+
children: [!readOnly && !showTool ? /*#__PURE__*/_jsx(DragHandle, {
|
181
|
+
...props
|
182
|
+
}) : null, /*#__PURE__*/_jsx(Toolbar, {})]
|
183
|
+
}), children]
|
191
184
|
}), openSetttings ? /*#__PURE__*/_jsx(SectionPopup, {
|
192
185
|
element: {
|
193
186
|
...element,
|
@@ -1274,6 +1274,7 @@ export const GridSettingsIcon = props => /*#__PURE__*/_jsxs("svg", {
|
|
1274
1274
|
children: [/*#__PURE__*/_jsx("path", {
|
1275
1275
|
d: "M11 13.75C12.5188 13.75 13.75 12.5188 13.75 11C13.75 9.48122 12.5188 8.25 11 8.25C9.48122 8.25 8.25 9.48122 8.25 11C8.25 12.5188 9.48122 13.75 11 13.75Z",
|
1276
1276
|
stroke: "#64748B",
|
1277
|
+
className: "fillStroke",
|
1277
1278
|
strokeWidth: "1.5",
|
1278
1279
|
strokeMiterlimit: "10",
|
1279
1280
|
strokeLinecap: "round",
|
@@ -1281,6 +1282,7 @@ export const GridSettingsIcon = props => /*#__PURE__*/_jsxs("svg", {
|
|
1281
1282
|
}), /*#__PURE__*/_jsx("path", {
|
1282
1283
|
d: "M1.8335 11.8066V10.1933C1.8335 9.23998 2.61266 8.45165 3.57516 8.45165C5.23433 8.45165 5.91266 7.27832 5.0785 5.83915C4.60183 5.01415 4.886 3.94165 5.72016 3.46498L7.306 2.55748C8.03016 2.12665 8.96516 2.38332 9.396 3.10748L9.49683 3.28165C10.3218 4.72082 11.6785 4.72082 12.5127 3.28165L12.6135 3.10748C13.0443 2.38332 13.9793 2.12665 14.7035 2.55748L16.2893 3.46498C17.1235 3.94165 17.4077 5.01415 16.931 5.83915C16.0968 7.27832 16.7752 8.45165 18.4343 8.45165C19.3877 8.45165 20.176 9.23082 20.176 10.1933V11.8066C20.176 12.76 19.3968 13.5483 18.4343 13.5483C16.7752 13.5483 16.0968 14.7216 16.931 16.1608C17.4077 16.995 17.1235 18.0583 16.2893 18.535L14.7035 19.4425C13.9793 19.8733 13.0443 19.6166 12.6135 18.8925L12.5127 18.7183C11.6877 17.2791 10.331 17.2791 9.49683 18.7183L9.396 18.8925C8.96516 19.6166 8.03016 19.8733 7.306 19.4425L5.72016 18.535C4.886 18.0583 4.60183 16.9858 5.0785 16.1608C5.91266 14.7216 5.23433 13.5483 3.57516 13.5483C2.61266 13.5483 1.8335 12.76 1.8335 11.8066Z",
|
1283
1284
|
stroke: "#64748B",
|
1285
|
+
className: "fillStroke",
|
1284
1286
|
strokeWidth: "1.5",
|
1285
1287
|
strokeMiterlimit: "10",
|
1286
1288
|
strokeLinecap: "round",
|
@@ -162,7 +162,8 @@ const useCommonStyle = theme => ({
|
|
162
162
|
background: `${theme?.palette?.editor?.closeButtonBgColor} !important`
|
163
163
|
},
|
164
164
|
"& .deleteBtn": {
|
165
|
-
background: "transparent"
|
165
|
+
background: "transparent",
|
166
|
+
margin: '0px !important'
|
166
167
|
},
|
167
168
|
"& .MuiGrid-container": {
|
168
169
|
"& .workFlowButton": {
|
@@ -170,7 +171,9 @@ const useCommonStyle = theme => ({
|
|
170
171
|
textTransform: "unset !important",
|
171
172
|
color: `${theme?.palette?.editor?.textColor} !important`,
|
172
173
|
fontSize: "14px !important",
|
173
|
-
fontWeight: "500 !important"
|
174
|
+
fontWeight: "500 !important",
|
175
|
+
borderRadius: "25px",
|
176
|
+
padding: "5px 15px"
|
174
177
|
}
|
175
178
|
},
|
176
179
|
"& .MuiDialogActions-root": {
|
@@ -369,12 +369,14 @@ export const getBlock = props => {
|
|
369
369
|
});
|
370
370
|
case "orderedList":
|
371
371
|
return /*#__PURE__*/_jsx("ol", {
|
372
|
+
className: "listItemMargin",
|
372
373
|
type: "1",
|
373
374
|
...attributes,
|
374
375
|
children: children
|
375
376
|
});
|
376
377
|
case "unorderedList":
|
377
378
|
return /*#__PURE__*/_jsx("ul", {
|
379
|
+
className: "listItemMargin",
|
378
380
|
...attributes,
|
379
381
|
children: children
|
380
382
|
});
|