@flozy/editor 9.5.7 → 9.5.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 (256) hide show
  1. package/dist/Editor/ChatEditor.js +26 -19
  2. package/dist/Editor/CommonEditor.js +139 -22
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +11 -7
  5. package/dist/Editor/Elements/AI/AIInput.js +5 -3
  6. package/dist/Editor/Elements/AI/CustomSelect.js +9 -5
  7. package/dist/Editor/Elements/AI/PopoverAIInput.js +4 -2
  8. package/dist/Editor/Elements/Accordion/Accordion.js +4 -3
  9. package/dist/Editor/Elements/Accordion/AccordionBtnPopup.js +4 -1
  10. package/dist/Editor/Elements/Accordion/AccordionButton.js +6 -2
  11. package/dist/Editor/Elements/Accordion/AccordionTitlePopup.js +4 -1
  12. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  13. package/dist/Editor/Elements/AppHeader/AppHeaderButton.js +6 -2
  14. package/dist/Editor/Elements/AppHeader/AppHeaderPopup.js +4 -1
  15. package/dist/Editor/Elements/Attachments/AttachmentsButton.js +4 -1
  16. package/dist/Editor/Elements/Button/ButtonPopup.js +4 -1
  17. package/dist/Editor/Elements/Button/ButtonToolIcon.js +6 -2
  18. package/dist/Editor/Elements/Button/EditorButton.js +31 -14
  19. package/dist/Editor/Elements/Carousel/Carousel.js +5 -4
  20. package/dist/Editor/Elements/Carousel/CarouselButton.js +6 -2
  21. package/dist/Editor/Elements/Carousel/CarouselItem.js +3 -2
  22. package/dist/Editor/Elements/ChipText/ChipTextPopup.js +4 -1
  23. package/dist/Editor/Elements/CodeToText/CodeToText.js +5 -4
  24. package/dist/Editor/Elements/CodeToText/HtmlContextMenu.js +6 -2
  25. package/dist/Editor/Elements/Color Picker/ColorButtons.js +60 -14
  26. package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
  27. package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
  28. package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
  29. package/dist/Editor/Elements/Colorbox/ColorboxButton.js +6 -2
  30. package/dist/Editor/Elements/DataView/DataView.js +5 -2
  31. package/dist/Editor/Elements/DataView/DataViewButton.js +6 -2
  32. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +7 -2
  33. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +425 -0
  34. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +4 -3
  35. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +25 -5
  36. package/dist/Editor/Elements/DataView/Layouts/DataTypes/TextType.js +7 -2
  37. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +13 -12
  38. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +7 -4
  39. package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +7 -5
  40. package/dist/Editor/Elements/DataView/Layouts/FilterView.js +9 -7
  41. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +8 -3
  42. package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +5 -3
  43. package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +6 -5
  44. package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +5 -3
  45. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +9 -7
  46. package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +64 -38
  47. package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +3 -2
  48. package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +3 -2
  49. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +23 -6
  50. package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +4 -1
  51. package/dist/Editor/Elements/DataView/Layouts/TableView.js +6 -4
  52. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
  53. package/dist/Editor/Elements/DataView/Layouts/index.js +3 -1
  54. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +5 -2
  55. package/dist/Editor/Elements/DataView/styles.js +13 -0
  56. package/dist/Editor/Elements/Divider/Divider.js +5 -3
  57. package/dist/Editor/Elements/Divider/DividerButton.js +6 -2
  58. package/dist/Editor/Elements/Divider/DividerPopup.js +3 -2
  59. package/dist/Editor/Elements/Embed/Embed.js +4 -1
  60. package/dist/Editor/Elements/Embed/EmbedPopup.js +4 -1
  61. package/dist/Editor/Elements/Embed/Image.js +16 -11
  62. package/dist/Editor/Elements/Embed/Video.js +9 -6
  63. package/dist/Editor/Elements/EmbedScript/Code.js +7 -4
  64. package/dist/Editor/Elements/EmbedScript/EmbedScript.js +6 -2
  65. package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +8 -5
  66. package/dist/Editor/Elements/Emoji/EmojiButton.js +6 -2
  67. package/dist/Editor/Elements/Form/FieldPopup.js +4 -1
  68. package/dist/Editor/Elements/Form/Form.js +12 -9
  69. package/dist/Editor/Elements/Form/FormButton.js +6 -2
  70. package/dist/Editor/Elements/Form/FormPopup.js +3 -2
  71. package/dist/Editor/Elements/Form/Workflow/FormWorkflow.js +18 -12
  72. package/dist/Editor/Elements/Form/Workflow/ListWorkflow.js +13 -8
  73. package/dist/Editor/Elements/Form/Workflow/MoreOptions.js +3 -2
  74. package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
  75. package/dist/Editor/Elements/Form/Workflow/UserInputs.js +4 -2
  76. package/dist/Editor/Elements/Form/Workflow/index.js +15 -9
  77. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +67 -23
  78. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +23 -4
  79. package/dist/Editor/Elements/FreeGrid/FreeGridButton.js +6 -2
  80. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +36 -5
  81. package/dist/Editor/Elements/FreeGrid/Options/AddElement.js +3 -2
  82. package/dist/Editor/Elements/FreeGrid/Options/More.js +10 -4
  83. package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
  84. package/dist/Editor/Elements/Grid/Grid.js +13 -10
  85. package/dist/Editor/Elements/Grid/GridButton.js +9 -5
  86. package/dist/Editor/Elements/Grid/GridItem.js +14 -8
  87. package/dist/Editor/Elements/Grid/GridItemPopup.js +4 -1
  88. package/dist/Editor/Elements/Grid/GridPopup.js +4 -1
  89. package/dist/Editor/Elements/Grid/SectionPopup.js +4 -1
  90. package/dist/Editor/Elements/Link/Link.js +8 -5
  91. package/dist/Editor/Elements/Link/LinkButton.js +4 -1
  92. package/dist/Editor/Elements/List/CheckList.js +14 -9
  93. package/dist/Editor/Elements/NewLine/NewLineButton.js +6 -2
  94. package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +4 -1
  95. package/dist/Editor/Elements/PageSettings/PageSettingsPopup.js +4 -1
  96. package/dist/Editor/Elements/Search/SearchButton.js +6 -3
  97. package/dist/Editor/Elements/Search/SearchList.js +7 -3
  98. package/dist/Editor/Elements/Signature/SignatureButton.js +6 -2
  99. package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +6 -2
  100. package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +4 -1
  101. package/dist/Editor/Elements/Signature/SignaturePopup.js +17 -16
  102. package/dist/Editor/Elements/SimpleText/index.js +5 -4
  103. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  104. package/dist/Editor/Elements/Table/DragButton.js +4 -2
  105. package/dist/Editor/Elements/Table/Table.js +23 -11
  106. package/dist/Editor/Elements/Table/TableCell.js +2 -24
  107. package/dist/Editor/Elements/Table/TablePopup.js +4 -1
  108. package/dist/Editor/Elements/Table/TableSelector.js +10 -6
  109. package/dist/Editor/Elements/Table/TableTool.js +8 -4
  110. package/dist/Editor/Elements/Title/title.js +10 -0
  111. package/dist/Editor/Elements/TopBanner/TopBannerButton.js +4 -1
  112. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  113. package/dist/Editor/MiniEditor.js +10 -3
  114. package/dist/Editor/Styles/EditorStyles.js +5 -5
  115. package/dist/Editor/Toolbar/Basic/index.js +2 -1
  116. package/dist/Editor/Toolbar/FormatTools/BlockButton.js +6 -2
  117. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  118. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  119. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +8 -4
  120. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  121. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +5 -3
  122. package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +10 -5
  123. package/dist/Editor/Toolbar/PopupTool/ButtonTemplatesCard.js +10 -4
  124. package/dist/Editor/Toolbar/PopupTool/FullViewCard.js +10 -4
  125. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +9 -3
  126. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +42 -35
  127. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  128. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +58 -51
  129. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectSuperSubscript.js +29 -22
  130. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +226 -87
  131. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +20 -10
  132. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +10 -5
  133. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +71 -11
  134. package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +11 -5
  135. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +122 -42
  136. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +436 -0
  137. package/dist/Editor/Toolbar/PopupTool/index.js +18 -8
  138. package/dist/Editor/Toolbar/Toolbar.js +20 -10
  139. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  140. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  141. package/dist/Editor/assets/svg/ThemeIcons.js +291 -0
  142. package/dist/Editor/common/ColorPickerButton.js +39 -14
  143. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  144. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  145. package/dist/Editor/common/CustomDialog/index.js +8 -10
  146. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  147. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  148. package/dist/Editor/common/CustomSelect.js +43 -0
  149. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  150. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  151. package/dist/Editor/common/Icon.js +46 -1
  152. package/dist/Editor/common/ImageSelector/ImageSelector.js +10 -8
  153. package/dist/Editor/common/ImageSelector/Options/AddLink.js +6 -4
  154. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  155. package/dist/Editor/common/LinkSettings/NavComponents.js +14 -10
  156. package/dist/Editor/common/LinkSettings/index.js +20 -14
  157. package/dist/Editor/common/LinkSettings/navOptions.js +1 -1
  158. package/dist/Editor/common/MentionsPopup/index.js +6 -2
  159. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +22 -22
  160. package/dist/Editor/common/RnD/ContextMenu/index.js +3 -2
  161. package/dist/Editor/common/RnD/ElementOptions/index.js +7 -2
  162. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/SaveAsTemplate.js +8 -3
  163. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +7 -3
  164. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  165. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  166. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  167. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  168. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +7 -4
  169. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  170. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  171. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +6 -2
  172. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  173. package/dist/Editor/common/RnD/OptionsPopup/index.js +4 -3
  174. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +11 -4
  175. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  176. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +20 -8
  177. package/dist/Editor/common/RnD/Utils/gridDropItem.js +56 -7
  178. package/dist/Editor/common/RnD/Utils/index.js +3 -0
  179. package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +117 -0
  180. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
  181. package/dist/Editor/common/RnD/VirtualElement/helper.js +281 -0
  182. package/dist/Editor/common/RnD/VirtualElement/index.js +188 -105
  183. package/dist/Editor/common/RnD/VirtualElement/styles.js +123 -7
  184. package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
  185. package/dist/Editor/common/RnD/index.js +59 -7
  186. package/dist/Editor/common/Section/index.js +7 -4
  187. package/dist/Editor/common/Shorthands/elements.js +74 -3
  188. package/dist/Editor/common/SnackBar/index.js +43 -0
  189. package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +4 -4
  190. package/dist/Editor/common/StyleBuilder/boxStyle.js +2 -2
  191. package/dist/Editor/common/StyleBuilder/buttonStyle.js +6 -4
  192. package/dist/Editor/common/StyleBuilder/dividerStyles.js +2 -2
  193. package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +6 -6
  194. package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -2
  195. package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +13 -9
  196. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +11 -3
  197. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +19 -5
  198. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +22 -10
  199. package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +6 -3
  200. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +27 -13
  201. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +43 -14
  202. package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +10 -6
  203. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +19 -6
  204. package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +6 -2
  205. package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +5 -2
  206. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +9 -6
  207. package/dist/Editor/common/StyleBuilder/fieldTypes/metaDataMapping.js +8 -2
  208. package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +12 -11
  209. package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +6 -2
  210. package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -4
  211. package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +6 -2
  212. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +21 -12
  213. package/dist/Editor/common/StyleBuilder/formStyle.js +7 -7
  214. package/dist/Editor/common/StyleBuilder/gridItemStyle.js +6 -6
  215. package/dist/Editor/common/StyleBuilder/gridStyle.js +5 -5
  216. package/dist/Editor/common/StyleBuilder/index.js +8 -5
  217. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  218. package/dist/Editor/common/Uploader.js +16 -5
  219. package/dist/Editor/commonStyle.js +68 -57
  220. package/dist/Editor/helper/index.js +35 -15
  221. package/dist/Editor/helper/textIndeces.js +58 -0
  222. package/dist/Editor/helper/theme.js +202 -2
  223. package/dist/Editor/hooks/useAutoScroll.js +38 -0
  224. package/dist/Editor/hooks/useDrag.js +16 -10
  225. package/dist/Editor/hooks/useEditorScroll.js +10 -5
  226. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  227. package/dist/Editor/hooks/useMouseMove.js +25 -13
  228. package/dist/Editor/hooks/useTable.js +1 -1
  229. package/dist/Editor/hooks/useThemeValues.js +63 -0
  230. package/dist/Editor/plugins/withEmbeds.js +1 -1
  231. package/dist/Editor/plugins/withHTML.js +10 -7
  232. package/dist/Editor/plugins/withLayout.js +3 -2
  233. package/dist/Editor/plugins/withTable.js +1 -1
  234. package/dist/Editor/theme/ThemeList.js +50 -173
  235. package/dist/Editor/theme/index.js +149 -0
  236. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  237. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  238. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  239. package/dist/Editor/themeSettings/colorTheme/index.js +310 -0
  240. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  241. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  242. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  243. package/dist/Editor/themeSettings/fonts/style.js +61 -0
  244. package/dist/Editor/themeSettings/icons.js +60 -0
  245. package/dist/Editor/themeSettings/index.js +351 -0
  246. package/dist/Editor/themeSettings/style.js +220 -0
  247. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  248. package/dist/Editor/themeSettingsAI/index.js +355 -0
  249. package/dist/Editor/themeSettingsAI/saveTheme.js +205 -0
  250. package/dist/Editor/themeSettingsAI/style.js +259 -0
  251. package/dist/Editor/utils/SlateUtilityFunctions.js +167 -48
  252. package/dist/Editor/utils/draftToSlate.js +3 -2
  253. package/dist/Editor/utils/font.js +40 -37
  254. package/dist/Editor/utils/freegrid.js +2 -2
  255. package/dist/Editor/utils/helper.js +90 -19
  256. package/package.json +2 -2
@@ -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: "",
@@ -164,7 +218,10 @@ const ELEMENTS_LIST = [{
164
218
  type: "emoji",
165
219
  renderComponent: rest => /*#__PURE__*/_jsx(EmojiButton, {
166
220
  ...rest,
167
- icoBtnType: "cmd"
221
+ icoBtnType: "cmd",
222
+ customProps: {
223
+ ...rest
224
+ }
168
225
  })
169
226
  }, {
170
227
  name: "Brain",
@@ -176,7 +233,10 @@ const ELEMENTS_LIST = [{
176
233
  element: {
177
234
  name: "Brain"
178
235
  },
179
- icoBtnType: "cmd"
236
+ icoBtnType: "cmd",
237
+ customProps: {
238
+ ...rest
239
+ }
180
240
  })
181
241
  }, {
182
242
  name: "Divider",
@@ -299,10 +359,21 @@ const elements = props => {
299
359
  const {
300
360
  search,
301
361
  hideTools,
362
+ translation,
302
363
  editor
303
364
  } = props;
304
365
  const nodeType = canOpen(editor);
305
- const filteredElements = ELEMENTS_LIST.filter(f => (hideTools || []).indexOf(f.type) === -1 && (!f?.hideFor || f?.hideFor?.indexOf(nodeType) === -1));
366
+ const translatedElements = ELEMENTS_LIST.map(element => ({
367
+ ...element,
368
+ name: translation(element.name),
369
+ renderComponent: element.renderComponent ? rest => {
370
+ return element.renderComponent({
371
+ ...rest,
372
+ translation
373
+ });
374
+ } : undefined
375
+ }));
376
+ const filteredElements = translatedElements.filter(f => (hideTools || []).indexOf(f.type) === -1 && (!f?.hideFor || f?.hideFor?.indexOf(nodeType) === -1));
306
377
  return filteredElements.filter(c => c.name.toLowerCase().includes(search?.toLowerCase()));
307
378
  };
308
379
  export default elements;
@@ -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;
@@ -15,12 +15,12 @@ const appHeaderStyle = [{
15
15
  options: fontOptions,
16
16
  webFont: true,
17
17
  width: 7,
18
- renderOption: option => {
18
+ renderOption: (option, elementProps, translation) => {
19
19
  return /*#__PURE__*/_jsx("span", {
20
20
  style: {
21
21
  fontFamily: option.value
22
22
  },
23
- children: "LOGO"
23
+ children: translation("LOGO")
24
24
  });
25
25
  }
26
26
  }, {
@@ -58,12 +58,12 @@ const appHeaderStyle = [{
58
58
  webFont: true,
59
59
  width: 7,
60
60
  options: fontOptions,
61
- renderOption: option => {
61
+ renderOption: (option, elementProps, translation) => {
62
62
  return /*#__PURE__*/_jsx("span", {
63
63
  style: {
64
64
  fontFamily: option.value
65
65
  },
66
- children: "Home"
66
+ children: translation("Home")
67
67
  });
68
68
  }
69
69
  }, {
@@ -51,9 +51,9 @@ const boxStyle = [{
51
51
  text: "Dashed",
52
52
  value: "dashed"
53
53
  }],
54
- renderOption: option => {
54
+ renderOption: (option, elementProps, translation) => {
55
55
  return /*#__PURE__*/_jsx("span", {
56
- children: option.text
56
+ children: translation(option.text)
57
57
  });
58
58
  }
59
59
  }]
@@ -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",
@@ -104,9 +106,9 @@ const buttonStyle = [{
104
106
  text: "Dashed",
105
107
  value: "dashed"
106
108
  }],
107
- renderOption: option => {
109
+ renderOption: (option, elementProps, translation) => {
108
110
  return /*#__PURE__*/_jsx("span", {
109
- children: option.text
111
+ children: translation(option.text)
110
112
  });
111
113
  }
112
114
  }]
@@ -46,9 +46,9 @@ const dividerStyle = [{
46
46
  text: "Outset",
47
47
  value: "outset"
48
48
  }],
49
- renderOption: option => {
49
+ renderOption: (option, lementProps, translation) => {
50
50
  return /*#__PURE__*/_jsx("span", {
51
- children: option.text
51
+ children: translation(option.text)
52
52
  });
53
53
  }
54
54
  }]
@@ -16,18 +16,18 @@ const embedVideoStyle = [{
16
16
  key: "aspectRatio",
17
17
  type: "textOptions",
18
18
  options: [{
19
- text: "16:9 (Default)",
19
+ text: "deafultRatio",
20
20
  value: "16 / 9"
21
21
  }, {
22
- text: "9:16",
22
+ text: "nineSixteen",
23
23
  value: "9 / 16"
24
24
  }, {
25
25
  text: "Custom",
26
26
  value: "custom"
27
27
  }],
28
- renderOption: option => {
28
+ renderOption: (option, elementProps, translation) => {
29
29
  return /*#__PURE__*/_jsx("span", {
30
- children: option.text
30
+ children: translation(option.text)
31
31
  });
32
32
  }
33
33
  }]
@@ -78,9 +78,9 @@ const embedVideoStyle = [{
78
78
  text: "Dashed",
79
79
  value: "dashed"
80
80
  }],
81
- renderOption: option => {
81
+ renderOption: (option, elementProps, translation) => {
82
82
  return /*#__PURE__*/_jsx("span", {
83
- children: option.text
83
+ children: translation(option.text)
84
84
  });
85
85
  }
86
86
  }]
@@ -57,9 +57,9 @@ const fieldStyle = [{
57
57
  text: "Dashed",
58
58
  value: "dashed"
59
59
  }],
60
- renderOption: option => {
60
+ renderOption: (option, elementProps, translation) => {
61
61
  return /*#__PURE__*/_jsx("span", {
62
- children: option.text
62
+ children: translation(option.text)
63
63
  });
64
64
  }
65
65
  }]
@@ -8,8 +8,12 @@ const Alignment = props => {
8
8
  const {
9
9
  value,
10
10
  data,
11
- onChange
11
+ onChange,
12
+ customProps
12
13
  } = props;
14
+ const {
15
+ translation
16
+ } = customProps;
13
17
  const {
14
18
  key
15
19
  } = data;
@@ -36,7 +40,7 @@ const Alignment = props => {
36
40
  fontSize: "14px",
37
41
  fontWeight: 500
38
42
  },
39
- children: "Alignment"
43
+ children: translation("Alignment")
40
44
  })
41
45
  }), /*#__PURE__*/_jsxs("div", {
42
46
  style: {
@@ -53,21 +57,21 @@ const Alignment = props => {
53
57
  display: "flex"
54
58
  },
55
59
  children: [/*#__PURE__*/_jsx(Tooltip, {
56
- title: "Align Left",
60
+ title: translation("Align Left"),
57
61
  children: /*#__PURE__*/_jsx(FormControlLabel, {
58
62
  value: "start",
59
63
  control: /*#__PURE__*/_jsx(Radio, {}),
60
64
  label: /*#__PURE__*/_jsx(JustifyStartIcon, {})
61
65
  })
62
66
  }), /*#__PURE__*/_jsx(Tooltip, {
63
- title: "Align Center",
67
+ title: translation("Align Center"),
64
68
  children: /*#__PURE__*/_jsx(FormControlLabel, {
65
69
  value: "center",
66
70
  control: /*#__PURE__*/_jsx(Radio, {}),
67
71
  label: /*#__PURE__*/_jsx(JustifyCenterIcon, {})
68
72
  })
69
73
  }), /*#__PURE__*/_jsx(Tooltip, {
70
- title: "Align Right",
74
+ title: translation("Align Right"),
71
75
  children: /*#__PURE__*/_jsx(FormControlLabel, {
72
76
  value: "end",
73
77
  control: /*#__PURE__*/_jsx(Radio, {}),
@@ -85,21 +89,21 @@ const Alignment = props => {
85
89
  display: "flex"
86
90
  },
87
91
  children: [/*#__PURE__*/_jsx(Tooltip, {
88
- title: "Align Top",
92
+ title: translation("Align Top"),
89
93
  children: /*#__PURE__*/_jsx(FormControlLabel, {
90
94
  value: "start",
91
95
  control: /*#__PURE__*/_jsx(Radio, {}),
92
96
  label: /*#__PURE__*/_jsx(AlignStartIcon, {})
93
97
  })
94
98
  }), /*#__PURE__*/_jsx(Tooltip, {
95
- title: "Align Middle",
99
+ title: translation("Align Middle"),
96
100
  children: /*#__PURE__*/_jsx(FormControlLabel, {
97
101
  value: "center",
98
102
  control: /*#__PURE__*/_jsx(Radio, {}),
99
103
  label: /*#__PURE__*/_jsx(AlignCenterIcon, {})
100
104
  })
101
105
  }), /*#__PURE__*/_jsx(Tooltip, {
102
- title: "Align Bottom",
106
+ title: translation("Align Bottom"),
103
107
  children: /*#__PURE__*/_jsx(FormControlLabel, {
104
108
  value: "end",
105
109
  control: /*#__PURE__*/_jsx(Radio, {}),
@@ -122,7 +126,7 @@ const Alignment = props => {
122
126
  fontSize: "14px",
123
127
  fontWeight: 500
124
128
  },
125
- children: "Direction"
129
+ children: translation("Direction")
126
130
  })
127
131
  }), /*#__PURE__*/_jsxs(RadioGroup, {
128
132
  row: true,
@@ -13,6 +13,9 @@ const BackgroundImage = props => {
13
13
  customProps,
14
14
  onChange
15
15
  } = props;
16
+ const {
17
+ translation
18
+ } = customProps;
16
19
  const {
17
20
  key
18
21
  } = data;
@@ -52,7 +55,7 @@ const BackgroundImage = props => {
52
55
  fontWeight: "500",
53
56
  marginBottom: "8px"
54
57
  },
55
- children: "Upload Image"
58
+ children: translation("Upload Image")
56
59
  }), /*#__PURE__*/_jsx(Grid, {
57
60
  container: true,
58
61
  sx: classes.uploadContainer,
@@ -70,9 +73,14 @@ const BackgroundImage = props => {
70
73
  children: base64 ? /*#__PURE__*/_jsx(Grid, {
71
74
  className: "removeImageText",
72
75
  onClick: onRemoveBG,
73
- children: "REMOVE"
76
+ children: translation("REMOVE")
74
77
  }) : /*#__PURE__*/_jsx(Grid, {
75
78
  className: "uploadImageText",
79
+ sx: {
80
+ padding: 0,
81
+ background: `${theme?.palette?.editor?.inputFieldBgColor}`,
82
+ border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`
83
+ },
76
84
  children: /*#__PURE__*/_jsxs(Button, {
77
85
  component: "label",
78
86
  variant: "text",
@@ -87,7 +95,7 @@ const BackgroundImage = props => {
87
95
  style: {
88
96
  paddingLeft: "8px"
89
97
  },
90
- children: "Upload a image"
98
+ children: translation("Upload a image")
91
99
  })]
92
100
  })
93
101
  })
@@ -3,23 +3,37 @@ import { Checkbox, FormControlLabel, Grid, Slider, Typography, Box, IconButton }
3
3
  import { squreStyle } from "./radiusStyle";
4
4
  import { getBreakPointsValue } from "../../../helper/theme";
5
5
  import useWindowResize from "../../../hooks/useWindowResize";
6
+ import { useEditorTheme } from "../../../hooks/useEditorTheme";
6
7
  import { CheckedBoxCheckIcon } from "../../iconListV2";
7
8
  import { jsx as _jsx } from "react/jsx-runtime";
8
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
9
10
  const BANNER_SPACING_KEYS = ["top", "left", "right", "bottom"];
10
11
  const BannerSpacing = props => {
11
12
  const {
12
- value: val,
13
13
  data,
14
14
  onChange,
15
15
  elementProps,
16
- classes
16
+ classes,
17
+ customProps
17
18
  } = props;
19
+ const {
20
+ translation
21
+ } = customProps;
18
22
  const {
19
23
  key
20
24
  } = data;
21
25
  const lockKeyVal = `lock${key}`;
22
- let lockSpacing = elementProps[lockKeyVal];
26
+ const {
27
+ selectedTheme
28
+ } = useEditorTheme();
29
+ const {
30
+ bannerSpacing,
31
+ lockbannerSpacing
32
+ } = selectedTheme?.elementProps?.button || {};
33
+ const isUserValue = Object.keys(props?.value || {})?.length;
34
+ const isUserLockedSpacing = typeof elementProps[lockKeyVal] === "boolean";
35
+ const val = isUserValue ? props?.value : bannerSpacing;
36
+ let lockSpacing = isUserLockedSpacing ? elementProps[lockKeyVal] : lockbannerSpacing;
23
37
  if (lockSpacing === undefined) {
24
38
  lockSpacing = true;
25
39
  }
@@ -63,7 +77,7 @@ const BannerSpacing = props => {
63
77
  fontSize: "14px",
64
78
  fontWeight: 500
65
79
  },
66
- children: data?.label
80
+ children: translation(data?.label)
67
81
  }), /*#__PURE__*/_jsxs(Grid, {
68
82
  container: true,
69
83
  wrap: "nowrap",
@@ -126,7 +140,7 @@ const BannerSpacing = props => {
126
140
  sx: {
127
141
  fontSize: "14px"
128
142
  },
129
- children: "Customize"
143
+ children: translation("Customize")
130
144
  })
131
145
  }), !lockSpacing ? /*#__PURE__*/_jsx(Grid, {
132
146
  container: true,
@@ -3,28 +3,40 @@ import { Grid, Typography, Slider, FormControlLabel, Checkbox, Box, IconButton }
3
3
  import { radiusStyle } from "./radiusStyle";
4
4
  import useWindowResize from "../../../hooks/useWindowResize";
5
5
  import { getBreakPointsValue, getCustomizationValue } from "../../../helper/theme";
6
+ import { useEditorTheme } from "../../../hooks/useEditorTheme";
6
7
  import { CheckedBoxCheckIcon } from "../../iconListV2";
7
8
  import { jsx as _jsx } from "react/jsx-runtime";
8
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
9
10
  const BORDER_RADIUS_KEYS = ["topLeft", "topRight", "bottomLeft", "bottomRight"];
10
11
  const BorderRadius = props => {
11
12
  const {
12
- value: val,
13
13
  data,
14
14
  onChange,
15
15
  elementProps,
16
- classes
16
+ classes,
17
+ customProps
17
18
  } = props;
18
- let {
19
- lockRadius
20
- } = elementProps;
21
- if (lockRadius === undefined) {
22
- lockRadius = true;
23
- }
19
+ const {
20
+ translation
21
+ } = customProps;
24
22
  const {
25
23
  key
26
24
  } = data;
27
25
  const [size] = useWindowResize();
26
+ const {
27
+ selectedTheme
28
+ } = useEditorTheme();
29
+ const {
30
+ borderRadius,
31
+ lockRadius: themeLockRadius
32
+ } = selectedTheme?.elementProps?.button || {};
33
+ const isUserValue = Object.keys(props?.value || {})?.length;
34
+ const isUserLockedRadius = typeof elementProps?.lockRadius === "boolean";
35
+ const val = isUserValue ? props?.value : borderRadius;
36
+ let lockRadius = isUserLockedRadius ? elementProps?.lockRadius : themeLockRadius;
37
+ if (lockRadius === undefined) {
38
+ lockRadius = true;
39
+ }
28
40
  const value = getBreakPointsValue(val, size?.device);
29
41
  const handleChange = e => {
30
42
  let changeAll = {};
@@ -60,7 +72,7 @@ const BorderRadius = props => {
60
72
  fontSize: "14px",
61
73
  fontWeight: 500
62
74
  },
63
- children: data?.label
75
+ children: translation(data?.label)
64
76
  }), /*#__PURE__*/_jsxs(Grid, {
65
77
  container: true,
66
78
  wrap: "nowrap",
@@ -113,7 +125,7 @@ const BorderRadius = props => {
113
125
  sx: {
114
126
  fontSize: "14px"
115
127
  },
116
- children: "Customize"
128
+ children: translation("Customize")
117
129
  })
118
130
  }), !lockRadius ? /*#__PURE__*/_jsx(Grid, {
119
131
  container: true,
@@ -14,6 +14,9 @@ const ButtonLink = props => {
14
14
  const {
15
15
  key
16
16
  } = data;
17
+ const {
18
+ translation
19
+ } = customProps;
17
20
  const {
18
21
  metadata
19
22
  } = customProps || {
@@ -76,7 +79,7 @@ const ButtonLink = props => {
76
79
  fontWeight: 500
77
80
  },
78
81
  id: "demo-radio-buttons-group-label",
79
- children: "Where do you want to Link?"
82
+ children: translation("whereToLinkText")
80
83
  }), /*#__PURE__*/_jsxs(RadioGroup, {
81
84
  row: true,
82
85
  "aria-labelledby": "demo-radio-buttons-group-label",
@@ -93,7 +96,7 @@ const ButtonLink = props => {
93
96
  style: {
94
97
  fontSize: "14px"
95
98
  },
96
- children: "Next Step"
99
+ children: translation("nextStep")
97
100
  })
98
101
  }), /*#__PURE__*/_jsx(FormControlLabel, {
99
102
  value: "webAddress",
@@ -104,7 +107,7 @@ const ButtonLink = props => {
104
107
  style: {
105
108
  fontSize: "14px"
106
109
  },
107
- children: "Web Address"
110
+ children: translation("webAddress")
108
111
  })
109
112
  })]
110
113
  })]
@@ -1,6 +1,7 @@
1
1
  import { Box, Card, Checkbox, FormControlLabel, Grid, Tooltip, Typography } from "@mui/material";
2
2
  import React from "react";
3
3
  import Icon from "../../Icon";
4
+ import { useEditorContext } from "../../../hooks/useMouseMove";
4
5
  import { jsx as _jsx } from "react/jsx-runtime";
5
6
  import { Fragment as _Fragment } from "react/jsx-runtime";
6
7
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -10,18 +11,22 @@ const RenderCard = ({
10
11
  title,
11
12
  content,
12
13
  infoIcon,
13
- classes
14
+ classes,
15
+ translation
14
16
  }) => {
15
17
  return /*#__PURE__*/_jsx(Card, {
16
18
  sx: {
17
- position: 'relative',
18
- padding: "10px"
19
+ position: "relative",
20
+ padding: "10px",
21
+ "& .MuiCheckbox-root svg": {
22
+ fill: "unset !important"
23
+ }
19
24
  },
20
25
  children: /*#__PURE__*/_jsx(FormControlLabel, {
21
26
  control: /*#__PURE__*/_jsx(Checkbox, {
22
27
  sx: {
23
28
  padding: 0,
24
- marginTop: '3px'
29
+ marginTop: "3px"
25
30
  },
26
31
  onChange: handleChange,
27
32
  checked: value,
@@ -47,9 +52,9 @@ const RenderCard = ({
47
52
  style: {
48
53
  fontWeight: `500 !important`
49
54
  },
50
- children: title
55
+ children: translation(title)
51
56
  }), /*#__PURE__*/_jsx(Tooltip, {
52
- title: content,
57
+ title: translation(content),
53
58
  children: infoIcon && content && /*#__PURE__*/_jsx("span", {
54
59
  children: infoIcon
55
60
  })
@@ -57,10 +62,10 @@ const RenderCard = ({
57
62
  })
58
63
  }),
59
64
  sx: {
60
- width: '100%',
61
- display: 'flex',
62
- justifyContent: 'space-between',
63
- alignItems: 'flex-start',
65
+ width: "100%",
66
+ display: "flex",
67
+ justifyContent: "space-between",
68
+ alignItems: "flex-start",
64
69
  margin: 0
65
70
  },
66
71
  labelPlacement: "start"
@@ -72,7 +77,8 @@ const CardsMapping = props => {
72
77
  value,
73
78
  data,
74
79
  onChange,
75
- classes
80
+ classes,
81
+ customProps
76
82
  } = props;
77
83
  const {
78
84
  key,
@@ -81,6 +87,12 @@ const CardsMapping = props => {
81
87
  selectedCard,
82
88
  infoIcon
83
89
  } = data;
90
+ const {
91
+ theme
92
+ } = useEditorContext();
93
+ const {
94
+ translation
95
+ } = customProps;
84
96
  const activeCard = value === selectedCard;
85
97
  const handleChange = e => {
86
98
  if (selectedCard === data?.value) {
@@ -99,7 +111,8 @@ const CardsMapping = props => {
99
111
  sx: {
100
112
  marginBottom: "12px",
101
113
  "& .MuiPaper-root": {
102
- border: activeCard ? "1px solid #2563EB" : "1px solid #C8D8FA",
114
+ background: theme?.palette?.editor?.miniToolBarBackground,
115
+ border: activeCard ? "1px solid #2563EB" : `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
103
116
  borderRadius: "8px",
104
117
  boxShadow: activeCard ? "0px 4px 16px 0px #2563EB40" : "unset"
105
118
  }
@@ -110,7 +123,8 @@ const CardsMapping = props => {
110
123
  title: label,
111
124
  content: content,
112
125
  infoIcon: infoIcon,
113
- classes: classes
126
+ classes: classes,
127
+ translation: translation
114
128
  })
115
129
  });
116
130
  };