@flozy/editor 9.9.8 → 10.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 (143) hide show
  1. package/dist/Editor/ChatEditor.js +17 -16
  2. package/dist/Editor/CommonEditor.js +118 -20
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +16 -8
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
  6. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  7. package/dist/Editor/Elements/Button/EditorButton.js +25 -9
  8. package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
  9. package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
  10. package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
  11. package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
  12. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +454 -0
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
  15. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
  16. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
  17. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
  18. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
  19. package/dist/Editor/Elements/Embed/Video.js +1 -1
  20. package/dist/Editor/Elements/EmbedScript/Code.js +14 -2
  21. package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +57 -28
  22. package/dist/Editor/Elements/EmbedScript/styles.js +89 -0
  23. package/dist/Editor/Elements/Form/Form.js +179 -168
  24. package/dist/Editor/Elements/Form/FormField.js +10 -4
  25. package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
  26. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +5 -15
  27. package/dist/Editor/Elements/FreeGrid/Options/More.js +8 -8
  28. package/dist/Editor/Elements/FreeGrid/styles.js +64 -7
  29. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  30. package/dist/Editor/Elements/List/CheckList.js +4 -1
  31. package/dist/Editor/Elements/Search/SearchAttachment.js +40 -9
  32. package/dist/Editor/Elements/Search/SearchButton.js +9 -8
  33. package/dist/Editor/Elements/Search/SearchList.js +9 -7
  34. package/dist/Editor/Elements/SimpleText/index.js +6 -1
  35. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  36. package/dist/Editor/Elements/Table/Table.js +3 -3
  37. package/dist/Editor/Elements/Title/title.js +6 -6
  38. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  39. package/dist/Editor/MiniEditor.js +2 -1
  40. package/dist/Editor/Styles/EditorStyles.js +5 -5
  41. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  42. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  43. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  44. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  45. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +2 -1
  46. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
  47. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  48. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
  49. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
  50. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
  51. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
  52. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +100 -27
  53. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
  54. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  55. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  56. package/dist/Editor/assets/svg/BackIcon.js +18 -0
  57. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  58. package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
  59. package/dist/Editor/assets/svg/SettingsIcon.js +1 -0
  60. package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
  61. package/dist/Editor/common/ColorPickerButton.js +38 -16
  62. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  63. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  64. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  65. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  66. package/dist/Editor/common/CustomSelect.js +43 -0
  67. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  68. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  69. package/dist/Editor/common/Icon.js +31 -1
  70. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  71. package/dist/Editor/common/LinkSettings/NavComponents.js +34 -8
  72. package/dist/Editor/common/LinkSettings/index.js +84 -68
  73. package/dist/Editor/common/LinkSettings/style.js +245 -30
  74. package/dist/Editor/common/RnD/ElementOptions/Actions.js +13 -14
  75. package/dist/Editor/common/RnD/ElementOptions/Icons/LinkIcon.js +1 -0
  76. package/dist/Editor/common/RnD/ElementOptions/index.js +2 -2
  77. package/dist/Editor/common/RnD/ElementOptions/styles.js +28 -1
  78. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +6 -5
  79. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  80. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  81. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  82. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  83. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
  84. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  85. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  86. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
  87. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  88. package/dist/Editor/common/RnD/ElementSettings/styles.js +147 -12
  89. package/dist/Editor/common/RnD/OptionsPopup/index.js +8 -5
  90. package/dist/Editor/common/RnD/OptionsPopup/style.js +121 -19
  91. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -5
  92. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  93. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
  94. package/dist/Editor/common/RnD/Utils/gridDropItem.js +1 -2
  95. package/dist/Editor/common/Select/index.js +2 -0
  96. package/dist/Editor/common/Shorthands/elements.js +54 -0
  97. package/dist/Editor/common/SnackBar/index.js +43 -0
  98. package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
  100. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
  101. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
  102. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
  103. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
  104. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
  105. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
  106. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +13 -6
  107. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
  108. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  109. package/dist/Editor/common/Uploader.js +8 -0
  110. package/dist/Editor/common/iconListV2.js +101 -6
  111. package/dist/Editor/common/iconslist.js +24 -0
  112. package/dist/Editor/commonStyle.js +174 -61
  113. package/dist/Editor/helper/textIndeces.js +58 -0
  114. package/dist/Editor/helper/theme.js +203 -2
  115. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  116. package/dist/Editor/hooks/useMouseMove.js +8 -5
  117. package/dist/Editor/hooks/useThemeValues.js +63 -0
  118. package/dist/Editor/plugins/withEmbeds.js +1 -1
  119. package/dist/Editor/plugins/withHTML.js +3 -1
  120. package/dist/Editor/plugins/withTable.js +1 -1
  121. package/dist/Editor/theme/ThemeList.js +50 -173
  122. package/dist/Editor/theme/index.js +149 -0
  123. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  124. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  125. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  126. package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
  127. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  128. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  129. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  130. package/dist/Editor/themeSettings/fonts/style.js +62 -0
  131. package/dist/Editor/themeSettings/icons.js +60 -0
  132. package/dist/Editor/themeSettings/index.js +361 -0
  133. package/dist/Editor/themeSettings/style.js +292 -0
  134. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  135. package/dist/Editor/themeSettingsAI/index.js +355 -0
  136. package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
  137. package/dist/Editor/themeSettingsAI/style.js +324 -0
  138. package/dist/Editor/utils/SlateUtilityFunctions.js +166 -43
  139. package/dist/Editor/utils/button.js +1 -17
  140. package/dist/Editor/utils/draftToSlate.js +3 -2
  141. package/dist/Editor/utils/font.js +40 -37
  142. package/dist/Editor/utils/helper.js +90 -19
  143. package/package.json +4 -4
@@ -8,7 +8,8 @@ const VideoSettings = props => {
8
8
  const {
9
9
  editor,
10
10
  path,
11
- customProps
11
+ customProps,
12
+ onClose
12
13
  } = props;
13
14
  const item_path = path?.split("|").map(m => parseInt(m));
14
15
  const element_path = [...item_path, 0];
@@ -28,7 +29,7 @@ const VideoSettings = props => {
28
29
  });
29
30
  };
30
31
  const handleClose = () => {
31
- console.log("close");
32
+ onClose();
32
33
  };
33
34
  return /*#__PURE__*/_jsx(Box, {
34
35
  component: "div",
@@ -1,8 +1,9 @@
1
1
  const useElementSettingsStyle = theme => ({
2
2
  root: {
3
3
  zIndex: 1200,
4
- background: theme?.palette?.editor?.background,
5
- borderRadius: "10px",
4
+ background: theme?.palette?.editor?.miniToolBarBackground,
5
+ border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder}`,
6
+ borderRadius: "20px",
6
7
  overflow: "hidden",
7
8
  boxShadow: "0px 0px 12px 4px #00000014",
8
9
  padding: "10px 16px",
@@ -58,28 +59,34 @@ const useElementSettingsStyle = theme => ({
58
59
  maxHeight: "500px",
59
60
  overflowX: "hidden",
60
61
  overflowY: "auto",
61
- background: theme?.palette?.editor?.background,
62
- paddingLeft: "4px",
62
+ background: theme?.palette?.editor?.miniToolBarBackground,
63
+ paddingLeft: "2px",
64
+ paddingRight: "6px",
65
+ overflow: "hidden",
66
+ "&:hover": {
67
+ overflowY: "auto",
68
+ "&::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb": {
69
+ background: `${theme?.palette?.editor?.brainPopupScroll} !important`
70
+ },
71
+ "&::-webkit-scrollbar-track, ::-webkit-scrollbar-track": {
72
+ visibility: "hidden"
73
+ }
74
+ },
63
75
  "& .MuiTypography-root, .MuiInputBase-root, input": {
64
76
  color: theme?.palette?.editor?.textColor
65
77
  },
66
- "& .MuiInputBase-root, input": {
67
- border: `1px solid ${theme?.palette?.editor?.borderColor}`
68
- },
69
78
  "& .borderInput": {
70
79
  background: theme?.palette?.editor?.background,
71
80
  color: theme?.palette?.editor?.textColor
72
81
  },
73
- "& .MuiCheckbox-root": {
74
- "& svg": {
75
- fill: theme?.palette?.editor?.textColor
76
- }
77
- },
78
82
  "& .fillPath": {
79
83
  fill: theme?.palette?.editor?.textColor
80
84
  },
81
85
  "& .MuiIconButton-root": {
82
86
  color: theme?.palette?.editor?.textColor
87
+ },
88
+ "& .MuiFormHelperText-root": {
89
+ color: theme?.palette?.editor?.textColor
83
90
  }
84
91
  },
85
92
  "& .item-wrapper": {
@@ -104,6 +111,134 @@ const useElementSettingsStyle = theme => ({
104
111
  }
105
112
  }
106
113
  }
114
+ },
115
+ "& .settingsPopUp": {
116
+ background: theme?.palette?.editor?.miniToolBarBackground,
117
+ "& .text-formatter-popup": {
118
+ paddingRight: "10px",
119
+ overflow: "hidden",
120
+ "&:hover": {
121
+ overflow: "auto",
122
+ "&::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb": {
123
+ background: `${theme?.palette?.editor?.brainPopupScroll} !important`
124
+ },
125
+ "&::-webkit-scrollbar-track, ::-webkit-scrollbar-track": {
126
+ visibility: "hidden"
127
+ }
128
+ },
129
+ "& .more-btn-cbs": {
130
+ color: `${theme?.palette?.editor?.closeButtonSvgStroke}`,
131
+ border: `1px solid ${theme?.palette?.editor?.closeButtonSvgStroke}`,
132
+ paddingTop: "10px",
133
+ "& svg": {
134
+ width: "20px",
135
+ height: "24px"
136
+ }
137
+ },
138
+ "& .MuiInputBase-root": {
139
+ height: "36px"
140
+ }
141
+ },
142
+ "& .popUpHeader": {
143
+ fontSize: "16px",
144
+ fontFamily: "'Inter',sans-serif",
145
+ fontWeight: "700",
146
+ fontSize: "16px",
147
+ lineHeight: "25px",
148
+ "& button": {
149
+ background: theme?.palette?.editor?.closeButtonBackground,
150
+ borderRadius: "8px",
151
+ "& svg": {
152
+ fill: theme?.palette?.editor?.closeButtonSvgStroke
153
+ }
154
+ }
155
+ },
156
+ "& .MuiTypography-root": {
157
+ color: `${theme?.palette?.editor?.textColor} !important`
158
+ },
159
+ "& .MuiInputBase-root": {
160
+ background: theme?.palette?.editor?.inputFieldBgColor,
161
+ borderRadius: "8px",
162
+ fontSize: "12px",
163
+ height: "36px",
164
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
165
+ "& fieldset": {
166
+ border: `1px solid transparent !important`,
167
+ background: "transparent",
168
+ borderRadius: "8px"
169
+ // fontSize: "12px",
170
+ },
171
+
172
+ "& input": {
173
+ // border: `1px solid transparent`,
174
+ // background: theme?.palette?.editor?.inputFieldBgColor,
175
+ borderRadius: "8px"
176
+ // fontSize: "12px",
177
+ }
178
+ },
179
+
180
+ "& .editor-dd": {
181
+ "& .MuiOutlinedInput-notchedOutline": {
182
+ border: `1px solid transparent !important`
183
+ }
184
+ },
185
+ "& .MuiAutocomplete-root": {
186
+ "& fieldset": {
187
+ border: `1px solid transparent !important`
188
+ }
189
+ },
190
+ "& .sliderInput": {
191
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
192
+ background: theme?.palette?.editor?.inputFieldBgColor,
193
+ borderRadius: "10px",
194
+ paddingLeft: "10px",
195
+ width: "50px !important"
196
+ },
197
+ "& .selctedBtnIcon": {
198
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
199
+ background: theme?.palette?.editor?.inputFieldBgColor,
200
+ borderRadius: "10px",
201
+ height: "36px",
202
+ "& svg": {
203
+ color: `${theme?.palette?.editor?.svgTextAlignStrokeColor} !important`
204
+ }
205
+ },
206
+ "& .muiIconsListParent": {
207
+ "& svg": {
208
+ color: `${theme?.palette?.editor?.svgTextAlignStrokeColor} !important`
209
+ },
210
+ "&::-webkit-scrollbar-thumb": {
211
+ background: `${theme?.palette?.editor?.brainPopupScroll} !important`
212
+ },
213
+ "&::-webkit-scrollbar-track": {
214
+ visibility: "hidden"
215
+ }
216
+ },
217
+ "& .menu-item-app-header": {
218
+ paddingBottom: "5px",
219
+ "& .text-field1": {
220
+ marginRight: "5px"
221
+ },
222
+ "& .settingsIcon, .deleteIcon": {
223
+ width: "20px",
224
+ height: "20px",
225
+ "& path": {
226
+ stroke: theme?.palette?.editor?.closeButtonSvgStroke
227
+ }
228
+ }
229
+ },
230
+ "& .MuiPaper-root": {
231
+ background: theme?.palette?.editor?.miniToolBarBackground
232
+ },
233
+ "& .iconRadioButton": {
234
+ "& svg": {
235
+ height: "24px",
236
+ width: "24px"
237
+ },
238
+ "& .MuiRadio-root": {
239
+ paddingLeft: "0px"
240
+ }
241
+ }
107
242
  }
108
243
  },
109
244
  dialog: {
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
- import { Box, Paper, Popper, Typography, Tooltip, IconButton } from "@mui/material";
3
- import CloseIcon from "@mui/icons-material/Close";
2
+ import { Box, Paper, Popper, Typography, Tooltip, IconButton, Grid } from "@mui/material";
3
+ import CloseRoundedIcon from "@mui/icons-material/CloseRounded";
4
4
  import useOptionsPopupStyle from "./style";
5
5
  import { jsx as _jsx } from "react/jsx-runtime";
6
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -30,7 +30,7 @@ const OptionsPopup = props => {
30
30
  className: "papper-root",
31
31
  children: [/*#__PURE__*/_jsxs(Typography, {
32
32
  variant: "div",
33
- className: "item-wrapper title",
33
+ className: "item-wrapper title sectionOptionTitle",
34
34
  children: [translation(title), /*#__PURE__*/_jsx(Box, {
35
35
  component: "div",
36
36
  children: /*#__PURE__*/_jsx(Tooltip, {
@@ -38,11 +38,14 @@ const OptionsPopup = props => {
38
38
  arrow: true,
39
39
  children: /*#__PURE__*/_jsx(IconButton, {
40
40
  onClick: handleClose,
41
- children: /*#__PURE__*/_jsx(CloseIcon, {})
41
+ children: /*#__PURE__*/_jsx(CloseRoundedIcon, {})
42
42
  })
43
43
  })
44
44
  })]
45
- }), children]
45
+ }), /*#__PURE__*/_jsx(Grid, {
46
+ className: "sectionOptionChild",
47
+ children: children
48
+ })]
46
49
  })
47
50
  }) : null;
48
51
  };
@@ -3,31 +3,139 @@ const useOptionsPopupStyle = ({
3
3
  }) => ({
4
4
  root: {
5
5
  zIndex: 1200,
6
- background: theme?.palette?.editor?.background,
7
- borderRadius: "7px",
6
+ background: theme?.palette?.editor?.miniToolBarBackground,
7
+ border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder}`,
8
+ borderRadius: "20px",
8
9
  overflow: "hidden",
9
- boxShadow: "1px 1px 3px rgba(0,0,0,0.3)",
10
+ boxShadow: "0px 0px 12px 4px #00000014",
10
11
  marginRight: "4px !important",
12
+ padding: "0px 5px",
13
+ fontFamily: "'Inter',sans-serif",
14
+ "& .MuiPaper-root": {
15
+ background: theme?.palette?.editor?.miniToolBarBackground
16
+ },
17
+ "& .sectionOptionTitle": {
18
+ fontSize: "16px",
19
+ fontFamily: "'Inter',sans-serif",
20
+ fontWeight: "700",
21
+ fontSize: "16px",
22
+ lineHeight: "25px",
23
+ background: theme?.palette?.editor?.miniToolBarBackground,
24
+ "& button": {
25
+ background: theme?.palette?.editor?.closeButtonBackground,
26
+ borderRadius: "8px",
27
+ "& svg": {
28
+ fill: theme?.palette?.editor?.closeButtonSvgStroke
29
+ }
30
+ }
31
+ },
32
+ "& .sectionOptionChild": {
33
+ background: theme?.palette?.editor?.miniToolBarBackground,
34
+ "& .MuiBox-root": {
35
+ maxHeight: "unset"
36
+ },
37
+ "& .MuiInputBase-root, fieldset": {
38
+ background: theme?.palette?.editor?.inputFieldBgColor,
39
+ borderRadius: "8px",
40
+ "& fieldset": {
41
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
42
+ background: "transparent",
43
+ borderRadius: "8px"
44
+ },
45
+ "& input": {
46
+ border: `1px solid transparent`,
47
+ background: theme?.palette?.editor?.inputFieldBgColor,
48
+ borderRadius: "8px",
49
+ fontSize: "12px",
50
+ color: theme?.palette?.editor?.textColor
51
+ }
52
+ },
53
+ "& p": {
54
+ color: theme?.palette?.editor?.textColor
55
+ },
56
+ "& .sliderInput": {
57
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
58
+ background: theme?.palette?.editor?.inputFieldBgColor,
59
+ borderRadius: "10px"
60
+ },
61
+ "& .style-settings-wrpr": {
62
+ overflow: "hidden",
63
+ "&:hover": {
64
+ overflowY: "auto",
65
+ "&::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb": {
66
+ background: `${theme?.palette?.editor?.brainPopupScroll} !important`
67
+ },
68
+ "&::-webkit-scrollbar-track, ::-webkit-scrollbar-track": {
69
+ visibility: "hidden"
70
+ }
71
+ }
72
+ },
73
+ "& svg": {
74
+ width: "17.5px",
75
+ height: "17.5px"
76
+ }
77
+ },
78
+ "& .MuiList-root": {
79
+ "& .MuiButtonBase-root": {
80
+ padding: "8px 12px",
81
+ "& .MuiTypography-root": {
82
+ color: `${theme?.palette?.editor?.textColor} !important`,
83
+ fontSize: "14px",
84
+ fontWeight: "500",
85
+ fontFamily: "'Inter',sans-serif"
86
+ },
87
+ "&:hover": {
88
+ background: `${theme?.palette?.editor?.menuOptionHoverBackground} !important`,
89
+ "& .MuiTypography-root": {
90
+ color: `${theme?.palette?.editor?.textColor} !important`
91
+ },
92
+ "& .MuiListItemIcon-root": {
93
+ "& .signatureElementIcon, & .newLineElementIcon": {
94
+ "& path": {
95
+ fill: `${theme?.palette?.editor?.textColor}`
96
+ }
97
+ },
98
+ "& .commonSvgStyle, & .commonSvgStyle2": {
99
+ "& path": {
100
+ stroke: `${theme?.palette?.editor?.textColor}`
101
+ }
102
+ },
103
+ "& .colorBoxElementIcon": {
104
+ "& path": {
105
+ stroke: `${theme?.palette?.editor?.textColor}`,
106
+ fill: "none"
107
+ }
108
+ },
109
+ "& .gridElementIcon": {
110
+ "& path": {
111
+ stroke: `${theme?.palette?.editor?.textColor}`,
112
+ fill: `${theme?.palette?.editor?.textColor}`
113
+ }
114
+ }
115
+ }
116
+ }
117
+ }
118
+ },
119
+ "& .sectionMoreOption": {
120
+ "& .MuiButtonBase-root": {
121
+ padding: "12px 12px",
122
+ color: `${theme?.palette?.editor?.textColor} !important`,
123
+ fontSize: "14px",
124
+ fontWeight: "500",
125
+ fontFamily: "'Inter',sans-serif"
126
+ }
127
+ },
11
128
  "& .papper-root": {
12
129
  width: "344px",
13
130
  boxShadow: "none",
14
- border: `1px solid ${theme?.palette?.editor?.borderColor}`,
15
131
  borderRadius: "7px",
16
132
  background: theme?.palette?.editor?.background,
17
133
  "& .MuiTypography-root, .MuiInputBase-root, input": {
18
134
  color: theme?.palette?.editor?.textColor
19
135
  },
20
- "& .MuiInputBase-root, input": {
21
- border: `1px solid ${theme?.palette?.editor?.borderColor}`
22
- },
23
136
  "& .borderInput": {
24
137
  background: theme?.palette?.editor?.background,
25
138
  color: theme?.palette?.editor?.textColor
26
- },
27
- "& .MuiCheckbox-root": {
28
- "& svg": {
29
- fill: theme?.palette?.editor?.textColor
30
- }
31
139
  }
32
140
  },
33
141
  "& .item-list-wrpr": {
@@ -37,13 +145,7 @@ const useOptionsPopupStyle = ({
37
145
  "& .MuiListItemButton-root": {
38
146
  borderRadius: "7px",
39
147
  color: theme?.palette?.editor?.textColor,
40
- "&:hover": {
41
- color: theme?.palette?.editor?.activeColor,
42
- background: "rgba(233, 243, 254, 1)",
43
- "& .MuiTypography-root": {
44
- color: theme?.palette?.editor?.activeColor
45
- }
46
- }
148
+ alignItems: "center"
47
149
  }
48
150
  },
49
151
  "& .item-wrapper": {
@@ -10,23 +10,27 @@ const SwitchViewport = props => {
10
10
  const {
11
11
  breakpoint,
12
12
  onChange,
13
- translation
13
+ translation,
14
+ show
14
15
  } = props;
15
16
  const classes = useSwitchViewport();
16
17
  const {
17
- setActiveBreakPoint
18
+ setSelectedElement
18
19
  } = useEditorContext();
19
20
  useEffect(() => {
20
- console.log(breakpoint);
21
+ // to reset selection on viewport changes - FS-6589
22
+ setSelectedElement({});
21
23
  }, [breakpoint]);
22
24
  return /*#__PURE__*/_jsxs(Box, {
23
25
  sx: classes.root,
26
+ style: {
27
+ display: show ? "block" : "none"
28
+ },
24
29
  children: [/*#__PURE__*/_jsx(Tooltip, {
25
30
  title: translation("Desktop View"),
26
31
  children: /*#__PURE__*/_jsx(IconButton, {
27
32
  className: `${!breakpoint || breakpoint === "lg" ? "active" : ""}`,
28
33
  onClick: () => {
29
- setActiveBreakPoint("");
30
34
  onChange("");
31
35
  },
32
36
  children: /*#__PURE__*/_jsx(PersonalVideoIcon, {})
@@ -36,7 +40,6 @@ const SwitchViewport = props => {
36
40
  children: /*#__PURE__*/_jsx(IconButton, {
37
41
  className: `${breakpoint === "xs" ? "active" : ""}`,
38
42
  onClick: () => {
39
- setActiveBreakPoint("xs");
40
43
  onChange("xs");
41
44
  },
42
45
  children: /*#__PURE__*/_jsx(PhoneIphoneIcon, {})
@@ -0,0 +1,17 @@
1
+ import { Experimental_CssVarsProvider as CssVarsProvider, experimental_extendTheme as extendTheme } from "@mui/material/styles";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function MainThemeProvider({
4
+ children,
5
+ userSelectedTheme,
6
+ theme = {}
7
+ }) {
8
+ const themeVars = extendTheme(userSelectedTheme?.theme?.cssVars || {});
9
+ return /*#__PURE__*/_jsx(CssVarsProvider, {
10
+ theme: {
11
+ ...themeVars,
12
+ ...theme
13
+ },
14
+ children: children
15
+ });
16
+ }
17
+ export default MainThemeProvider;
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
- import { useTheme, ThemeProvider, createTheme, useMediaQuery } from "@mui/material";
2
+ import { useTheme, createTheme, useMediaQuery } from "@mui/material";
3
3
  import { isStimulator, STIMULATOR_MOCK } from "../../../hooks/useBreakpoints";
4
+ import MainThemeProvider from "./MainThemeProvider";
4
5
 
5
6
  // Custom breakpoints functions
6
7
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -59,13 +60,15 @@ const extendedTheme = (prevTheme, isPrintMode) => createTheme({
59
60
  } : getBreakPoints(prevTheme)
60
61
  });
61
62
  const ViewportStimulator = ({
62
- children
63
+ children,
64
+ selectedTheme
63
65
  }) => {
64
66
  const theme = useTheme();
65
67
  const isPrintMode = useMediaQuery("print");
66
68
  const viewportTheme = extendedTheme(theme, isPrintMode);
67
- return /*#__PURE__*/_jsx(ThemeProvider, {
69
+ return /*#__PURE__*/_jsx(MainThemeProvider, {
68
70
  theme: viewportTheme,
71
+ userSelectedTheme: selectedTheme,
69
72
  children: children
70
73
  });
71
74
  };
@@ -232,8 +232,7 @@ export function onDropItem(props, parentClass) {
232
232
  } else if (moveTo?.length === 2 && autoAlign) {
233
233
  // auto align in mobile
234
234
  Transforms.setNodes(editor, {
235
- xs_updatedOn: null,
236
- xs_updatedOn: new Date().getTime()
235
+ xs_updatedOn: null
237
236
  }, {
238
237
  at: moveTo
239
238
  });
@@ -1,6 +1,7 @@
1
1
  import { Select as Core } from "@mui/material";
2
2
  import SelectStyles from "./styles";
3
3
  import { useEditorContext } from "../../hooks/useMouseMove";
4
+ import KeyboardArrowDownRoundedIcon from '@mui/icons-material/KeyboardArrowDownRounded';
4
5
  import { jsx as _jsx } from "react/jsx-runtime";
5
6
  function Select(props) {
6
7
  const {
@@ -13,6 +14,7 @@ function Select(props) {
13
14
  const classes = SelectStyles(theme);
14
15
  return /*#__PURE__*/_jsx(Core, {
15
16
  MenuProps: classes.MenuProps,
17
+ IconComponent: KeyboardArrowDownRoundedIcon,
16
18
  ...rest,
17
19
  children: children
18
20
  });
@@ -44,6 +44,60 @@ const ELEMENTS_LIST = [{
44
44
  icon: "headingThree"
45
45
  }),
46
46
  onInsert: editor => toggleBlock(editor, "headingThree", false)
47
+ }, {
48
+ name: "Heading 4",
49
+ desc: "",
50
+ group: "Text",
51
+ type: "headingFour",
52
+ icon: /*#__PURE__*/_jsx(Icon, {
53
+ icon: "headingFour"
54
+ }),
55
+ onInsert: editor => toggleBlock(editor, "headingFour", false)
56
+ }, {
57
+ name: "Heading 5",
58
+ desc: "",
59
+ group: "Text",
60
+ type: "headingFive",
61
+ icon: /*#__PURE__*/_jsx(Icon, {
62
+ icon: "headingFive"
63
+ }),
64
+ onInsert: editor => toggleBlock(editor, "headingFive", false)
65
+ }, {
66
+ name: "Heading 6",
67
+ desc: "",
68
+ group: "Text",
69
+ type: "headingSix",
70
+ icon: /*#__PURE__*/_jsx(Icon, {
71
+ icon: "headingSix"
72
+ }),
73
+ onInsert: editor => toggleBlock(editor, "headingSix", false)
74
+ }, {
75
+ name: "Paragraph 1",
76
+ desc: "",
77
+ group: "Text",
78
+ type: "paragraphOne",
79
+ icon: /*#__PURE__*/_jsx(Icon, {
80
+ icon: "paragraphOne"
81
+ }),
82
+ onInsert: editor => toggleBlock(editor, "paragraphOne", false)
83
+ }, {
84
+ name: "Paragraph 2",
85
+ desc: "",
86
+ group: "Text",
87
+ type: "paragraphTwo",
88
+ icon: /*#__PURE__*/_jsx(Icon, {
89
+ icon: "paragraphTwo"
90
+ }),
91
+ onInsert: editor => toggleBlock(editor, "paragraphTwo", false)
92
+ }, {
93
+ name: "Paragraph 3",
94
+ desc: "",
95
+ group: "Text",
96
+ type: "paragraphThree",
97
+ icon: /*#__PURE__*/_jsx(Icon, {
98
+ icon: "paragraphThree"
99
+ }),
100
+ onInsert: editor => toggleBlock(editor, "paragraphThree", false)
47
101
  }, {
48
102
  name: "Quote",
49
103
  desc: "",
@@ -0,0 +1,43 @@
1
+ import Snackbar from "@mui/material/Snackbar";
2
+ import Alert from "@mui/material/Alert";
3
+ import { useState } from "react";
4
+ import { useEditorContext } from "../../hooks/useMouseMove";
5
+ import { jsx as _jsx } from "react/jsx-runtime";
6
+ const SnackbarAlert = ({
7
+ message,
8
+ setShowSnackBar,
9
+ severity = "info"
10
+ }) => {
11
+ const [open, setOpen] = useState(!!message);
12
+ const {
13
+ theme
14
+ } = useEditorContext();
15
+ return /*#__PURE__*/_jsx(Snackbar, {
16
+ open: open,
17
+ autoHideDuration: 3000,
18
+ onClose: () => {
19
+ setOpen(false);
20
+ setShowSnackBar(false);
21
+ },
22
+ anchorOrigin: {
23
+ vertical: "top",
24
+ horizontal: "right"
25
+ },
26
+ children: /*#__PURE__*/_jsx(Alert, {
27
+ severity: severity,
28
+ onClose: () => {
29
+ setOpen(false);
30
+ setShowSnackBar(false);
31
+ },
32
+ sx: {
33
+ background: theme?.palette?.primary?.gradientBtn,
34
+ color: "#FFFFFF",
35
+ "& .MuiAlert-icon": {
36
+ color: "#FFFFFF"
37
+ }
38
+ },
39
+ children: message
40
+ })
41
+ });
42
+ };
43
+ export default SnackbarAlert;
@@ -21,7 +21,8 @@ const buttonStyle = [{
21
21
  },
22
22
  children: option.text
23
23
  });
24
- }
24
+ },
25
+ themeEnabled: true
25
26
  }, {
26
27
  label: "Font Size",
27
28
  key: "textSize",
@@ -45,7 +46,8 @@ const buttonStyle = [{
45
46
  }, {
46
47
  label: "Button Color",
47
48
  key: "bgColor",
48
- type: "color"
49
+ type: "color",
50
+ themeEnabled: true
49
51
  }, {
50
52
  label: "Border Color",
51
53
  key: "borderColor",
@@ -76,6 +76,11 @@ const BackgroundImage = props => {
76
76
  children: translation("REMOVE")
77
77
  }) : /*#__PURE__*/_jsx(Grid, {
78
78
  className: "uploadImageText",
79
+ sx: {
80
+ padding: 0,
81
+ background: `${theme?.palette?.editor?.inputFieldBgColor}`,
82
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`
83
+ },
79
84
  children: /*#__PURE__*/_jsxs(Button, {
80
85
  component: "label",
81
86
  variant: "text",