@flozy/editor 6.0.9 → 7.0.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.
Files changed (115) hide show
  1. package/dist/Editor/ChatEditor.js +7 -7
  2. package/dist/Editor/CommonEditor.js +25 -81
  3. package/dist/Editor/DialogWrapper.js +25 -31
  4. package/dist/Editor/Editor.css +16 -21
  5. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  6. package/dist/Editor/Elements/Button/EditorButton.js +9 -25
  7. package/dist/Editor/Elements/Color Picker/ColorButtons.js +12 -57
  8. package/dist/Editor/Elements/Color Picker/ColorPicker.css +1 -25
  9. package/dist/Editor/Elements/Color Picker/ColorPicker.js +4 -4
  10. package/dist/Editor/Elements/Color Picker/Styles.js +1 -1
  11. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +1 -1
  12. package/dist/Editor/Elements/Embed/Image.js +2 -2
  13. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +14 -0
  14. package/dist/Editor/Elements/FreeGrid/styles.js +0 -3
  15. package/dist/Editor/Elements/Grid/GridItem.js +3 -2
  16. package/dist/Editor/Elements/Link/Link.js +43 -70
  17. package/dist/Editor/Elements/SimpleText/index.js +12 -7
  18. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  19. package/dist/Editor/Elements/Table/Table.js +12 -12
  20. package/dist/Editor/Elements/Title/title.js +1 -13
  21. package/dist/Editor/Elements/Variables/Style.js +2 -28
  22. package/dist/Editor/Elements/Variables/VariableButton.js +4 -17
  23. package/dist/Editor/Styles/EditorStyles.js +4 -2
  24. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
  25. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
  26. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  27. package/dist/Editor/Toolbar/FormatTools/TextSize.js +15 -7
  28. package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +8 -9
  29. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
  30. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +85 -210
  31. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +1 -2
  32. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -16
  33. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +9 -56
  34. package/dist/Editor/Toolbar/PopupTool/index.js +48 -32
  35. package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
  36. package/dist/Editor/common/ColorPickerButton.js +9 -32
  37. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  38. package/dist/Editor/common/DnD/Draggable.js +1 -0
  39. package/dist/Editor/common/FontLoader/FontList.js +11 -3
  40. package/dist/Editor/common/FontLoader/FontLoader.js +42 -74
  41. package/dist/Editor/common/Icon.js +0 -28
  42. package/dist/Editor/common/ImageSelector/Options/Upload.js +1 -1
  43. package/dist/Editor/common/ImageSelector/Styles.js +9 -3
  44. package/dist/Editor/common/ImageSelector/UploadStyles.js +2 -1
  45. package/dist/Editor/common/MentionsPopup/Styles.js +9 -3
  46. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +1 -2
  47. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
  48. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
  49. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
  50. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
  51. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -4
  52. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +2 -3
  53. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
  54. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +2 -3
  55. package/dist/Editor/common/RnD/ElementSettings/styles.js +1 -0
  56. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -8
  57. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +3 -6
  58. package/dist/Editor/common/RnD/Utils/gridDropItem.js +4 -5
  59. package/dist/Editor/common/RnD/Utils/index.js +0 -40
  60. package/dist/Editor/common/RnD/index.js +3 -23
  61. package/dist/Editor/common/Section/index.js +89 -60
  62. package/dist/Editor/common/Shorthands/elements.js +0 -54
  63. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
  64. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
  65. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
  66. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
  67. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +2 -10
  68. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +11 -35
  69. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +4 -13
  70. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
  71. package/dist/Editor/common/Uploader.js +0 -8
  72. package/dist/Editor/commonStyle.js +65 -55
  73. package/dist/Editor/helper/deserialize/index.js +1 -1
  74. package/dist/Editor/helper/index.js +2 -2
  75. package/dist/Editor/helper/theme.js +2 -200
  76. package/dist/Editor/hooks/useDrag.js +11 -17
  77. package/dist/Editor/hooks/useEditorScroll.js +2 -1
  78. package/dist/Editor/hooks/useMouseMove.js +3 -9
  79. package/dist/Editor/plugins/withEmbeds.js +1 -1
  80. package/dist/Editor/plugins/withHTML.js +9 -5
  81. package/dist/Editor/plugins/withLayout.js +1 -1
  82. package/dist/Editor/plugins/withTable.js +1 -1
  83. package/dist/Editor/theme/ThemeList.js +173 -50
  84. package/dist/Editor/utils/SlateUtilityFunctions.js +49 -157
  85. package/dist/Editor/utils/button.js +14 -0
  86. package/dist/Editor/utils/draftToSlate.js +2 -3
  87. package/dist/Editor/utils/font.js +37 -40
  88. package/dist/Editor/utils/helper.js +20 -48
  89. package/dist/Editor/utils/link.js +1 -1
  90. package/package.json +3 -6
  91. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -438
  92. package/dist/Editor/assets/svg/ThemeIcons.js +0 -291
  93. package/dist/Editor/common/CustomColorPicker/index.js +0 -106
  94. package/dist/Editor/common/CustomColorPicker/style.js +0 -53
  95. package/dist/Editor/common/CustomDialog/index.js +0 -94
  96. package/dist/Editor/common/CustomDialog/style.js +0 -67
  97. package/dist/Editor/common/CustomSelect.js +0 -33
  98. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
  99. package/dist/Editor/hooks/useEditorTheme.js +0 -153
  100. package/dist/Editor/theme/index.js +0 -144
  101. package/dist/Editor/themeSettings/ActiveTheme.js +0 -72
  102. package/dist/Editor/themeSettings/buttons/index.js +0 -283
  103. package/dist/Editor/themeSettings/buttons/style.js +0 -21
  104. package/dist/Editor/themeSettings/colorTheme/index.js +0 -292
  105. package/dist/Editor/themeSettings/colorTheme/style.js +0 -77
  106. package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
  107. package/dist/Editor/themeSettings/fonts/index.js +0 -220
  108. package/dist/Editor/themeSettings/fonts/style.js +0 -44
  109. package/dist/Editor/themeSettings/icons.js +0 -60
  110. package/dist/Editor/themeSettings/index.js +0 -320
  111. package/dist/Editor/themeSettings/style.js +0 -152
  112. package/dist/Editor/themeSettingsAI/icons.js +0 -96
  113. package/dist/Editor/themeSettingsAI/index.js +0 -356
  114. package/dist/Editor/themeSettingsAI/saveTheme.js +0 -197
  115. package/dist/Editor/themeSettingsAI/style.js +0 -250
@@ -3,13 +3,13 @@ import { Checkbox, FormControlLabel, Grid, Slider, Typography, Box, IconButton }
3
3
  import { squreStyle } from "./radiusStyle";
4
4
  import { getBreakPointsValue } from "../../../helper/theme";
5
5
  import useWindowResize from "../../../hooks/useWindowResize";
6
- import { useEditorTheme } from "../../../hooks/useEditorTheme";
7
6
  import { CheckedBoxCheckIcon } from "../../iconListV2";
8
7
  import { jsx as _jsx } from "react/jsx-runtime";
9
8
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
9
  const BANNER_SPACING_KEYS = ["top", "left", "right", "bottom"];
11
10
  const BannerSpacing = props => {
12
11
  const {
12
+ value: val,
13
13
  data,
14
14
  onChange,
15
15
  elementProps,
@@ -19,17 +19,7 @@ const BannerSpacing = props => {
19
19
  key
20
20
  } = data;
21
21
  const lockKeyVal = `lock${key}`;
22
- const {
23
- selectedTheme
24
- } = useEditorTheme();
25
- const {
26
- bannerSpacing,
27
- lockbannerSpacing
28
- } = selectedTheme?.elementProps?.button || {};
29
- const isUserValue = Object.keys(props?.value || {})?.length;
30
- const isUserLockedSpacing = typeof elementProps[lockKeyVal] === "boolean";
31
- const val = isUserValue ? props?.value : bannerSpacing;
32
- let lockSpacing = isUserLockedSpacing ? elementProps[lockKeyVal] : lockbannerSpacing;
22
+ let lockSpacing = elementProps[lockKeyVal];
33
23
  if (lockSpacing === undefined) {
34
24
  lockSpacing = true;
35
25
  }
@@ -3,36 +3,28 @@ import { Grid, Typography, Slider, FormControlLabel, Checkbox, Box, IconButton }
3
3
  import { radiusStyle } from "./radiusStyle";
4
4
  import useWindowResize from "../../../hooks/useWindowResize";
5
5
  import { getBreakPointsValue, getCustomizationValue } from "../../../helper/theme";
6
- import { useEditorTheme } from "../../../hooks/useEditorTheme";
7
6
  import { CheckedBoxCheckIcon } from "../../iconListV2";
8
7
  import { jsx as _jsx } from "react/jsx-runtime";
9
8
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
9
  const BORDER_RADIUS_KEYS = ["topLeft", "topRight", "bottomLeft", "bottomRight"];
11
10
  const BorderRadius = props => {
12
11
  const {
12
+ value: val,
13
13
  data,
14
14
  onChange,
15
15
  elementProps,
16
16
  classes
17
17
  } = props;
18
+ let {
19
+ lockRadius
20
+ } = elementProps;
21
+ if (lockRadius === undefined) {
22
+ lockRadius = true;
23
+ }
18
24
  const {
19
25
  key
20
26
  } = data;
21
27
  const [size] = useWindowResize();
22
- const {
23
- selectedTheme
24
- } = useEditorTheme();
25
- const {
26
- borderRadius,
27
- lockRadius: themeLockRadius
28
- } = selectedTheme?.elementProps?.button || {};
29
- const isUserValue = Object.keys(props?.value || {})?.length;
30
- const isUserLockedRadius = typeof elementProps?.lockRadius === "boolean";
31
- const val = isUserValue ? props?.value : borderRadius;
32
- let lockRadius = isUserLockedRadius ? elementProps?.lockRadius : themeLockRadius;
33
- if (lockRadius === undefined) {
34
- lockRadius = true;
35
- }
36
28
  const value = getBreakPointsValue(val, size?.device);
37
29
  const handleChange = e => {
38
30
  let changeAll = {};
@@ -1,7 +1,6 @@
1
1
  import { Box, Card, Checkbox, FormControlLabel, Grid, Tooltip, Typography } from "@mui/material";
2
2
  import React from "react";
3
3
  import Icon from "../../Icon";
4
- import { useEditorContext } from "../../../hooks/useMouseMove";
5
4
  import { jsx as _jsx } from "react/jsx-runtime";
6
5
  import { Fragment as _Fragment } from "react/jsx-runtime";
7
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -16,10 +15,7 @@ const RenderCard = ({
16
15
  return /*#__PURE__*/_jsx(Card, {
17
16
  sx: {
18
17
  position: 'relative',
19
- padding: "10px",
20
- '& .MuiCheckbox-root svg': {
21
- fill: 'unset !important'
22
- }
18
+ padding: "10px"
23
19
  },
24
20
  children: /*#__PURE__*/_jsx(FormControlLabel, {
25
21
  control: /*#__PURE__*/_jsx(Checkbox, {
@@ -85,9 +81,6 @@ const CardsMapping = props => {
85
81
  selectedCard,
86
82
  infoIcon
87
83
  } = data;
88
- const {
89
- theme
90
- } = useEditorContext();
91
84
  const activeCard = value === selectedCard;
92
85
  const handleChange = e => {
93
86
  if (selectedCard === data?.value) {
@@ -106,8 +99,7 @@ const CardsMapping = props => {
106
99
  sx: {
107
100
  marginBottom: "12px",
108
101
  "& .MuiPaper-root": {
109
- background: theme?.palette?.editor?.miniToolBarBackground,
110
- border: activeCard ? "1px solid #2563EB" : `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
102
+ border: activeCard ? "1px solid #2563EB" : "1px solid #C8D8FA",
111
103
  borderRadius: "8px",
112
104
  boxShadow: activeCard ? "0px 4px 16px 0px #2563EB40" : "unset"
113
105
  }
@@ -1,23 +1,14 @@
1
- import React, { useEffect, useMemo, useState } from "react";
1
+ import React, { useEffect, useState } from "react";
2
2
  import { Grid, TextField, InputAdornment, Typography, Tooltip } from "@mui/material";
3
3
  import ColorPickerButton from "../../ColorPickerButton";
4
- import { useSlateStatic } from "slate-react";
5
- import { getElementStyle, getVariableValue } from "../../../helper/theme";
6
4
  import { jsx as _jsx } from "react/jsx-runtime";
7
5
  import { jsxs as _jsxs } from "react/jsx-runtime";
8
- const MAP_STYLE_PROPS = {
9
- bgColor: "background-color",
10
- textColor: "color"
11
- };
12
6
  const Color = props => {
13
7
  const {
14
- value: val,
8
+ value,
15
9
  data,
16
10
  onChange,
17
- classes,
18
- elementProps,
19
- handleClose,
20
- customProps
11
+ classes
21
12
  } = props;
22
13
  const {
23
14
  key,
@@ -25,20 +16,7 @@ const Color = props => {
25
16
  hideGradient
26
17
  } = data;
27
18
  const [recentColors, setRecentColors] = useState({});
28
- const editor = useSlateStatic();
29
- const {
30
- value,
31
- inputValue
32
- } = useMemo(() => {
33
- const isVariable = val && val.startsWith("var");
34
- const value = isVariable ? val : getElementStyle(editor, elementProps, MAP_STYLE_PROPS[key]);
35
- const inputValue = isVariable ? getVariableValue(val) : getElementStyle(editor, elementProps, MAP_STYLE_PROPS[key]);
36
- return {
37
- value: value || val,
38
- inputValue: inputValue || val
39
- };
40
- }, [editor, val]);
41
- const getLable = label === "Text" ? "Select text color" : label === "Background" ? "Select background color" : label;
19
+ const getLable = label === 'Text' ? 'Select text color' : label === 'Background' ? 'Select background color' : label;
42
20
  useEffect(() => {
43
21
  const storedColors = JSON.parse(localStorage.getItem("recentColors"));
44
22
  if (storedColors) {
@@ -76,11 +54,11 @@ const Color = props => {
76
54
  fontSize: "14px",
77
55
  fontWeight: 500,
78
56
  marginBottom: "5px",
79
- display: "flex",
80
- alignItems: "center",
81
- "& svg": {
82
- width: "20px",
83
- height: "20px"
57
+ display: 'flex',
58
+ alignItems: 'center',
59
+ '& svg': {
60
+ width: '20px',
61
+ height: '20px'
84
62
  }
85
63
  },
86
64
  children: [label, data?.infoIcon ? /*#__PURE__*/_jsx(Tooltip, {
@@ -88,14 +66,14 @@ const Color = props => {
88
66
  title: "Note: If color gradient is used, divider styles will not apply",
89
67
  children: /*#__PURE__*/_jsx("span", {
90
68
  style: {
91
- display: "inline-block"
69
+ display: 'inline-block'
92
70
  },
93
71
  children: data?.infoIcon
94
72
  })
95
73
  }) : null]
96
74
  }), /*#__PURE__*/_jsx(TextField, {
97
75
  fullWidth: true,
98
- value: inputValue,
76
+ value: value,
99
77
  placeholder: getLable || `${label} color code`,
100
78
  InputLabelProps: {
101
79
  shrink: true
@@ -108,8 +86,6 @@ const Color = props => {
108
86
  value: value,
109
87
  onSave: onSave,
110
88
  recentColors: recentColors[key],
111
- handleClose: handleClose,
112
- disableEditTheme: customProps?.disableEditTheme,
113
89
  hideGradient: hideGradient
114
90
  })
115
91
  })
@@ -1,26 +1,19 @@
1
- import React, { useMemo } from "react";
1
+ import React from "react";
2
2
  import { TextField, IconButton, Grid, Typography } from "@mui/material";
3
3
  import { sizeMap } from "../../../utils/font.js";
4
4
  import { TextMinusIcon, TextPlusIcon } from "../../../common/iconslist.js";
5
- import { getElementStyle } from "../../../helper/theme.js";
6
- import { useSlateStatic } from "slate-react";
7
5
  import { jsx as _jsx } from "react/jsx-runtime";
8
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
9
7
  const FontSize = props => {
10
8
  const {
11
- value: val,
9
+ value,
12
10
  data,
13
- onChange,
14
- elementProps
11
+ onChange
15
12
  } = props;
16
13
  const {
17
14
  key,
18
15
  width
19
16
  } = data;
20
- const editor = useSlateStatic();
21
- const value = useMemo(() => {
22
- return getElementStyle(editor, elementProps, "font-size") || val;
23
- }, [editor, val]);
24
17
  const handleChange = e => {
25
18
  let inc = parseInt(e.target.value) || 16;
26
19
  inc = inc > 200 ? 200 : inc;
@@ -31,9 +24,7 @@ const FontSize = props => {
31
24
  const getSizeVal = () => {
32
25
  try {
33
26
  const size = `${value}`?.indexOf("px") >= 0 ? value : sizeMap[value] || value;
34
- const defaultSize = 16;
35
- const val = parseInt(size || defaultSize);
36
- return isNaN(val) ? defaultSize : val;
27
+ return parseInt(size || 16);
37
28
  } catch (err) {
38
29
  return "";
39
30
  }
@@ -1,13 +1,13 @@
1
- import React, { useMemo } from "react";
1
+ import React from "react";
2
2
  import { FormControl, Grid, ListItemIcon, ListSubheader, MenuItem, Select, Typography } from "@mui/material";
3
- import { getBreakPointsValue, getElementStyle } from "../../../helper/theme";
3
+ import { getBreakPointsValue } from "../../../helper/theme";
4
4
  import useWindowResize from "../../../hooks/useWindowResize";
5
5
  import { useEditorContext } from "../../../hooks/useMouseMove";
6
6
  import FontFamilyAutocomplete from "../../../Toolbar/FormatTools/FontFamilyAutocomplete";
7
7
  import { useSlate } from "slate-react";
8
8
  import KeyboardArrowDownRoundedIcon from "@mui/icons-material/KeyboardArrowDownRounded";
9
9
 
10
- // hideMetaDataOptions -- pass true to hide metadata option in select field
10
+ // hideMetaDataOptions -- pass true to hide metadata option in select field
11
11
  import { jsx as _jsx } from "react/jsx-runtime";
12
12
  import { jsxs as _jsxs } from "react/jsx-runtime";
13
13
  import { Fragment as _Fragment } from "react/jsx-runtime";
@@ -30,22 +30,14 @@ const TextOptions = props => {
30
30
  renderOption,
31
31
  width,
32
32
  webFont = false,
33
- hideMetaDataOptions = false,
34
- themeEnabled
33
+ hideMetaDataOptions = false
35
34
  } = data;
36
35
  const {
37
36
  fontFamilies
38
37
  } = useEditorContext();
39
- const [size] = useWindowResize();
40
38
  const editor = useSlate();
41
- const value = useMemo(() => {
42
- const userValue = isBreakpoint ? getBreakPointsValue(val, size?.device) : val;
43
- if (themeEnabled) {
44
- // editor takes a little amount of time to update the new style in element, in that case userValue will be returned
45
- return getElementStyle(editor, elementProps, key) || userValue;
46
- }
47
- return userValue;
48
- }, [editor, isBreakpoint, val, size?.device]);
39
+ const [size] = useWindowResize();
40
+ const value = isBreakpoint ? getBreakPointsValue(val, size?.device) : val;
49
41
  const metaDataMappingOptions = metaMappings?.boards || [];
50
42
  const updatedOption = !hideMetaDataOptions && elementProps?.metadatamapping ? [...options, ...metaDataMappingOptions] : webFont ? fontFamilies?.options : options;
51
43
  const handleChange = (e, d) => {
@@ -124,7 +116,7 @@ const TextOptions = props => {
124
116
  editor: editor,
125
117
  format: key,
126
118
  options: fontFamilies.options,
127
- width: "100%",
119
+ width: '100%',
128
120
  onChange: onChange,
129
121
  val: value,
130
122
  webFont: true
@@ -4,7 +4,6 @@ import { convertBase64 } from "../utils/helper";
4
4
  import { uploadFile } from "../service/fileupload";
5
5
  import Icon from "./Icon";
6
6
  import UploadStyles from "../common/ImageSelector/UploadStyles";
7
- import { useEditorContext } from "../hooks/useMouseMove";
8
7
  import { jsx as _jsx } from "react/jsx-runtime";
9
8
  import { Fragment as _Fragment } from "react/jsx-runtime";
10
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -19,9 +18,6 @@ const Uploader = props => {
19
18
  const [base64, setBase64] = useState(value?.url);
20
19
  const [fileName, setFileName] = useState("");
21
20
  const [uploading, setUploading] = useState(false);
22
- const {
23
- theme
24
- } = useEditorContext();
25
21
  const handleChange = async e => {
26
22
  const uFile = e.target.files[0];
27
23
  const strImage = await convertBase64(uFile);
@@ -103,10 +99,6 @@ const Uploader = props => {
103
99
  className: "uploadImageSection",
104
100
  children: base64 ? renderThumb() : /*#__PURE__*/_jsx(Grid, {
105
101
  className: "uploadImageText",
106
- sx: {
107
- background: `${theme?.palette?.editor?.inputFieldBgColor}`,
108
- border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`
109
- },
110
102
  children: /*#__PURE__*/_jsxs(Button, {
111
103
  component: "label",
112
104
  variant: "text",
@@ -51,30 +51,40 @@ const useCommonStyle = theme => ({
51
51
  },
52
52
  "& .MuiPaper-root": {
53
53
  border: `unset !important`,
54
- borderRadius: "0px",
55
- height: "fit-content",
56
- padding: "2px"
54
+ borderRadius: '0px',
55
+ height: 'fit-content'
57
56
  },
58
57
  "& p": {
59
58
  marginBottom: "7px",
60
59
  marginTop: "4px"
61
60
  },
62
- "& p": {
63
- marginBottom: "7px",
64
- marginTop: "4px"
61
+ "& .MuiPaper-root": {
62
+ border: 'unset !important',
63
+ borderRadius: '0px',
64
+ height: 'fit-content',
65
+ padding: '2px'
65
66
  },
66
67
  "& .muiIconsListParent": {
67
68
  "& svg": {
68
69
  color: `${theme?.palette?.editor?.svgTextAlignStrokeColor} !important`
69
70
  },
71
+ "&::-webkit-scrollbar-thumb": {
72
+ background: `none !important`
73
+ },
74
+ "&::-webkit-scrollbar-track": {
75
+ visibility: "hidden"
76
+ },
70
77
  "&::-webkit-scrollbar-thumb": {
71
78
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
79
+ },
80
+ "&::-webkit-scrollbar-track": {
81
+ visibility: "hidden"
72
82
  }
73
83
  },
74
84
  "& .MuiGrid-root>.MuiGrid-item": {
75
85
  paddingRight: "0px !important",
76
86
  fontFamily: "Inter, sans-serif",
77
- height: "fit-content"
87
+ height: 'fit-content'
78
88
  },
79
89
  "& .MuiInputBase-root": {
80
90
  borderRadius: "10px",
@@ -135,11 +145,11 @@ const useCommonStyle = theme => ({
135
145
  borderRadius: "10px",
136
146
  width: "46px !important",
137
147
  marginLeft: "10px",
138
- height: "36px !important"
148
+ height: '36px !important'
139
149
  }
140
150
  },
141
- "& .MuiFormHelperText-root": {
142
- margin: "4px 0px 0px 0px",
151
+ '& .MuiFormHelperText-root': {
152
+ margin: '4px 0px 0px 0px',
143
153
  color: theme?.palette?.editor?.closeButtonSvgStroke,
144
154
  fontFamily: "Inter, sans-serif"
145
155
  }
@@ -395,14 +405,14 @@ const useCommonStyle = theme => ({
395
405
  padding: "8px 12px",
396
406
  fontSize: "12px",
397
407
  color: theme?.palette?.editor?.menuOptionTextColor,
398
- fontWeight: "500",
408
+ fontWeight: '500',
399
409
  fontFamily: "Inter, sans-serif",
400
- minHeight: "36px",
410
+ minHeight: '36px',
401
411
  "&:hover": {
402
412
  backgroundColor: theme?.palette?.editor?.menuOptionHoverBackground
403
413
  }
404
414
  },
405
- "& .Mui-selected": {
415
+ '& .Mui-selected': {
406
416
  background: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
407
417
  },
408
418
  "& .MuiListSubheader-root": {
@@ -411,16 +421,16 @@ const useCommonStyle = theme => ({
411
421
  fontSize: "12px"
412
422
  },
413
423
  "& .MuiPaper-root": {
414
- borderRadius: "8px",
415
- padding: "0px",
424
+ borderRadius: '8px',
425
+ padding: '0px',
416
426
  background: `${theme?.palette?.editor?.textWeightPopUpBackground} !important`
417
427
  },
418
- "& .MuiButtonBase-root": {
419
- margin: "4px",
420
- borderRadius: "6px"
428
+ '& .MuiButtonBase-root': {
429
+ margin: '4px',
430
+ borderRadius: '6px'
421
431
  },
422
- "& .MuiList-root": {
423
- padding: "0px"
432
+ '& .MuiList-root': {
433
+ padding: '0px'
424
434
  }
425
435
  },
426
436
  datePicker: {
@@ -465,27 +475,27 @@ const useCommonStyle = theme => ({
465
475
  }
466
476
  }
467
477
  },
478
+ pageSettingPopUpRoot: {
479
+ padding: "16px 8px 16px 10px!important",
480
+ height: "100%"
481
+ },
468
482
  buttonMoreOption: {
469
483
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
470
484
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
471
- padding: "4px !important",
472
- "& svg": {
473
- width: "18px !important",
474
- height: "18px !important",
475
- "& path": {
485
+ padding: '4px !important',
486
+ '& svg': {
487
+ width: '18px !important',
488
+ height: '18px !important',
489
+ '& path': {
476
490
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
477
491
  }
478
492
  }
479
493
  },
480
- pageSettingPopUpRoot: {
481
- padding: "16px 8px 16px 10px!important",
482
- height: "100%"
483
- },
484
494
  buttonMoreOption2: {
485
495
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
486
496
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
487
- "& svg": {
488
- "& path": {
497
+ '& svg': {
498
+ '& path': {
489
499
  fill: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
490
500
  }
491
501
  }
@@ -493,11 +503,11 @@ const useCommonStyle = theme => ({
493
503
  buttonMoreOption3: {
494
504
  background: `${theme?.palette?.editor?.aiInputBackground} !important`,
495
505
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
496
- padding: "5px !important",
497
- "& svg": {
498
- width: "16px !important",
499
- height: "16px !important",
500
- "& path": {
506
+ padding: '5px !important',
507
+ '& svg': {
508
+ width: '16px !important',
509
+ height: '16px !important',
510
+ '& path': {
501
511
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
502
512
  }
503
513
  }
@@ -505,37 +515,37 @@ const useCommonStyle = theme => ({
505
515
  resizeButton: {
506
516
  background: theme?.palette?.editor?.aiInputBackground,
507
517
  border: `1px solid ${theme?.palette?.editor?.buttonBorder1}`,
508
- padding: "5px !important",
509
- borderRadius: "50% !important",
510
- "& svg": {
511
- width: "18px",
512
- height: "18px",
513
- "& path": {
518
+ padding: '5px !important',
519
+ borderRadius: '50% !important',
520
+ '& svg': {
521
+ width: '18px',
522
+ height: '18px',
523
+ '& path': {
514
524
  fill: `${theme?.palette?.editor?.closeButtonSvgStroke}`
515
525
  }
516
526
  },
517
- "&:hover": {
527
+ '&:hover': {
518
528
  background: theme?.palette?.editor?.aiInputBackground
519
529
  }
520
530
  },
521
531
  gradientFillBtn: {
522
532
  background: `linear-gradient(112.61deg, #2C63ED 19.3%, #8360FD 88.14%) !important`,
523
- textTransform: "math-auto !important",
524
- color: "#FFFFFF !important",
525
- padding: "0px 12px !important",
526
- height: "32px",
527
- borderRadius: "8px",
528
- fontWeight: "500",
529
- fontSize: "14px"
533
+ textTransform: 'math-auto !important',
534
+ color: '#FFFFFF !important',
535
+ padding: '0px 12px !important',
536
+ height: '32px',
537
+ borderRadius: '8px',
538
+ fontWeight: '500',
539
+ fontSize: '14px'
530
540
  },
531
541
  emptyThumbBtn: {
532
542
  background: `${theme?.palette?.editor?.sectionSettingIconHover} !important`,
533
543
  color: `${theme?.palette?.editor?.textColor} !important`,
534
- fontSize: "14px !important",
535
- "& svg": {
536
- width: "20px !important",
537
- height: "20px !important",
538
- "& path": {
544
+ fontSize: '14px !important',
545
+ '& svg': {
546
+ width: '20px !important',
547
+ height: '20px !important',
548
+ '& path': {
539
549
  stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
540
550
  }
541
551
  }
@@ -175,7 +175,7 @@ const deserialize = el => {
175
175
  if (el.nodeType === 3) {
176
176
  // if there is any line-breaks
177
177
  const match = /\r|\n/.exec(el.textContent);
178
- const text = el.textContent?.trim()?.length === 0 ? el.textContent.replace(/\r|\n/g, "").trim() : el.textContent;
178
+ const text = el.textContent.replace(/\r|\n/g, "").trim();
179
179
  return match && !text ? null : {
180
180
  text,
181
181
  ...getInlineTextStyles(el.parentNode)
@@ -337,14 +337,14 @@ export const isCarouselSelected = editor => {
337
337
  return false;
338
338
  }
339
339
  const [nodeEntry] = Editor.nodes(editor, {
340
- match: n => !Editor.isEditor(n) && Element.isElement(n) && n.type === "carousel"
340
+ match: n => !Editor.isEditor(n) && Element.isElement(n) && n.type === 'carousel'
341
341
  });
342
342
  if (!nodeEntry) {
343
343
  return false;
344
344
  }
345
345
  const [node] = nodeEntry;
346
346
  const carouselDom = ReactEditor.toDOMNode(editor, node);
347
- const isEdit = carouselDom.classList.contains("carousel_slider_edit");
347
+ const isEdit = carouselDom.classList.contains('carousel_slider_edit');
348
348
  return !isEdit;
349
349
  } catch (err) {
350
350
  console.log(err);