@flozy/editor 9.1.4 → 9.1.6

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 (130) hide show
  1. package/dist/Editor/ChatEditor.js +2 -19
  2. package/dist/Editor/CommonEditor.js +37 -104
  3. package/dist/Editor/DialogWrapper.js +25 -31
  4. package/dist/Editor/Editor.css +3 -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 +5 -5
  10. package/dist/Editor/Elements/Color Picker/Styles.js +1 -1
  11. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +1 -4
  12. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/styles.js +1 -6
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/DateType.js +9 -19
  15. package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +2 -32
  16. package/dist/Editor/Elements/DataView/Layouts/TableView.js +29 -126
  17. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +3 -3
  18. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +1 -1
  19. package/dist/Editor/Elements/DataView/styles.js +8 -8
  20. package/dist/Editor/Elements/Embed/Image.js +2 -2
  21. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +14 -0
  22. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +1 -2
  23. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +1 -2
  24. package/dist/Editor/Elements/FreeGrid/styles.js +0 -3
  25. package/dist/Editor/Elements/Grid/GridItem.js +3 -2
  26. package/dist/Editor/Elements/Link/Link.js +43 -70
  27. package/dist/Editor/Elements/SimpleText/index.js +1 -0
  28. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  29. package/dist/Editor/Elements/Table/Table.js +27 -43
  30. package/dist/Editor/Elements/Table/TableCell.js +5 -5
  31. package/dist/Editor/Elements/Title/title.js +31 -13
  32. package/dist/Editor/Elements/Variables/Style.js +2 -28
  33. package/dist/Editor/Elements/Variables/VariableButton.js +4 -17
  34. package/dist/Editor/Styles/EditorStyles.js +5 -5
  35. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
  36. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
  37. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  38. package/dist/Editor/Toolbar/FormatTools/TextSize.js +15 -7
  39. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +0 -1
  40. package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +8 -9
  41. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
  42. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +85 -210
  43. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +1 -2
  44. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -16
  45. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +7 -54
  46. package/dist/Editor/Toolbar/PopupTool/index.js +17 -6
  47. package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
  48. package/dist/Editor/common/ColorPickerButton.js +9 -35
  49. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  50. package/dist/Editor/common/DnD/Draggable.js +1 -0
  51. package/dist/Editor/common/FontLoader/FontLoader.js +0 -3
  52. package/dist/Editor/common/Icon.js +0 -28
  53. package/dist/Editor/common/ImageSelector/Options/Upload.js +1 -1
  54. package/dist/Editor/common/ImageSelector/Styles.js +9 -3
  55. package/dist/Editor/common/ImageSelector/UploadStyles.js +10 -9
  56. package/dist/Editor/common/MentionsPopup/Styles.js +12 -6
  57. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +1 -2
  58. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
  59. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
  60. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
  61. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
  62. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -4
  63. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +2 -3
  64. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
  65. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +2 -3
  66. package/dist/Editor/common/RnD/ElementSettings/styles.js +1 -0
  67. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +2 -8
  68. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +10 -31
  69. package/dist/Editor/common/RnD/Utils/gridDropItem.js +4 -5
  70. package/dist/Editor/common/RnD/Utils/index.js +0 -45
  71. package/dist/Editor/common/RnD/VirtualElement/index.js +2 -1
  72. package/dist/Editor/common/RnD/index.js +3 -23
  73. package/dist/Editor/common/Shorthands/elements.js +0 -54
  74. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
  75. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
  76. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
  77. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
  78. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +2 -10
  79. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +11 -35
  80. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +4 -13
  81. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
  82. package/dist/Editor/common/Uploader.js +0 -8
  83. package/dist/Editor/commonStyle.js +69 -114
  84. package/dist/Editor/helper/index.js +12 -8
  85. package/dist/Editor/helper/theme.js +2 -200
  86. package/dist/Editor/hooks/useDrag.js +11 -17
  87. package/dist/Editor/hooks/useEditorScroll.js +6 -10
  88. package/dist/Editor/hooks/useMouseMove.js +13 -25
  89. package/dist/Editor/hooks/useTable.js +1 -1
  90. package/dist/Editor/plugins/withEmbeds.js +1 -1
  91. package/dist/Editor/plugins/withHTML.js +16 -20
  92. package/dist/Editor/plugins/withLayout.js +1 -1
  93. package/dist/Editor/plugins/withTable.js +1 -1
  94. package/dist/Editor/theme/ThemeList.js +173 -50
  95. package/dist/Editor/utils/SlateUtilityFunctions.js +37 -150
  96. package/dist/Editor/utils/button.js +14 -0
  97. package/dist/Editor/utils/chatEditor/SlateUtilityFunctions.js +0 -23
  98. package/dist/Editor/utils/draftToSlate.js +2 -3
  99. package/dist/Editor/utils/font.js +37 -40
  100. package/dist/Editor/utils/helper.js +27 -59
  101. package/dist/Editor/utils/link.js +1 -1
  102. package/dist/Editor/utils/table.js +0 -8
  103. package/package.json +3 -6
  104. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -438
  105. package/dist/Editor/assets/svg/ThemeIcons.js +0 -291
  106. package/dist/Editor/common/CustomColorPicker/index.js +0 -106
  107. package/dist/Editor/common/CustomColorPicker/style.js +0 -53
  108. package/dist/Editor/common/CustomDialog/index.js +0 -90
  109. package/dist/Editor/common/CustomDialog/styles.js +0 -80
  110. package/dist/Editor/common/CustomDialog2/index.js +0 -94
  111. package/dist/Editor/common/CustomDialog2/style.js +0 -67
  112. package/dist/Editor/common/CustomSelect.js +0 -33
  113. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
  114. package/dist/Editor/hooks/useEditorTheme.js +0 -153
  115. package/dist/Editor/theme/index.js +0 -144
  116. package/dist/Editor/themeSettings/ActiveTheme.js +0 -72
  117. package/dist/Editor/themeSettings/buttons/index.js +0 -283
  118. package/dist/Editor/themeSettings/buttons/style.js +0 -21
  119. package/dist/Editor/themeSettings/colorTheme/index.js +0 -292
  120. package/dist/Editor/themeSettings/colorTheme/style.js +0 -77
  121. package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
  122. package/dist/Editor/themeSettings/fonts/index.js +0 -220
  123. package/dist/Editor/themeSettings/fonts/style.js +0 -44
  124. package/dist/Editor/themeSettings/icons.js +0 -60
  125. package/dist/Editor/themeSettings/index.js +0 -320
  126. package/dist/Editor/themeSettings/style.js +0 -152
  127. package/dist/Editor/themeSettingsAI/icons.js +0 -96
  128. package/dist/Editor/themeSettingsAI/index.js +0 -356
  129. package/dist/Editor/themeSettingsAI/saveTheme.js +0 -197
  130. package/dist/Editor/themeSettingsAI/style.js +0 -250
@@ -130,7 +130,7 @@ const usePopupStyle = theme => ({
130
130
  },
131
131
  "& .accordionIcon": {
132
132
  "& p": {
133
- textAlign: "left"
133
+ textAlign: 'left'
134
134
  }
135
135
  }
136
136
  },
@@ -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"
@@ -429,6 +424,12 @@ const usePopupStyle = theme => ({
429
424
  fontFamilyListOptions: {
430
425
  "& .MuiAutocomplete-listbox": {
431
426
  padding: "0px",
427
+ "&::-webkit-scrollbar-thumb": {
428
+ background: `none !important`
429
+ },
430
+ "&::-webkit-scrollbar-track": {
431
+ visibility: "hidden"
432
+ },
432
433
  "&::-webkit-scrollbar-thumb": {
433
434
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
434
435
  },
@@ -439,8 +440,8 @@ const usePopupStyle = theme => ({
439
440
  margin: "5px",
440
441
  borderRadius: "8px",
441
442
  color: theme?.palette?.editor?.menuOptionTextColor,
442
- fontSize: "14px",
443
- padding: "8px 12px",
443
+ fontSize: '14px',
444
+ padding: '8px 12px',
444
445
  '&[aria-selected="true"]': {
445
446
  backgroundColor: `${theme?.palette?.editor?.menuOptionSelectedOption} !important`
446
447
  }
@@ -539,7 +540,7 @@ const usePopupStyle = theme => ({
539
540
  }
540
541
  },
541
542
  alignItems: "flexStart",
542
- // justifyContent: "center",
543
+ justifyContent: "center",
543
544
  flexDirection: "row",
544
545
  "&:hover": {
545
546
  background: "unset"
@@ -788,13 +789,8 @@ const usePopupStyle = theme => ({
788
789
  padding: "0px"
789
790
  },
790
791
  defaultBtn: {
791
- color: "#2563EB !important",
792
- textTransform: "none",
793
- textDecoration: "underline",
794
- "&.Mui-disabled": {
795
- color: "#A0AEC0 !important",
796
- textDecoration: "none"
797
- }
792
+ color: "#0F172A",
793
+ textTransform: "none"
798
794
  },
799
795
  templateCardBtnGrp: {
800
796
  display: "none",
@@ -10,8 +10,6 @@ import { AllColors } from "../../Elements/Color Picker/ColorButtons";
10
10
  import { fontFamilyMap } from "../../utils/font";
11
11
  import { getBorderColor } from "../../utils/helper";
12
12
  import SelectTypography from "./MiniTextFormat/SelectTypography";
13
- import { isTextCustomized, saveToTheme } from "../../helper/theme";
14
- import { useEditorTheme } from "../../hooks/useEditorTheme";
15
13
  import SelectSuperSubscript from "./MiniTextFormat/SelectSuperSubscript";
16
14
  import { ColorResetIcon, TextDefaultStyleIcon } from "../../common/iconListV2";
17
15
  import FontFamilyAutocomplete from "../FormatTools/FontFamilyAutocomplete";
@@ -40,7 +38,7 @@ const TextFormat = props => {
40
38
  // const pageSettingLine = pageSt?.pageProps?.lineHeight;
41
39
  const {
42
40
  fontFamilies,
43
- theme: appTheme
41
+ theme
44
42
  } = useEditorContext();
45
43
  // const { activeBreakPoint } = useEditorContext();
46
44
  // const breakpoint = activeBreakPoint === "" ? "lg" : activeBreakPoint;
@@ -60,11 +58,6 @@ const TextFormat = props => {
60
58
  color: "",
61
59
  bgColor: ""
62
60
  };
63
- const {
64
- theme,
65
- updateTheme
66
- } = useEditorTheme();
67
- const customized = isTextCustomized(editor);
68
61
 
69
62
  // let lineSpacingValue = activeMark(editor, "lineHeight");
70
63
  // lineSpacingValue =
@@ -121,50 +114,6 @@ const TextFormat = props => {
121
114
  sx: classes.textFormatWrapper,
122
115
  className: "text-formatter-popup",
123
116
  children: [/*#__PURE__*/_jsxs(Grid, {
124
- item: true,
125
- xs: 12,
126
- children: [/*#__PURE__*/_jsxs(Grid, {
127
- container: true,
128
- justifyContent: "space-between",
129
- alignItems: "center",
130
- children: [/*#__PURE__*/_jsx(Grid, {
131
- item: true,
132
- children: /*#__PURE__*/_jsx(Typography, {
133
- variant: "body1",
134
- color: "primary",
135
- sx: classes.typoLabel,
136
- children: "Style"
137
- })
138
- }), /*#__PURE__*/_jsx(Grid, {
139
- item: true,
140
- children: theme?.id ? /*#__PURE__*/_jsx(Button, {
141
- sx: classes.defaultBtn,
142
- onClick: () => {
143
- const {
144
- field,
145
- theme
146
- } = saveToTheme(editor) || {};
147
- updateTheme(theme, {
148
- action: "ELEMENT_PROPS_CHANGE",
149
- fieldName: field
150
- });
151
- },
152
- disabled: !customized,
153
- children: "Save to theme"
154
- }) : null
155
- })]
156
- }), /*#__PURE__*/_jsx(Grid, {
157
- item: true,
158
- xs: 12,
159
- sx: classes.textFormatField,
160
- children: /*#__PURE__*/_jsx(SelectTypography, {
161
- editor: editor,
162
- classes: classes,
163
- closeMainPopup: () => {},
164
- type: "fullWidth"
165
- })
166
- })]
167
- }), /*#__PURE__*/_jsxs(Grid, {
168
117
  item: true,
169
118
  xs: 12,
170
119
  children: [/*#__PURE__*/_jsxs(Grid, {
@@ -317,7 +266,7 @@ const TextFormat = props => {
317
266
  children: /*#__PURE__*/_jsx(Button, {
318
267
  sx: classes.defaultBtn2,
319
268
  startIcon: /*#__PURE__*/_jsx(ColorResetIcon, {
320
- stroke: appTheme?.palette?.type === "dark" ? "#505359" : "#A2B0B9"
269
+ stroke: theme?.palette?.type === "dark" ? "#505359" : "#A2B0B9"
321
270
  }),
322
271
  onClick: handleDefault({
323
272
  format: "bgColor"
@@ -405,7 +354,11 @@ const TextFormat = props => {
405
354
  xs: 12,
406
355
  className: "typo-icons",
407
356
  sx: classes.evenSpace,
408
- children: [fontStyle?.map((m, i) => {
357
+ children: [/*#__PURE__*/_jsx(SelectTypography, {
358
+ classes: classes,
359
+ editor: editor,
360
+ closeMainPopup: closeMainPopup || onClose
361
+ }), fontStyle?.map((m, i) => {
409
362
  return /*#__PURE__*/_jsx(MarkButton, {
410
363
  editor: editor,
411
364
  ...m
@@ -14,7 +14,6 @@ import { jsx as _jsx } from "react/jsx-runtime";
14
14
  const PopupTool = props => {
15
15
  const {
16
16
  theme,
17
- setIsTextSelected,
18
17
  customProps,
19
18
  editorWrapper
20
19
  } = props;
@@ -33,9 +32,11 @@ const PopupTool = props => {
33
32
  const [event] = useDrag(anchorEl);
34
33
  const id = open ? "popup-edit-tool" : "";
35
34
  const [size] = useWindowResize();
36
- const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
37
35
  const updateAnchorEl = isScroll => {
38
36
  try {
37
+ const {
38
+ selection
39
+ } = editor;
39
40
  const isHavingSelection = selection && !Range.isCollapsed(selection);
40
41
  if (isHavingSelection && event === "end") {
41
42
  const domRange = ReactEditor.toDOMRange(editor, editor.selection);
@@ -75,31 +76,41 @@ const PopupTool = props => {
75
76
  if (!isCarouselEdit) {
76
77
  setOpen(true);
77
78
  setPopupType("textFormat");
78
- setIsTextSelected(true);
79
+ // setIsTextSelected(true);
79
80
  }
80
81
  } else if (!anchorEl) {
81
82
  setOpen(false);
82
83
  setPopupType("");
83
- setIsTextSelected(false);
84
+ // setIsTextSelected(false);
84
85
  }
85
86
  }, [event, anchorEl]);
86
87
  useEffect(() => {
87
- if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || selectedElement?.enable === 1) {
88
+ console.log("Editor useEffect", selection);
89
+ const {
90
+ path,
91
+ enable
92
+ } = selectedElement || {};
93
+ const isFreeGridElement = path && path.split("|").length > 2;
94
+ const isFreeGridEnabled = enable === 1 && isFreeGridElement;
95
+ if (!selection || Range.isCollapsed(selection) || Editor.string(editor, selection) === "" || isFreeGridEnabled) {
88
96
  setAnchorEl(null);
89
97
  } else {
98
+ console.log("Editor updateAnchorEl", selection);
90
99
  updateAnchorEl();
91
100
  hideSlateSelection(); // removes slate selection background, when there is no selection
92
101
  }
93
102
  }, [selection, event, selectedElement?.enable]);
94
103
  const handleClose = () => {
104
+ console.log("Editor closing");
95
105
  // setAnchorEl(null);
96
106
  setOpen(false);
97
107
  setPopupType("");
98
108
  };
99
109
  return open && !openAI ? /*#__PURE__*/_jsx(ClickAwayListener, {
100
110
  onClickAway: e => {
111
+ console.log("ClickAwayListener", e.target, document.body, e.target !== document.body);
101
112
  // close the mini toolbar, if user clicks outside the editor (in Flozy app.)
102
- if (e.target !== document.body && !isMobile) {
113
+ if (e.target !== document.body) {
103
114
  // e.target returns body, if the user clicks material ui select popup inside the tool bar, on that time, we don't need to close
104
115
  handleClose();
105
116
  }
@@ -28,20 +28,16 @@ export const toolbarGroups = [[{
28
28
  type: "dropdown",
29
29
  options: [{
30
30
  text: "Normal",
31
- value: "normal",
32
- numVal: "400"
31
+ value: "normal"
33
32
  }, {
34
33
  text: "Bold",
35
- value: "bold",
36
- numVal: "700"
34
+ value: "bold"
37
35
  }, {
38
36
  text: "Bolder",
39
- value: "bolder",
40
- numVal: "700"
37
+ value: "bolder"
41
38
  }, {
42
39
  text: "Lighter",
43
- value: "lighter",
44
- numVal: "100"
40
+ value: "lighter"
45
41
  }],
46
42
  icon: FormatBoldIcon,
47
43
  width: "100px"
@@ -50,8 +46,7 @@ export const toolbarGroups = [[{
50
46
  format: "bold",
51
47
  type: "mark",
52
48
  title: "Bold",
53
- basic: true,
54
- themeEnabled: true
49
+ basic: true
55
50
  }, {
56
51
  id: 5,
57
52
  format: "underline",
@@ -62,8 +57,7 @@ export const toolbarGroups = [[{
62
57
  format: "italic",
63
58
  type: "mark",
64
59
  title: "Italic",
65
- basic: true,
66
- themeEnabled: true
60
+ basic: true
67
61
  }, {
68
62
  id: 6,
69
63
  format: "strikethrough",
@@ -107,42 +101,6 @@ export const toolbarGroups = [[{
107
101
  type: "block",
108
102
  title: "H3",
109
103
  group: "typography"
110
- }, {
111
- id: 39,
112
- format: "headingFour",
113
- type: "block",
114
- title: "H4",
115
- group: "typography"
116
- }, {
117
- id: 40,
118
- format: "headingFive",
119
- type: "block",
120
- title: "H5",
121
- group: "typography"
122
- }, {
123
- id: 41,
124
- format: "headingSix",
125
- type: "block",
126
- title: "H6",
127
- group: "typography"
128
- }, {
129
- id: 42,
130
- format: "paragraphOne",
131
- type: "block",
132
- title: "Paragraph 1",
133
- group: "typography"
134
- }, {
135
- id: 43,
136
- format: "paragraphTwo",
137
- type: "block",
138
- title: "Paragraph 2",
139
- group: "typography"
140
- }, {
141
- id: 44,
142
- format: "paragraphThree",
143
- type: "block",
144
- title: "Paragraph 3",
145
- group: "typography"
146
104
  }, {
147
105
  id: 14,
148
106
  format: "doublequote",
@@ -1,8 +1,8 @@
1
1
  import React, { useMemo, useState } from "react";
2
2
  import { Grid, Button, Popover } from "@mui/material";
3
+ import ColorPickerTool from "react-gcolor-picker";
3
4
  import { colors } from "../Elements/Color Picker/defaultColors";
4
5
  import SwipeableDrawerComponent from "./SwipeableDrawer";
5
- import CustomColorPicker from "./CustomColorPicker";
6
6
  import { jsx as _jsx } from "react/jsx-runtime";
7
7
  import { jsxs as _jsxs } from "react/jsx-runtime";
8
8
  import { Fragment as _Fragment } from "react/jsx-runtime";
@@ -12,10 +12,7 @@ const ColorPickerToolComponent = ({
12
12
  onSave = () => {},
13
13
  recentColors = [],
14
14
  hideGradient,
15
- handleClose,
16
- closeDrawer,
17
- hideThemeColors,
18
- disableEditTheme
15
+ handleClose
19
16
  }) => {
20
17
  const [color, setColor] = useState(value);
21
18
  const handleSave = () => {
@@ -36,15 +33,11 @@ const ColorPickerToolComponent = ({
36
33
  item: true,
37
34
  xs: 12,
38
35
  children: [/*#__PURE__*/_jsx("div", {
39
- children: /*#__PURE__*/_jsx(CustomColorPicker, {
36
+ children: /*#__PURE__*/_jsx(ColorPickerTool, {
40
37
  gradient: hideGradient ? false : true,
41
- color: color,
38
+ value: color,
42
39
  onChange: handleColorChange,
43
- recentColors: recentColors,
44
- defaultColors: initialColors,
45
- closeDrawer: closeDrawer,
46
- hideThemeColors: hideThemeColors,
47
- disableEditTheme: disableEditTheme
40
+ defaultColors: initialColors
48
41
  })
49
42
  }), /*#__PURE__*/_jsxs("div", {
50
43
  style: {
@@ -55,9 +48,6 @@ const ColorPickerToolComponent = ({
55
48
  children: [/*#__PURE__*/_jsx(Button, {
56
49
  onClick: handleClose,
57
50
  className: "secondaryBtn",
58
- style: {
59
- background: "none"
60
- },
61
51
  children: "Cancel"
62
52
  }), /*#__PURE__*/_jsx(Button, {
63
53
  onClick: handleSave,
@@ -74,11 +64,7 @@ const ColorPickerButton = props => {
74
64
  defaultColors = [],
75
65
  classes = {},
76
66
  recentColors = [],
77
- hideGradient,
78
- children,
79
- handleClose: closeDrawer,
80
- hideThemeColors,
81
- disableEditTheme
67
+ hideGradient
82
68
  } = props;
83
69
  const [anchorEl, setAnchorEl] = useState(null);
84
70
  const open = Boolean(anchorEl);
@@ -90,13 +76,7 @@ const ColorPickerButton = props => {
90
76
  setAnchorEl(null);
91
77
  };
92
78
  return /*#__PURE__*/_jsxs(_Fragment, {
93
- children: [children ? /*#__PURE__*/_jsx("div", {
94
- onClick: handleColorPicker,
95
- style: {
96
- cursor: "pointer"
97
- },
98
- children: children
99
- }) : /*#__PURE__*/_jsx(Button, {
79
+ children: [/*#__PURE__*/_jsx(Button, {
100
80
  style: {
101
81
  background: value,
102
82
  height: "22px",
@@ -123,10 +103,7 @@ const ColorPickerButton = props => {
123
103
  onSave: onSave,
124
104
  recentColors: recentColors,
125
105
  hideGradient: hideGradient,
126
- handleClose: handleClose,
127
- closeDrawer: closeDrawer,
128
- hideThemeColors: hideThemeColors,
129
- disableEditTheme: disableEditTheme
106
+ handleClose: handleClose
130
107
  })
131
108
  })
132
109
  }) : /*#__PURE__*/_jsx(Popover, {
@@ -152,10 +129,7 @@ const ColorPickerButton = props => {
152
129
  onSave: onSave,
153
130
  recentColors: recentColors,
154
131
  hideGradient: hideGradient,
155
- handleClose: handleClose,
156
- closeDrawer: closeDrawer,
157
- hideThemeColors: hideThemeColors,
158
- disableEditTheme: disableEditTheme
132
+ handleClose: handleClose
159
133
  })
160
134
  })
161
135
  })]
@@ -7,7 +7,7 @@ import { useEditorContext } from "../../hooks/useMouseMove";
7
7
  import { Transforms } from "slate";
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
- const DRAGGABLE_TYPES = ["paragraph", "headingOne", "headingTwo", "headingThree", "headingFour", "headingFive", "headingSix", "paragraphOne", "paragraphTwo", "paragraphThree", "grid"];
10
+ const DRAGGABLE_TYPES = ["paragraph", "headingOne", "headingTwo", "headingThree", "grid"];
11
11
  const DragHandleStyle = fromPopper => {
12
12
  const handleDragStyle = fromPopper ? {
13
13
  position: "absolute",
@@ -1,6 +1,7 @@
1
1
  import React, { useEffect } from "react";
2
2
  import { useDraggable } from "@dnd-kit/core";
3
3
  import { Box } from "@mui/material";
4
+ import DragIndicatorIcon from "@mui/icons-material/DragIndicator";
4
5
  import { SectionDragIcon } from "../iconListV2";
5
6
  import { jsx as _jsx } from "react/jsx-runtime";
6
7
  const Draggable = props => {
@@ -18,8 +18,6 @@ const FontLoader = props => {
18
18
  const loadFontsInBatches = (families, batchSize = 5, maxRetries = 3) => {
19
19
  let currentIndex = 0;
20
20
  let retryCount = 0;
21
- // let hideLoaderOn = 30;
22
-
23
21
  const loadNextBatch = () => {
24
22
  try {
25
23
  if (currentIndex >= families?.length) {
@@ -80,7 +78,6 @@ const FontLoader = props => {
80
78
  // console.log(err);
81
79
  setLoading(false);
82
80
  });
83
- // setLoading(true);
84
81
  } else {
85
82
  function correctFontArray(fontString) {
86
83
  let fontsArray = fontString?.split(",");
@@ -44,16 +44,6 @@ import ChervDown from "../assets/svg/ChervDown";
44
44
  import ChervUp from "../assets/svg/ChervUp";
45
45
  import { jsx as _jsx } from "react/jsx-runtime";
46
46
  import { jsxs as _jsxs } from "react/jsx-runtime";
47
- const HeadingIcon = ({
48
- variant
49
- }) => {
50
- return /*#__PURE__*/_jsx("div", {
51
- style: {
52
- color: "#64748B"
53
- },
54
- children: variant
55
- });
56
- };
57
47
  const iconList = {
58
48
  fontFamily: /*#__PURE__*/_jsx(FontFamilyIcon, {
59
49
  size: 20
@@ -86,24 +76,6 @@ const iconList = {
86
76
  size: 18,
87
77
  fill: "#64748B"
88
78
  }),
89
- headingFour: /*#__PURE__*/_jsx(HeadingIcon, {
90
- variant: "H4"
91
- }),
92
- headingFive: /*#__PURE__*/_jsx(HeadingIcon, {
93
- variant: "H5"
94
- }),
95
- headingSix: /*#__PURE__*/_jsx(HeadingIcon, {
96
- variant: "H6"
97
- }),
98
- paragraphOne: /*#__PURE__*/_jsx(HeadingIcon, {
99
- variant: "P1"
100
- }),
101
- paragraphTwo: /*#__PURE__*/_jsx(HeadingIcon, {
102
- variant: "P2"
103
- }),
104
- paragraphThree: /*#__PURE__*/_jsx(HeadingIcon, {
105
- variant: "P3"
106
- }),
107
79
  blockquote: /*#__PURE__*/_jsx(MdFormatQuote, {
108
80
  size: 20,
109
81
  fill: "#64748B",
@@ -19,7 +19,7 @@ const Upload = props => {
19
19
  xs: 12,
20
20
  sx: {
21
21
  padding: "10px",
22
- height: '100%'
22
+ height: "100%"
23
23
  },
24
24
  className: "ims-right",
25
25
  children: /*#__PURE__*/_jsx(Uploader, {
@@ -76,7 +76,7 @@ const ImageSelectorStyles = theme => ({
76
76
  background: theme?.palette?.editor?.deviderBgColor,
77
77
  "@media only screen and (min-width: 899px)": {
78
78
  margin: "0px 24px",
79
- width: "calc(100% - 48px)"
79
+ width: 'calc(100% - 48px)'
80
80
  }
81
81
  },
82
82
  "& .primaryBtn": {
@@ -104,6 +104,12 @@ const ImageSelectorStyles = theme => ({
104
104
  marginRight: "8px !important"
105
105
  },
106
106
  "& .MuiGrid-root": {
107
+ "&::-webkit-scrollbar-thumb": {
108
+ background: `none !important`
109
+ },
110
+ "&::-webkit-scrollbar-track": {
111
+ visibility: "hidden"
112
+ },
107
113
  "&::-webkit-scrollbar-thumb": {
108
114
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
109
115
  },
@@ -112,10 +118,10 @@ const ImageSelectorStyles = theme => ({
112
118
  }
113
119
  },
114
120
  "& .MuiImageList-root": {
115
- margin: "0px"
121
+ margin: '0px'
116
122
  },
117
123
  "& .MuiDialogContent-root": {
118
- padding: "20px 24px 5px 24px"
124
+ padding: '20px 24px 5px 24px'
119
125
  }
120
126
  },
121
127
  titleTypo: {
@@ -5,8 +5,9 @@ const UploadStyles = theme => ({
5
5
  borderRadius: "11px",
6
6
  boxShadow: "0px 4px 10px rgba(0, 0, 0, 0.16)",
7
7
  background: theme?.palette?.editor?.uploadFileBg,
8
- minHeight: '150px',
9
- height: 'inherit'
8
+ height: "100%",
9
+ minHeight: "150px",
10
+ height: "inherit"
10
11
  },
11
12
  uploadField: {
12
13
  width: "100%",
@@ -18,21 +19,21 @@ const UploadStyles = theme => ({
18
19
  backgroundColor: theme?.palette?.editor?.uploadFileInnerBg,
19
20
  borderRadius: "9px",
20
21
  border: "1px dashed #2563EB",
21
- minHeight: '150px'
22
+ minHeight: "150px"
22
23
  },
23
24
  uploadIcon: {
24
25
  display: "grid !important",
25
26
  "& svg": {
26
- display: 'flex',
27
- width: '100%',
27
+ display: "flex",
28
+ width: "100%",
28
29
  "& path": {
29
30
  stroke: "#2563EB"
30
31
  }
31
32
  },
32
- '& span': {
33
- display: 'flex',
34
- width: '100%',
35
- marginTop: '5px'
33
+ "& span": {
34
+ display: "flex",
35
+ width: "100%",
36
+ marginTop: "5px"
36
37
  }
37
38
  }
38
39
  });
@@ -53,12 +53,18 @@ const usePopupStyles = theme => ({
53
53
  "& button": {
54
54
  color: theme?.palette?.editor?.textColor
55
55
  },
56
- // "@media only screen and (min-width: 899px)": {
57
- // maxHeight: "400px",
58
- // },
56
+ "@media only screen and (min-width: 899px)": {
57
+ maxHeight: "400px"
58
+ },
59
59
  "& .orderedListIcon, .bulletedListTextIcon, .checkedListTextIcon, .accordianIconSvgTextFormat": {
60
60
  width: "20px !important"
61
61
  },
62
+ "&::-webkit-scrollbar-thumb": {
63
+ background: `none !important`
64
+ },
65
+ "&::-webkit-scrollbar-track": {
66
+ visibility: "hidden"
67
+ },
62
68
  "&::-webkit-scrollbar-thumb": {
63
69
  background: `${theme?.palette?.editor?.brainPopupScroll} !important`
64
70
  },
@@ -142,13 +148,13 @@ const usePopupStyles = theme => ({
142
148
  }
143
149
  },
144
150
  "& .calederIconSvg": {
145
- "& rect": {
151
+ '& rect': {
146
152
  stroke: theme?.palette?.editor?.closeButtonSvgStroke
147
153
  },
148
- "& .strokePath": {
154
+ '& .strokePath': {
149
155
  stroke: theme?.palette?.editor?.closeButtonSvgStroke
150
156
  },
151
- "& .fillPath": {
157
+ '& .fillPath': {
152
158
  fill: theme?.palette?.editor?.closeButtonSvgStroke
153
159
  }
154
160
  }
@@ -65,8 +65,7 @@ const Settings = props => {
65
65
  editor: editor,
66
66
  path: path,
67
67
  customProps: customProps,
68
- theme: theme,
69
- onClose: onClose
68
+ theme: theme
70
69
  }) : null
71
70
  })]
72
71
  })
@@ -8,8 +8,7 @@ const AppHeaderSettings = props => {
8
8
  const {
9
9
  editor,
10
10
  path,
11
- customProps,
12
- onClose
11
+ customProps
13
12
  } = props;
14
13
  const item_path = path?.split("|").map(m => parseInt(m));
15
14
  const element_path = [...item_path, 0];
@@ -28,7 +27,7 @@ const AppHeaderSettings = props => {
28
27
  });
29
28
  };
30
29
  const handleClose = () => {
31
- onClose();
30
+ console.log("close");
32
31
  };
33
32
  return /*#__PURE__*/_jsx(Box, {
34
33
  component: "div",
@@ -8,8 +8,7 @@ const BoxSettings = props => {
8
8
  const {
9
9
  editor,
10
10
  path,
11
- customProps,
12
- onClose
11
+ customProps
13
12
  } = props;
14
13
  const item_path = path?.split("|").map(m => parseInt(m));
15
14
  const element_path = [...item_path];
@@ -28,7 +27,7 @@ const BoxSettings = props => {
28
27
  });
29
28
  };
30
29
  const handleClose = () => {
31
- onClose();
30
+ console.log("close");
32
31
  };
33
32
  return /*#__PURE__*/_jsx(Box, {
34
33
  component: "div",