@flozy/editor 10.0.7 → 10.0.9

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 +120 -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 +130 -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
@@ -1,6 +1,6 @@
1
1
  import React, { useCallback, useMemo, useRef, useImperativeHandle, forwardRef, useState } from "react";
2
- import { Editable, Slate, ReactEditor } from 'slate-react';
3
- import { createEditor, Transforms, Editor } from 'slate';
2
+ import { Editable, Slate, ReactEditor } from "slate-react";
3
+ import { createEditor, Transforms, Editor } from "slate";
4
4
  import withCommon from "./hooks/withCommon";
5
5
  import { getBlock, getMarked, serializeMentions } from "./utils/chatEditor/SlateUtilityFunctions";
6
6
  import MiniTextFormat from "./Toolbar/PopupTool/MiniTextFormat";
@@ -33,15 +33,15 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
33
33
  isMobile = false,
34
34
  debounceTimeOut = 10,
35
35
  isMarkDown = false,
36
- markDownContent = '',
36
+ markDownContent = "",
37
37
  translation
38
38
  } = props;
39
39
  const classes = usePopupStyle(theme);
40
40
  const convertedContent = draftToSlate({
41
41
  data: content && content?.length > 0 ? content : [{
42
- type: 'paragraph',
42
+ type: "paragraph",
43
43
  children: [{
44
- text: ''
44
+ text: ""
45
45
  }]
46
46
  }]
47
47
  });
@@ -153,14 +153,6 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
153
153
  // needLayout = true,
154
154
  } = otherProps || {};
155
155
  const mentionsRef = useRef();
156
- const customProps = {
157
- ...(otherProps || {}),
158
- hideTools: ["settings", "add_column", "drag", "resize"],
159
- readOnly: isReadOnly,
160
- editorPlaceholder: "Write Something",
161
- page_id: 1,
162
- translation: translation || translationMock
163
- };
164
156
  const [mentions, setMentions] = useMentions({
165
157
  editor,
166
158
  selection: editor?.selection
@@ -222,6 +214,15 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
222
214
  debounced(newValue);
223
215
  debouncedValue.current = newValue;
224
216
  };
217
+ const dummyTranslation = () => {};
218
+ const customProps = {
219
+ ...(otherProps || {}),
220
+ hideTools: ["settings", "add_column", "drag", "resize"],
221
+ readOnly: isReadOnly,
222
+ editorPlaceholder: "Write Something",
223
+ page_id: 1,
224
+ translation: translation || translationMock || dummyTranslation
225
+ };
225
226
  const Element = props => {
226
227
  return getBlock(props);
227
228
  };
@@ -257,7 +258,7 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
257
258
  editor
258
259
  });
259
260
  } else if (event.key === "Enter" && !isMobile) {
260
- const isEmpty = debouncedValue?.current.length === 1 && debouncedValue?.current[0].type === 'paragraph' && debouncedValue?.current[0].children.length === 1 && debouncedValue?.current[0].children[0].text === '';
261
+ const isEmpty = debouncedValue?.current.length === 1 && debouncedValue?.current[0].type === "paragraph" && debouncedValue?.current[0].children.length === 1 && debouncedValue?.current[0].children[0].text === "";
261
262
  if (isEmpty) {
262
263
  event.preventDefault();
263
264
  return;
@@ -297,10 +298,10 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
297
298
  }
298
299
  };
299
300
 
301
+ const html = isMarkDown ? convertMDToHTML(markDownContent) : null;
300
302
  const handleFocus = () => {
301
303
  setIsFocused(true);
302
304
  };
303
- const html = isMarkDown ? convertMDToHTML(markDownContent) : null;
304
305
  return !isMarkDown ? /*#__PURE__*/_jsx(EditorProvider, {
305
306
  theme: theme,
306
307
  editor: editor,
@@ -314,13 +315,13 @@ const ChatEditor = /*#__PURE__*/forwardRef((props, ref) => {
314
315
  closeMainPopup: handleClose,
315
316
  customProps: customProps
316
317
  }), /*#__PURE__*/_jsx(Editable, {
317
- onFocus: handleFocus,
318
318
  className: "chatEditorRoot",
319
319
  renderElement: renderElement,
320
320
  renderLeaf: renderLeaf,
321
321
  decorate: decorators,
322
322
  placeholder: "Start typing ...",
323
323
  spellCheck: true,
324
+ onFocus: handleFocus,
324
325
  onBlur: handleBlur,
325
326
  onKeyDown: onKeyDown,
326
327
  onPaste: handlePaste,
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable no-unused-vars */
2
- import React, { useRef, useCallback, useEffect, useMemo, useState, forwardRef, useImperativeHandle } from "react";
2
+ import React, { useRef, useCallback, useEffect, useMemo, useState, forwardRef, useImperativeHandle, createContext } from "react";
3
3
  import PropTypes from "prop-types";
4
- import { createEditor, Range, Transforms } from "slate";
4
+ import { createEditor, Editor, Range, Transforms } from "slate";
5
5
  import { Slate, Editable, ReactEditor } from "slate-react";
6
6
  import { useDebouncedCallback } from "use-debounce";
7
7
  import { getMarked, getBlock } from "./utils/SlateUtilityFunctions";
@@ -17,7 +17,7 @@ import { serializeToText } from "./utils/serializeToText";
17
17
  import { getPageSettings } from "./utils/pageSettings";
18
18
  import { getThumbnailImage, invertColor, pageTextStyle } from "./helper";
19
19
  import PopupTool from "./Toolbar/PopupTool";
20
- import { Box, Typography, useTheme } from "@mui/material";
20
+ import { Box, Typography, useTheme, IconButton } from "@mui/material";
21
21
  import Shorthands from "./common/Shorthands";
22
22
  import MiniToolbar from "./Toolbar/Mini/MiniToolbar";
23
23
  import { EditorProvider } from "./hooks/useMouseMove";
@@ -26,9 +26,12 @@ import editorStyles from "./Styles/EditorStyles";
26
26
  import DragAndDrop from "./common/DnD";
27
27
  import Section from "./common/Section";
28
28
  import decorators from "./utils/Decorators";
29
- import { getBreakpointLineSpacing, getTRBLBreakPoints } from "./helper/theme";
29
+ import { getTRBLBreakPoints, getVariableValue, getBreakpointLineSpacing } from "./helper/theme";
30
30
  import { getInitialValue, handleInsertLastElement, isEverythingSelected, isFreeGrid, isFreeGridFragment, isRestrictedNode, outsideEditorClickLabel } from "./utils/helper";
31
31
  import useWindowResize from "./hooks/useWindowResize";
32
+ import { getTheme } from "./theme";
33
+ import ThemeSettings from "./themeSettings";
34
+ import ThemeSettingsAI from "./themeSettingsAI";
32
35
  import PopoverAIInput from "./Elements/AI/PopoverAIInput";
33
36
  import RnDCopy from "./common/RnD/RnDCopy";
34
37
  import SwitchViewport from "./common/RnD/SwitchViewport/SwitchViewport";
@@ -37,9 +40,12 @@ import "./font.css";
37
40
  import "./Editor.css";
38
41
  import "animate.css";
39
42
  import FontLoader from "./common/FontLoader/FontLoader";
43
+ import { ThemeAIIcon, ThemePaintIcon } from "./assets/svg/ThemeIcons";
40
44
  import { CustomDialogComponent } from "./common/CustomDialog";
45
+ import { extractTextWithPath, replaceTextPath } from "./helper/textIndeces.js";
41
46
  import { jsx as _jsx } from "react/jsx-runtime";
42
47
  import { jsxs as _jsxs } from "react/jsx-runtime";
48
+ export const ThemeContext = /*#__PURE__*/createContext(null);
43
49
  const Item = /*#__PURE__*/forwardRef(({
44
50
  children,
45
51
  ...props
@@ -81,6 +87,7 @@ const updateTopBanner = (content = [], setTopBanner) => {
81
87
  return firstNode?.type === "topbanner" ? firstNode : null;
82
88
  });
83
89
  };
90
+ const dummyTranslation = () => {};
84
91
  const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
85
92
  const {
86
93
  id,
@@ -94,6 +101,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
94
101
  otherProps,
95
102
  isIframe,
96
103
  theme,
104
+ showThemeButtons,
97
105
  showViewport = false,
98
106
  overrideWrapperStyles = {},
99
107
  translation
@@ -101,7 +109,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
101
109
  const editorWrapper = useRef();
102
110
  const mentionsRef = useRef();
103
111
  const convertedContent = draftToSlate({
104
- data: content
112
+ data: content,
113
+ needLayout: otherProps?.needLayout
105
114
  });
106
115
  const [value, setValue] = useState(convertedContent);
107
116
  const [isInteracted, setIsInteracted] = useState(false);
@@ -129,7 +138,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
129
138
  hideTools = [],
130
139
  translationMock
131
140
  } = otherProps || {};
132
- const translationFn = translation || translationMock || (() => {});
141
+ const translationFn = translation || translationMock || dummyTranslation;
133
142
  const editor = useMemo(() => {
134
143
  if (collaborativeEditor) return collaborativeEditor;
135
144
  const editor = createEditor();
@@ -145,10 +154,11 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
145
154
  const {
146
155
  bannerSpacing,
147
156
  pageBgImage,
148
- pageColor,
157
+ pageColor = "",
149
158
  color: pageTextColor,
150
159
  pageWidth,
151
160
  maxWidth: pageMaxWidth,
161
+ theme: selectedTheme,
152
162
  lineHeight
153
163
  } = pageSt?.pageProps || {
154
164
  bannerSpacing: {
@@ -160,10 +170,17 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
160
170
  };
161
171
  const classes = editorStyles({
162
172
  padHeight: !fullScreen ? otherProps?.padHeight : 20,
163
- placeHolderColor: invertColor(pageColor || "#FFF"),
173
+ placeHolderColor: invertColor(pageColor.startsWith("var") ? getVariableValue(pageColor) : pageColor || "#FFF"),
164
174
  theme,
165
175
  overrideWrapperStyles
166
176
  });
177
+ const [openTheme, setOpenTheme] = useState(false);
178
+ const [openAITheme, setOpenAITheme] = useState(false);
179
+ const [, setThemeUpdated] = useState(0);
180
+ const triggerRender = () => {
181
+ setThemeUpdated(prev => prev + 1); // Incrementing forces a re-render while updating theme
182
+ };
183
+
167
184
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
168
185
  useEffect(() => {
169
186
  setValue(draftToSlate({
@@ -177,11 +194,11 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
177
194
  const debounced = useDebouncedCallback(
178
195
  // function
179
196
  value => {
197
+ debouncedValue.current = value;
180
198
  const {
181
199
  value: strVal,
182
200
  ...restVal
183
201
  } = getOnSaveData(value);
184
- debouncedValue.current = value;
185
202
  onSave(strVal, restVal);
186
203
  },
187
204
  // delay in ms
@@ -192,7 +209,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
192
209
  return {
193
210
  value: JSON.stringify(val),
194
211
  text: text,
195
- title: serializeToText(title?.children) || "Untitled"
212
+ title: serializeToText(title?.children) || ""
196
213
  };
197
214
  };
198
215
  const getTitleSaveData = title => {
@@ -305,6 +322,12 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
305
322
  redo() {
306
323
  editor?.redo();
307
324
  },
325
+ toggleTheme() {
326
+ setOpenTheme(!openTheme);
327
+ },
328
+ toggleAITheme() {
329
+ setOpenAITheme(!openAITheme);
330
+ },
308
331
  getPageSettings: {
309
332
  background: pageBgImage && pageBgImage !== "none" ? `url(${pageBgImage})` : pageColor || ""
310
333
  }
@@ -345,6 +368,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
345
368
  const onDrawerOpen = status => {
346
369
  setIsDrawerOpen(status);
347
370
  };
371
+ const lineH = getBreakpointLineSpacing(lineHeight, breakpoint || (isMobile ? "xs" : ""));
348
372
  const isReadOnly = readOnly === "readonly";
349
373
  const customProps = {
350
374
  ...(otherProps || {}),
@@ -357,9 +381,9 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
357
381
  onDrawerOpen: onDrawerOpen,
358
382
  ICON_API: "https://assets.agenciflow.com",
359
383
  translation: translationFn,
360
- getTitleSaveData
384
+ getTitleSaveData,
385
+ customLineHeight: lineH
361
386
  };
362
- const lineH = getBreakpointLineSpacing(lineHeight, breakpoint);
363
387
  const renderElement = useCallback(props => {
364
388
  return /*#__PURE__*/_jsx(Element, {
365
389
  ...props,
@@ -502,6 +526,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
502
526
  }
503
527
  return style;
504
528
  }, [pageBgImage, pageColor, pageTextColor]);
529
+ const themeProps = getTheme(selectedTheme);
505
530
 
506
531
  // const handleContextMenu = (e) => {
507
532
  // if (!readOnly) {
@@ -532,14 +557,75 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
532
557
  console.log("handleCursorScroll", err);
533
558
  }
534
559
  };
560
+ window.getTextIndeces = () => {
561
+ try {
562
+ const textWithPaths = extractTextWithPath(editor.children, []);
563
+ return textWithPaths;
564
+ } catch (err) {
565
+ console.log(err);
566
+ }
567
+ };
568
+ window.replaceTextIndeces = (path_data = []) => {
569
+ try {
570
+ const replacedJson = replaceTextPath(JSON.parse(JSON.stringify(editor.children)), path_data);
571
+
572
+ // loop delete all
573
+ editor.children.forEach(() => {
574
+ Transforms.delete(editor, {
575
+ at: [0]
576
+ });
577
+ });
578
+
579
+ // Insert new nodes
580
+ Transforms.insertNodes(editor, replacedJson, {
581
+ at: [0]
582
+ });
583
+ } catch (err) {
584
+ console.log(err);
585
+ }
586
+ };
587
+ window.replaceEditorContent = (fragments = []) => {
588
+ try {
589
+ // loop delete all
590
+ editor.children.forEach(() => {
591
+ Transforms.delete(editor, {
592
+ at: [0]
593
+ });
594
+ });
595
+
596
+ // Insert new nodes
597
+ Transforms.insertNodes(editor, fragments, {
598
+ at: [0]
599
+ });
600
+ } catch (err) {
601
+ console.log(err);
602
+ }
603
+ };
535
604
  return /*#__PURE__*/_jsxs(EditorProvider, {
536
605
  theme: theme,
537
606
  editor: editor,
538
- children: [/*#__PURE__*/_jsx(DialogWrapper, {
607
+ openTheme: openTheme,
608
+ setOpenTheme: setOpenTheme,
609
+ triggerRender: triggerRender,
610
+ children: [showThemeButtons ? /*#__PURE__*/_jsxs("div", {
611
+ className: "theme-buttons",
612
+ children: [/*#__PURE__*/_jsx(IconButton, {
613
+ onClick: () => setOpenTheme(true),
614
+ className: "themePaintIcon",
615
+ children: /*#__PURE__*/_jsx(ThemePaintIcon, {})
616
+ }), /*#__PURE__*/_jsx(IconButton, {
617
+ onClick: () => setOpenAITheme(true),
618
+ style: {
619
+ marginTop: "4px"
620
+ },
621
+ children: /*#__PURE__*/_jsx(ThemeAIIcon, {})
622
+ })]
623
+ }) : null, /*#__PURE__*/_jsx(DialogWrapper, {
539
624
  classes: classes,
540
625
  ...props,
541
626
  fullScreen: fullScreen,
542
627
  footer: footer || "",
628
+ selectedTheme: selectedTheme,
543
629
  children: /*#__PURE__*/_jsxs(Box, {
544
630
  component: "div",
545
631
  className: `et-wrpr stimulate-${breakpoint} ${editorClass || ""} ${isIframe ? "iframe-editor" : ""}`,
@@ -574,6 +660,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
574
660
  children: /*#__PURE__*/_jsxs(Box, {
575
661
  component: "div",
576
662
  className: "max-content",
663
+ sx: themeProps?.sxProps || {},
577
664
  "data-info": outsideEditorClickLabel,
578
665
  children: [renderTopBanner(), /*#__PURE__*/_jsx("div", {
579
666
  className: "scroll-area",
@@ -618,8 +705,8 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
618
705
  chars: chars,
619
706
  type: type,
620
707
  theme: theme,
621
- otherProps: customProps,
622
- customProps: customProps
708
+ customProps: customProps,
709
+ otherProps: customProps
623
710
  }) : null, /*#__PURE__*/_jsx(RnDCopy, {
624
711
  readOnly: readOnly
625
712
  })]
@@ -630,7 +717,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
630
717
  }) : null, /*#__PURE__*/_jsx(PopoverAIInput, {
631
718
  otherProps: otherProps || {},
632
719
  editorWrapper: editorWrapper,
633
- translation: translationFn
720
+ translation: translation || translationMock
634
721
  }), footer && (fullScreen || readOnly) && /*#__PURE__*/_jsx(Typography, {
635
722
  sx: {
636
723
  color: "rgb(100, 116, 139)",
@@ -642,6 +729,18 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
642
729
  "data-info": outsideEditorClickLabel,
643
730
  onClick: handleFooterClick,
644
731
  children: footer
732
+ }), openTheme ? /*#__PURE__*/_jsx(ThemeSettings, {
733
+ open: openTheme,
734
+ setOpen: setOpenTheme,
735
+ editor: editor,
736
+ services: otherProps?.services,
737
+ appTheme: theme,
738
+ customProps: customProps
739
+ }) : null, /*#__PURE__*/_jsx(ThemeSettingsAI, {
740
+ openAITheme: openAITheme,
741
+ setOpenAITheme: setOpenAITheme,
742
+ onSaveTheme: otherProps?.onSaveTheme,
743
+ theme: theme
645
744
  })]
646
745
  })
647
746
  }), !readOnly ? /*#__PURE__*/_jsx(PopupTool, {
@@ -650,16 +749,17 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
650
749
  setIsTextSelected: setIsTextSelected,
651
750
  customProps: customProps,
652
751
  editorWrapper: editorWrapper
653
- }) : null, !readOnly && showViewport ? /*#__PURE__*/_jsx(SwitchViewport, {
752
+ }) : null, !readOnly ? /*#__PURE__*/_jsx(SwitchViewport, {
654
753
  breakpoint: breakpoint,
754
+ show: showViewport,
655
755
  onChange: b => onSwitchBreakpoint(b),
656
- translation: translationFn
756
+ translation: translation || translationMock
657
757
  }) : null]
658
758
  })
659
759
  }), htmlAction.showInput && /*#__PURE__*/_jsx(CodeToText, {
660
760
  ...htmlAction,
661
761
  handleCodeToText: handleCodeToText,
662
- translation: translationFn
762
+ translation: translation || translationMock
663
763
  })]
664
764
  }, id), /*#__PURE__*/_jsx(FontLoader, {
665
765
  otherProps: {
@@ -676,7 +776,7 @@ const CommonEditor = /*#__PURE__*/forwardRef((props, ref) => {
676
776
  onConfirm: () => {
677
777
  handleDeleteAll();
678
778
  },
679
- translation: translationFn
779
+ translation: translation || translationMock
680
780
  })]
681
781
  });
682
782
  });
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import { Dialog, DialogTitle, DialogContent, IconButton, Grid } from "@mui/material";
3
3
  import CloseIcon from "@mui/icons-material/Close";
4
4
  import ViewportStimulator from "./common/RnD/Theme/ViewportStimulator";
5
+ import MainThemeProvider from "./common/RnD/Theme/MainThemeProvider";
5
6
  import { jsx as _jsx } from "react/jsx-runtime";
6
7
  import { jsxs as _jsxs } from "react/jsx-runtime";
7
8
  const DialogWrapper = props => {
@@ -9,40 +10,45 @@ const DialogWrapper = props => {
9
10
  fullScreen,
10
11
  onClose,
11
12
  children,
12
- classes
13
+ classes,
14
+ selectedTheme
13
15
  } = props;
14
- return fullScreen ? /*#__PURE__*/_jsxs(Dialog, {
15
- className: `dialogComp`,
16
- open: fullScreen,
17
- fullScreen: fullScreen,
18
- onClose: onClose,
19
- style: {
20
- zIndex: 1000
21
- },
22
- sx: classes.fullScreenWrapper,
23
- children: [/*#__PURE__*/_jsx(DialogTitle, {
16
+ return fullScreen ? /*#__PURE__*/_jsx(MainThemeProvider, {
17
+ userSelectedTheme: selectedTheme,
18
+ children: /*#__PURE__*/_jsxs(Dialog, {
19
+ className: `dialogComp`,
20
+ open: fullScreen,
21
+ fullScreen: fullScreen,
22
+ onClose: onClose,
24
23
  style: {
25
- padding: "6px 8px"
24
+ zIndex: 1000
26
25
  },
27
- children: /*#__PURE__*/_jsx(Grid, {
26
+ sx: classes.fullScreenWrapper,
27
+ children: [/*#__PURE__*/_jsx(DialogTitle, {
28
+ style: {
29
+ padding: "6px 8px"
30
+ },
28
31
  children: /*#__PURE__*/_jsx(Grid, {
29
- style: {
30
- display: "flex",
31
- justifyContent: "end"
32
- },
33
- children: /*#__PURE__*/_jsx(IconButton, {
34
- onClick: onClose,
32
+ children: /*#__PURE__*/_jsx(Grid, {
35
33
  style: {
36
- background: "rgba(255,255,255,0.5)"
34
+ display: "flex",
35
+ justifyContent: "end"
37
36
  },
38
- children: /*#__PURE__*/_jsx(CloseIcon, {})
37
+ children: /*#__PURE__*/_jsx(IconButton, {
38
+ onClick: onClose,
39
+ style: {
40
+ background: "rgba(255,255,255,0.5)"
41
+ },
42
+ children: /*#__PURE__*/_jsx(CloseIcon, {})
43
+ })
39
44
  })
40
45
  })
41
- })
42
- }), /*#__PURE__*/_jsx(DialogContent, {
43
- children: children
44
- })]
46
+ }), /*#__PURE__*/_jsx(DialogContent, {
47
+ children: children
48
+ })]
49
+ })
45
50
  }) : /*#__PURE__*/_jsx(ViewportStimulator, {
51
+ selectedTheme: selectedTheme,
46
52
  children: children
47
53
  });
48
54
  };
@@ -1342,21 +1342,29 @@ code.markcode {
1342
1342
  background-color: #f3f3f3;
1343
1343
  font-family: 'Source Code Pro' !important;
1344
1344
  }
1345
+
1345
1346
  /* Hide the popper when the reference is hidden */
1346
1347
  .hide-popper-on-overlap[data-popper-escaped],
1347
1348
  .hide-popper-on-overlap[data-popper-reference-hidden] {
1348
1349
  visibility: hidden;
1349
1350
  pointer-events: none;
1350
1351
  }
1351
- code.markcode {
1352
- border-radius: 4px;
1353
- padding: 6px 8px;
1354
- margin: 8px 0px;
1355
- display: block;
1356
- background-color: #f3f3f3;
1357
- font-family: 'Source Code Pro' !important;
1352
+
1353
+ .theme-buttons {
1354
+ display: flex;
1355
+ justify-content: end;
1356
+ align-items: center;
1357
+ margin: auto;
1358
+ position: absolute;
1359
+ top: 60px;
1360
+ right: 20px;
1361
+ z-index: 1000;
1362
+ }
1363
+
1364
+ .themePaintIcon:hover .iconBorder {
1365
+ fill: #2563EB;
1358
1366
  }
1359
1367
 
1360
1368
  .hyperLink {
1361
1369
  word-break: break-all;
1362
- }
1370
+ }
@@ -167,6 +167,7 @@ function PopoverAIInput({
167
167
  const [generatedText, setGeneratedText] = useState("");
168
168
  const [inputValue, setInputValue] = useState("");
169
169
  const [selectedOption, setSelectedOption] = useState();
170
+ const [threadId, setThreadId] = useState("");
170
171
  const selectedEleRef = useRef({});
171
172
  const classes = Styles();
172
173
  const editor = useSlate();
@@ -188,6 +189,7 @@ function PopoverAIInput({
188
189
  useEffect(() => {
189
190
  if (openAI) {
190
191
  scrollToAIInput(editor);
192
+ setThreadId("");
191
193
  }
192
194
  }, [openAI]);
193
195
  useEffect(() => {
@@ -196,8 +198,12 @@ function PopoverAIInput({
196
198
  const framePayload = (type, option) => {
197
199
  let payload = {
198
200
  mode: option.mode || 0,
199
- query: option?.inputValue || inputValue
201
+ query: option?.inputValue || inputValue,
202
+ useSession: true
200
203
  };
204
+ if (threadId) {
205
+ payload.threadId = threadId;
206
+ }
201
207
  if (option.mode === MODES.translate || option.mode === MODES.rephraseTone) {
202
208
  payload.textOptionInput = type;
203
209
  }
@@ -257,12 +263,14 @@ function PopoverAIInput({
257
263
  setLoading(false);
258
264
  setInputValue("");
259
265
  let {
260
- data: text
261
- } = result || {};
266
+ body: text,
267
+ threadId
268
+ } = result?.data || {};
262
269
  if (!text) {
263
270
  onClickOutside();
264
271
  return;
265
272
  }
273
+ setThreadId(threadId || "");
266
274
 
267
275
  // if (!option.replace) {
268
276
  if (type === "continue_writing") {
@@ -265,7 +265,7 @@ function AppHeader(props) {
265
265
  style: {
266
266
  display: "inline-flex",
267
267
  alignItems: "center",
268
- color: textColor,
268
+ color: textColor || "#000000",
269
269
  fontSize: logoFontSize,
270
270
  fontFamily: titleFontFamily,
271
271
  justifyContent: isLogoRight ? "end" : "start"
@@ -320,7 +320,7 @@ function AppHeader(props) {
320
320
  fontFamily: fontFamily,
321
321
  textTransform: "none",
322
322
  fontSize: fontSize || "16px",
323
- color: textColor || "#FFF",
323
+ color: textColor || "#000",
324
324
  background: bgColor || "none",
325
325
  "& .m-settings": {
326
326
  display: "none",
@@ -335,7 +335,7 @@ function AppHeader(props) {
335
335
  background: "#FFF"
336
336
  },
337
337
  "&:hover": {
338
- color: textColorHover || textColor || "#FFF",
338
+ color: textColorHover || textColor || "#000",
339
339
  background: bgColorHover || bgColor || "none",
340
340
  "& .m-settings": {
341
341
  display: "block"