@flozy/editor 9.1.4 → 9.1.5

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 (160) hide show
  1. package/dist/Editor/ChatEditor.js +14 -7
  2. package/dist/Editor/CommonEditor.js +20 -9
  3. package/dist/Editor/Elements/AI/AIInput.js +5 -3
  4. package/dist/Editor/Elements/AI/CustomSelect.js +9 -5
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +4 -2
  6. package/dist/Editor/Elements/Accordion/Accordion.js +4 -3
  7. package/dist/Editor/Elements/Accordion/AccordionBtnPopup.js +4 -1
  8. package/dist/Editor/Elements/Accordion/AccordionButton.js +6 -2
  9. package/dist/Editor/Elements/Accordion/AccordionTitlePopup.js +4 -1
  10. package/dist/Editor/Elements/AppHeader/AppHeaderButton.js +6 -2
  11. package/dist/Editor/Elements/AppHeader/AppHeaderPopup.js +4 -1
  12. package/dist/Editor/Elements/Attachments/AttachmentsButton.js +4 -1
  13. package/dist/Editor/Elements/Button/ButtonPopup.js +4 -1
  14. package/dist/Editor/Elements/Button/ButtonToolIcon.js +6 -2
  15. package/dist/Editor/Elements/Button/EditorButton.js +6 -5
  16. package/dist/Editor/Elements/Carousel/Carousel.js +5 -4
  17. package/dist/Editor/Elements/Carousel/CarouselButton.js +6 -2
  18. package/dist/Editor/Elements/Carousel/CarouselItem.js +3 -2
  19. package/dist/Editor/Elements/ChipText/ChipTextPopup.js +4 -1
  20. package/dist/Editor/Elements/CodeToText/CodeToText.js +5 -4
  21. package/dist/Editor/Elements/CodeToText/HtmlContextMenu.js +6 -2
  22. package/dist/Editor/Elements/Colorbox/ColorboxButton.js +6 -2
  23. package/dist/Editor/Elements/DataView/DataView.js +5 -2
  24. package/dist/Editor/Elements/DataView/DataViewButton.js +6 -2
  25. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/ChooseSort.js +13 -12
  26. package/dist/Editor/Elements/DataView/Layouts/FilterSort/SortOptions/index.js +7 -4
  27. package/dist/Editor/Elements/DataView/Layouts/FilterSort/index.js +7 -5
  28. package/dist/Editor/Elements/DataView/Layouts/FilterView.js +9 -7
  29. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +3 -2
  30. package/dist/Editor/Elements/DataView/Layouts/Options/AddProperty.js +5 -3
  31. package/dist/Editor/Elements/DataView/Layouts/Options/AllProperties.js +6 -5
  32. package/dist/Editor/Elements/DataView/Layouts/Options/ChangeProperty.js +5 -3
  33. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +7 -6
  34. package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +15 -12
  35. package/dist/Editor/Elements/DataView/Layouts/Options/FilterProperty.js +3 -2
  36. package/dist/Editor/Elements/DataView/Layouts/Options/PropertyList.js +3 -2
  37. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +12 -6
  38. package/dist/Editor/Elements/DataView/Layouts/TableView.js +6 -4
  39. package/dist/Editor/Elements/DataView/Layouts/index.js +3 -1
  40. package/dist/Editor/Elements/DataView/Providers/DataViewProvider.js +5 -2
  41. package/dist/Editor/Elements/Divider/Divider.js +5 -3
  42. package/dist/Editor/Elements/Divider/DividerButton.js +6 -2
  43. package/dist/Editor/Elements/Divider/DividerPopup.js +3 -2
  44. package/dist/Editor/Elements/Embed/Embed.js +4 -1
  45. package/dist/Editor/Elements/Embed/EmbedPopup.js +4 -1
  46. package/dist/Editor/Elements/Embed/Image.js +14 -9
  47. package/dist/Editor/Elements/Embed/Video.js +10 -7
  48. package/dist/Editor/Elements/EmbedScript/Code.js +7 -4
  49. package/dist/Editor/Elements/EmbedScript/EmbedScript.js +6 -2
  50. package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +8 -5
  51. package/dist/Editor/Elements/Emoji/EmojiButton.js +6 -2
  52. package/dist/Editor/Elements/Form/FieldPopup.js +4 -1
  53. package/dist/Editor/Elements/Form/Form.js +12 -9
  54. package/dist/Editor/Elements/Form/FormButton.js +6 -2
  55. package/dist/Editor/Elements/Form/FormPopup.js +3 -2
  56. package/dist/Editor/Elements/Form/Workflow/FormWorkflow.js +18 -12
  57. package/dist/Editor/Elements/Form/Workflow/ListWorkflow.js +13 -8
  58. package/dist/Editor/Elements/Form/Workflow/MoreOptions.js +3 -2
  59. package/dist/Editor/Elements/Form/Workflow/UserInputs.js +4 -2
  60. package/dist/Editor/Elements/Form/Workflow/index.js +15 -9
  61. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +21 -4
  62. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +4 -1
  63. package/dist/Editor/Elements/FreeGrid/FreeGridButton.js +6 -2
  64. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +6 -2
  65. package/dist/Editor/Elements/FreeGrid/Options/AddElement.js +3 -2
  66. package/dist/Editor/Elements/FreeGrid/Options/More.js +4 -3
  67. package/dist/Editor/Elements/Grid/Grid.js +13 -10
  68. package/dist/Editor/Elements/Grid/GridButton.js +9 -5
  69. package/dist/Editor/Elements/Grid/GridItem.js +13 -7
  70. package/dist/Editor/Elements/Grid/GridItemPopup.js +4 -1
  71. package/dist/Editor/Elements/Grid/GridPopup.js +4 -1
  72. package/dist/Editor/Elements/Grid/SectionPopup.js +4 -1
  73. package/dist/Editor/Elements/Link/Link.js +8 -5
  74. package/dist/Editor/Elements/Link/LinkButton.js +4 -1
  75. package/dist/Editor/Elements/List/CheckList.js +14 -9
  76. package/dist/Editor/Elements/NewLine/NewLineButton.js +6 -2
  77. package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +4 -1
  78. package/dist/Editor/Elements/PageSettings/PageSettingsPopup.js +4 -1
  79. package/dist/Editor/Elements/Search/SearchButton.js +6 -3
  80. package/dist/Editor/Elements/Search/SearchList.js +7 -3
  81. package/dist/Editor/Elements/Signature/SignatureButton.js +6 -2
  82. package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +6 -2
  83. package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +4 -1
  84. package/dist/Editor/Elements/Signature/SignaturePopup.js +17 -16
  85. package/dist/Editor/Elements/SimpleText/index.js +5 -4
  86. package/dist/Editor/Elements/Table/DragButton.js +4 -2
  87. package/dist/Editor/Elements/Table/Table.js +13 -5
  88. package/dist/Editor/Elements/Table/TablePopup.js +4 -1
  89. package/dist/Editor/Elements/Table/TableSelector.js +10 -6
  90. package/dist/Editor/Elements/Table/TableTool.js +8 -4
  91. package/dist/Editor/Elements/TopBanner/TopBannerButton.js +4 -1
  92. package/dist/Editor/MiniEditor.js +9 -3
  93. package/dist/Editor/Toolbar/Basic/index.js +2 -1
  94. package/dist/Editor/Toolbar/FormatTools/BlockButton.js +6 -2
  95. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +6 -2
  96. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +5 -3
  97. package/dist/Editor/Toolbar/PopupTool/AddTemplates.js +10 -5
  98. package/dist/Editor/Toolbar/PopupTool/ButtonTemplatesCard.js +10 -4
  99. package/dist/Editor/Toolbar/PopupTool/FullViewCard.js +10 -4
  100. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +6 -2
  101. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectAlignment.js +42 -35
  102. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectList.js +58 -51
  103. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectSuperSubscript.js +29 -22
  104. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +28 -14
  105. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +14 -7
  106. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +8 -4
  107. package/dist/Editor/Toolbar/PopupTool/TemplateCard.js +11 -5
  108. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +29 -21
  109. package/dist/Editor/Toolbar/Toolbar.js +20 -10
  110. package/dist/Editor/common/CustomDialog/index.js +8 -10
  111. package/dist/Editor/common/ImageSelector/ImageSelector.js +10 -8
  112. package/dist/Editor/common/ImageSelector/Options/AddLink.js +6 -4
  113. package/dist/Editor/common/LinkSettings/NavComponents.js +14 -10
  114. package/dist/Editor/common/LinkSettings/index.js +20 -14
  115. package/dist/Editor/common/LinkSettings/navOptions.js +1 -1
  116. package/dist/Editor/common/MentionsPopup/index.js +6 -2
  117. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +22 -22
  118. package/dist/Editor/common/RnD/ContextMenu/index.js +3 -2
  119. package/dist/Editor/common/RnD/ElementOptions/index.js +7 -2
  120. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/SaveAsTemplate.js +8 -3
  121. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +5 -2
  122. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +3 -2
  123. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +4 -2
  124. package/dist/Editor/common/RnD/OptionsPopup/index.js +4 -3
  125. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +3 -2
  126. package/dist/Editor/common/RnD/index.js +11 -4
  127. package/dist/Editor/common/Section/index.js +7 -4
  128. package/dist/Editor/common/Shorthands/elements.js +21 -4
  129. package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +4 -4
  130. package/dist/Editor/common/StyleBuilder/boxStyle.js +2 -2
  131. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -2
  132. package/dist/Editor/common/StyleBuilder/dividerStyles.js +2 -2
  133. package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +6 -6
  134. package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -2
  135. package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +13 -9
  136. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +6 -3
  137. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +7 -3
  138. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -3
  139. package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +6 -3
  140. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +19 -13
  141. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +7 -4
  142. package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +10 -6
  143. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +7 -3
  144. package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +6 -2
  145. package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +5 -2
  146. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +9 -6
  147. package/dist/Editor/common/StyleBuilder/fieldTypes/metaDataMapping.js +4 -2
  148. package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +12 -11
  149. package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +6 -2
  150. package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -4
  151. package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +6 -2
  152. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +6 -5
  153. package/dist/Editor/common/StyleBuilder/formStyle.js +7 -7
  154. package/dist/Editor/common/StyleBuilder/gridItemStyle.js +6 -6
  155. package/dist/Editor/common/StyleBuilder/gridStyle.js +5 -5
  156. package/dist/Editor/common/StyleBuilder/index.js +4 -3
  157. package/dist/Editor/common/Uploader.js +8 -5
  158. package/dist/Editor/plugins/withLayout.js +3 -2
  159. package/dist/Editor/utils/SlateUtilityFunctions.js +12 -8
  160. package/package.json +1 -1
@@ -10,7 +10,8 @@ const UserInputs = props => {
10
10
  type,
11
11
  subject,
12
12
  handleField,
13
- onSave
13
+ onSave,
14
+ translation
14
15
  } = props;
15
16
  const editorRef = useRef();
16
17
  const variables = element?.children;
@@ -39,7 +40,8 @@ const UserInputs = props => {
39
40
  fontStyleOptions: ['underline'],
40
41
  hideLink: true,
41
42
  hideTextColor: true
42
- }
43
+ },
44
+ translation: translation
43
45
  })
44
46
  })
45
47
  });
@@ -17,8 +17,12 @@ const Workflow = props => {
17
17
  element: propElement,
18
18
  closeWorkflow,
19
19
  onSave,
20
- customWorkflowElement = null
20
+ customWorkflowElement = null,
21
+ customProps
21
22
  } = props;
23
+ const {
24
+ translation
25
+ } = customProps;
22
26
  // replacing element for forms in DND
23
27
  const element = customWorkflowElement ? customWorkflowElement : propElement;
24
28
  const {
@@ -34,11 +38,11 @@ const Workflow = props => {
34
38
  const [scheduleEvery, setScheduleEvery] = useState("minutes");
35
39
  const currentInstant = scheduleEvery === "minutes" ? minutes : scheduleEvery === "hours" ? hours : scheduleEvery === "days" ? days : [];
36
40
  const [scheduleOn, setScheduleOn] = useState(currentInstant[0]);
37
- const [subject, setSubject] = useState("Welcome to Flozy!");
41
+ const [subject, setSubject] = useState(translation("welcomFlozt"));
38
42
  const [bodyData, setBodyData] = useState([{
39
43
  type: "paragraph",
40
44
  children: [{
41
- text: "Write Something"
45
+ text: translation("writeSometing")
42
46
  }]
43
47
  }]);
44
48
  const [flowEdited, setFlowEdited] = useState({
@@ -150,7 +154,7 @@ const Workflow = props => {
150
154
  children: [formData && /*#__PURE__*/_jsx(IconButton, {
151
155
  onClick: onFormBack,
152
156
  children: /*#__PURE__*/_jsx(ArrowBackIcon, {})
153
- }), "Follow-Up Email", !formData && workflowList?.length > 0 && /*#__PURE__*/_jsxs(Button, {
157
+ }), translation("flowUpEmail"), !formData && workflowList?.length > 0 && /*#__PURE__*/_jsxs(Button, {
154
158
  variant: "outlined",
155
159
  sx: {
156
160
  textTransform: "none",
@@ -160,13 +164,14 @@ const Workflow = props => {
160
164
  onClick: handleAddFormWorkflow,
161
165
  size: "small",
162
166
  startIcon: /*#__PURE__*/_jsx(PlusIcon, {}),
163
- children: [" ", "New Email"]
167
+ children: [" ", translation("newEmail")]
164
168
  })]
165
169
  }), /*#__PURE__*/_jsxs(DialogContent, {
166
170
  children: [!formData && workflowList?.length > 0 && /*#__PURE__*/_jsx(ListWorkflow, {
167
171
  workflow: workflowList,
168
172
  handleEditFormWorkflow: handleEditFormWorkflow,
169
- handleDeleteFormWorkflow: handleDeleteFormWorkflow
173
+ handleDeleteFormWorkflow: handleDeleteFormWorkflow,
174
+ customProps: customProps
170
175
  }), (formData || workflowList?.length === 0) && /*#__PURE__*/_jsx(FormWorkflow, {
171
176
  subject: subject,
172
177
  schedule: schedule,
@@ -183,7 +188,8 @@ const Workflow = props => {
183
188
  setScheduleOn: setScheduleOn,
184
189
  handleSelectedVariables: handleSelectedVariables,
185
190
  handleInputReset: handleInputReset,
186
- classes: classes
191
+ classes: classes,
192
+ customProps: customProps
187
193
  })]
188
194
  }), /*#__PURE__*/_jsxs(DialogActions, {
189
195
  sx: classes.dialogFooter,
@@ -192,13 +198,13 @@ const Workflow = props => {
192
198
  sx: classes.closeBtn,
193
199
  onClick: closeWorkflow,
194
200
  size: "small",
195
- children: "Close"
201
+ children: translation("Close")
196
202
  }), (formData || workflowList?.length === 0) && /*#__PURE__*/_jsx(Button, {
197
203
  className: "primaryBtn",
198
204
  sx: classes.saveBtn,
199
205
  onClick: saveFormWorkflow,
200
206
  size: "small",
201
- children: "Save"
207
+ children: translation("Save")
202
208
  })]
203
209
  })]
204
210
  });
@@ -48,7 +48,8 @@ const FreeGrid = props => {
48
48
  const {
49
49
  readOnly,
50
50
  customSX,
51
- hideTools
51
+ hideTools,
52
+ translation
52
53
  } = customProps;
53
54
  const {
54
55
  updated_at,
@@ -472,7 +473,13 @@ const FreeGrid = props => {
472
473
  title: "Add Element",
473
474
  props: {
474
475
  handleClick: handleAddElementClick,
475
- hideTools: hideTools || []
476
+ hideTools: hideTools || [],
477
+ translation: {
478
+ translation
479
+ },
480
+ customProps: {
481
+ customProps
482
+ }
476
483
  }
477
484
  },
478
485
  more: {
@@ -480,7 +487,13 @@ const FreeGrid = props => {
480
487
  placement: "left",
481
488
  title: "More Options",
482
489
  props: {
483
- handleClick: handleMoreClick
490
+ handleClick: handleMoreClick,
491
+ translation: {
492
+ translation
493
+ },
494
+ customProps: {
495
+ customProps
496
+ }
484
497
  }
485
498
  },
486
499
  settings: {
@@ -491,6 +504,8 @@ const FreeGrid = props => {
491
504
  editor,
492
505
  path,
493
506
  classes,
507
+ customProps,
508
+ translation,
494
509
  customProps
495
510
  }
496
511
  }
@@ -499,6 +514,8 @@ const FreeGrid = props => {
499
514
  updated_at: updated_at,
500
515
  breakpoint: breakpoint,
501
516
  handleContextMenuClick: handleContextMenuClick,
517
+ translation: translation,
518
+ customProps: customProps,
502
519
  children: /*#__PURE__*/_jsxs(Box, {
503
520
  ...attributes,
504
521
  id: sectionName,
@@ -519,7 +536,7 @@ const FreeGrid = props => {
519
536
  "--rows": `repeat(${repeatTimes}, ${ROW_HEIGHT}px)`
520
537
  },
521
538
  children: [children, !readOnly ? /*#__PURE__*/_jsx("span", {
522
- placeholder: `Section (${sectionName || "Welcome"})`,
539
+ placeholder: `${translation("Section")} (${sectionName || "Welcome"})`,
523
540
  className: "freegrid-section-infos",
524
541
  contentEditable: false
525
542
  }) : null]
@@ -26,7 +26,8 @@ const FreeGridBox = props => {
26
26
  const path = ReactEditor.findPath(editor, element);
27
27
  const {
28
28
  readOnly,
29
- hideTools
29
+ hideTools,
30
+ translation
30
31
  } = customProps;
31
32
  const {
32
33
  updated_at,
@@ -188,6 +189,8 @@ const FreeGridBox = props => {
188
189
  left: left || 0
189
190
  },
190
191
  type: "parent-container",
192
+ customProps: customProps,
193
+ translation: translation,
191
194
  children: /*#__PURE__*/_jsx(Box, {
192
195
  component: "div",
193
196
  ...attributes,
@@ -6,13 +6,17 @@ import { jsx as _jsx } from "react/jsx-runtime";
6
6
  const FreeGridButton = props => {
7
7
  const {
8
8
  editor,
9
- icoBtnType
9
+ icoBtnType,
10
+ customProps
10
11
  } = props;
12
+ const {
13
+ translation
14
+ } = customProps;
11
15
  const onButtonClick = () => {
12
16
  insertFreeGrid(editor);
13
17
  };
14
18
  return /*#__PURE__*/_jsx(ToolbarIcon, {
15
- title: "Free Grid",
19
+ title: translation("Free Grid"),
16
20
  onClick: onButtonClick,
17
21
  icon: /*#__PURE__*/_jsx(Icon, {
18
22
  icon: "freegrid"
@@ -29,7 +29,8 @@ const FreeGridItem = props => {
29
29
  const path = ReactEditor.findPath(editor, element);
30
30
  const {
31
31
  readOnly,
32
- hideTools
32
+ hideTools,
33
+ translation
33
34
  } = customProps;
34
35
  const {
35
36
  updated_at,
@@ -273,6 +274,8 @@ const FreeGridItem = props => {
273
274
  itemData: {
274
275
  left: left || 0
275
276
  },
277
+ customProps: customProps,
278
+ translation: translation,
276
279
  children: /*#__PURE__*/_jsxs(Box, {
277
280
  component: "div",
278
281
  ...attributes,
@@ -282,7 +285,8 @@ const FreeGridItem = props => {
282
285
  element: element,
283
286
  customWorkflowElement: element?.children?.[0] || null,
284
287
  closeWorkflow: onClose,
285
- onSave: onWorkflowSave
288
+ onSave: onWorkflowSave,
289
+ customProps: customProps
286
290
  }) : null, popup === "embedScript" ? /*#__PURE__*/_jsx(EmbedScriptPopup, {
287
291
  open: popup === "embedScript",
288
292
  customProps: customProps,
@@ -51,7 +51,8 @@ const FREE_GRID_ELEMENTS = [{
51
51
  const AddElement = props => {
52
52
  const {
53
53
  handleClick,
54
- hideTools
54
+ hideTools,
55
+ translation
55
56
  } = props;
56
57
  const ADD_ELEMENTS = FREE_GRID_ELEMENTS.filter(f => (hideTools || []).indexOf(f.actionType) === -1);
57
58
  return /*#__PURE__*/_jsx(Box, {
@@ -70,7 +71,7 @@ const AddElement = props => {
70
71
  icon: m.icon
71
72
  })
72
73
  }), /*#__PURE__*/_jsx(ListItemText, {
73
- children: m.label
74
+ children: translation?.translation(m.label)
74
75
  })]
75
76
  }, m.actionType);
76
77
  })
@@ -4,7 +4,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
4
4
  import { jsxs as _jsxs } from "react/jsx-runtime";
5
5
  const More = props => {
6
6
  const {
7
- handleClick
7
+ handleClick,
8
+ translation
8
9
  } = props;
9
10
  return /*#__PURE__*/_jsx(Box, {
10
11
  children: /*#__PURE__*/_jsxs(List, {
@@ -12,11 +13,11 @@ const More = props => {
12
13
  children: [/*#__PURE__*/_jsx(ListItemButton, {
13
14
  className: "item-wrapper",
14
15
  onClick: handleClick("addSection"),
15
- children: "Add Section"
16
+ children: translation?.translation("Add Section")
16
17
  }), /*#__PURE__*/_jsx(ListItemButton, {
17
18
  className: "item-wrapper",
18
19
  onClick: handleClick("duplicateSection"),
19
- children: "Duplicate Section"
20
+ children: translation?.translation("Duplicate Section")
20
21
  })]
21
22
  })
22
23
  });
@@ -32,7 +32,8 @@ const GridToolBar = ({
32
32
  onAddSection,
33
33
  onMoveSection,
34
34
  path,
35
- isSectionFullWidth
35
+ isSectionFullWidth,
36
+ translation
36
37
  }) => {
37
38
  return selected && !showTool ? /*#__PURE__*/_jsxs("div", {
38
39
  className: "grid-container-toolbar",
@@ -42,21 +43,21 @@ const GridToolBar = ({
42
43
  top: "4px"
43
44
  } : {},
44
45
  children: [/*#__PURE__*/_jsx(Tooltip, {
45
- title: "Grid Settings",
46
+ title: translation("Grid Settings"),
46
47
  arrow: true,
47
48
  children: /*#__PURE__*/_jsx(IconButton, {
48
49
  onClick: onSettings,
49
50
  children: /*#__PURE__*/_jsx(GridSettingsIcon, {})
50
51
  })
51
52
  }), /*#__PURE__*/_jsx(Tooltip, {
52
- title: "Add Grid Item",
53
+ title: translation("Add Grid Item"),
53
54
  arrow: true,
54
55
  children: /*#__PURE__*/_jsx(IconButton, {
55
56
  onClick: onAddGridItem,
56
57
  children: /*#__PURE__*/_jsx(GridAddGridIcon, {})
57
58
  })
58
59
  }), /*#__PURE__*/_jsx(Tooltip, {
59
- title: "Duplicate",
60
+ title: translation("Duplicate"),
60
61
  arrow: true,
61
62
  children: /*#__PURE__*/_jsx(IconButton, {
62
63
  onClick: onAddSection(),
@@ -64,14 +65,14 @@ const GridToolBar = ({
64
65
  })
65
66
  }), path.length === 2 ? /*#__PURE__*/_jsxs(_Fragment, {
66
67
  children: [/*#__PURE__*/_jsx(Tooltip, {
67
- title: "Move Up",
68
+ title: translation("Move Up"),
68
69
  arrow: true,
69
70
  children: /*#__PURE__*/_jsx(IconButton, {
70
71
  onClick: onMoveSection("up"),
71
72
  children: /*#__PURE__*/_jsx(ArrowUpwardIcon, {})
72
73
  })
73
74
  }), /*#__PURE__*/_jsx(Tooltip, {
74
- title: "Move Down",
75
+ title: translation("Move Down"),
75
76
  arrow: true,
76
77
  children: /*#__PURE__*/_jsx(IconButton, {
77
78
  onClick: onMoveSection("down"),
@@ -102,7 +103,8 @@ const Grid = props => {
102
103
  customProps
103
104
  } = props;
104
105
  const {
105
- readOnly
106
+ readOnly,
107
+ translation
106
108
  } = customProps;
107
109
  const [openSetttings, setOpenSettings] = useState(false);
108
110
  const {
@@ -268,7 +270,7 @@ const Grid = props => {
268
270
  contentEditable: false,
269
271
  className: "element-selector-ctrl tc",
270
272
  children: /*#__PURE__*/_jsx(Tooltip, {
271
- title: "Add Space above",
273
+ title: translation("Add Space above"),
272
274
  arrow: true,
273
275
  children: /*#__PURE__*/_jsx(IconButton, {
274
276
  onClick: onNewLine("up"),
@@ -279,7 +281,7 @@ const Grid = props => {
279
281
  contentEditable: false,
280
282
  className: "element-selector-ctrl bc",
281
283
  children: /*#__PURE__*/_jsx(Tooltip, {
282
- title: "Add Space below",
284
+ title: translation("Add Space below"),
283
285
  arrow: true,
284
286
  children: /*#__PURE__*/_jsx(IconButton, {
285
287
  onClick: onNewLine("down"),
@@ -364,7 +366,8 @@ const Grid = props => {
364
366
  onAddSection: onAddSection,
365
367
  onMoveSection: onMoveSection,
366
368
  path: path,
367
- isSectionFullWidth: isSectionFullWidth
369
+ isSectionFullWidth: isSectionFullWidth,
370
+ translation: translation
368
371
  })]
369
372
  }), openSetttings ? /*#__PURE__*/_jsx(PoupComp, {
370
373
  element: element,
@@ -11,9 +11,13 @@ const GridButton = props => {
11
11
  const classes = GridStyles();
12
12
  const {
13
13
  editor,
14
- icoBtnType
14
+ icoBtnType,
15
+ customProps
15
16
  } = props;
16
17
  const [open, setOpen] = useState(false);
18
+ const {
19
+ translation
20
+ } = customProps;
17
21
  const onButtonClick = async () => {
18
22
  insertGrid(editor, insertPlainGrid(2));
19
23
  handleClose();
@@ -44,7 +48,7 @@ const GridButton = props => {
44
48
 
45
49
  return /*#__PURE__*/_jsxs(_Fragment, {
46
50
  children: [/*#__PURE__*/_jsx(ToolbarIcon, {
47
- title: "Column",
51
+ title: translation("Column"),
48
52
  onClick: onButtonClick,
49
53
  icon: /*#__PURE__*/_jsx(GridElement, {}),
50
54
  icoBtnType: icoBtnType
@@ -58,14 +62,14 @@ const GridButton = props => {
58
62
  children: [/*#__PURE__*/_jsx(Grid, {
59
63
  item: true,
60
64
  xs: 6,
61
- children: "Grid"
65
+ children: translation("Grid")
62
66
  }), /*#__PURE__*/_jsx(Grid, {
63
67
  item: true,
64
68
  xs: 6,
65
69
  textAlign: "right",
66
70
  children: /*#__PURE__*/_jsx(Button, {
67
71
  onClick: handleInsertGrid(null),
68
- children: "Insert Default Template"
72
+ children: translation("insertDefaultTemplate")
69
73
  })
70
74
  })]
71
75
  })
@@ -90,7 +94,7 @@ const GridButton = props => {
90
94
  display: "flex"
91
95
  },
92
96
  children: /*#__PURE__*/_jsx(Tooltip, {
93
- title: `Insert ${m} Column Grid`,
97
+ title: `${translation("Insert")} ${m} ${translation("Column Grid")}`,
94
98
  arrow: true,
95
99
  children: /*#__PURE__*/_jsx(Button, {
96
100
  sx: classes.gridButton,
@@ -43,8 +43,12 @@ const GridItemToolbar = props => {
43
43
  showTool,
44
44
  onSettings,
45
45
  onAddColumn,
46
- columnRef
46
+ columnRef,
47
+ customProps
47
48
  } = props;
49
+ const {
50
+ translation
51
+ } = customProps;
48
52
  return selected && !showTool ? /*#__PURE__*/_jsx(Popper, {
49
53
  anchorEl: columnRef?.current,
50
54
  open: true,
@@ -55,7 +59,7 @@ const GridItemToolbar = props => {
55
59
  children: /*#__PURE__*/_jsxs(Box, {
56
60
  className: "ico-grp-ss",
57
61
  children: [/*#__PURE__*/_jsx(Tooltip, {
58
- title: "Column Settings",
62
+ title: translation("Column Settings"),
59
63
  arrow: true,
60
64
  children: /*#__PURE__*/_jsx(IconButton, {
61
65
  size: "small",
@@ -64,7 +68,7 @@ const GridItemToolbar = props => {
64
68
  children: /*#__PURE__*/_jsx(GridSettingsIcon, {})
65
69
  })
66
70
  }), /*#__PURE__*/_jsx(Tooltip, {
67
- title: "Add Column",
71
+ title: translation("Add Column"),
68
72
  arrow: true,
69
73
  children: /*#__PURE__*/_jsx(IconButton, {
70
74
  size: "small",
@@ -98,7 +102,8 @@ const GridItem = props => {
98
102
  customProps
99
103
  } = props;
100
104
  const {
101
- readOnly
105
+ readOnly,
106
+ translation
102
107
  } = customProps;
103
108
  const [openSetttings, setOpenSettings] = useState(false);
104
109
  const {
@@ -325,7 +330,8 @@ const GridItem = props => {
325
330
  showTool: showTool,
326
331
  onSettings: onSettings,
327
332
  onAddColumn: onAddColumn,
328
- columnRef: columnRef
333
+ columnRef: columnRef,
334
+ customProps: customProps
329
335
  })]
330
336
  }), /*#__PURE__*/_jsx(Box, {
331
337
  ref: columnRef,
@@ -344,7 +350,7 @@ const GridItem = props => {
344
350
  borderColor: borderColorHover || borderColor || "transparent"
345
351
  }
346
352
  },
347
- placeholder: "Column",
353
+ placeholder: translation("Column"),
348
354
  "data-info": "handle-outside-editor-click",
349
355
  children: children
350
356
  }), openSetttings ? /*#__PURE__*/_jsx(GridItemPopup, {
@@ -368,7 +374,7 @@ const GridItem = props => {
368
374
  children: /*#__PURE__*/_jsx(Button, {
369
375
  variant: "contained",
370
376
  onClick: handleClose,
371
- children: "Close"
377
+ children: translation("Close")
372
378
  })
373
379
  })]
374
380
  })]
@@ -10,8 +10,11 @@ const GridItemPopup = props => {
10
10
  onDelete,
11
11
  customProps
12
12
  } = props;
13
+ const {
14
+ translation
15
+ } = customProps;
13
16
  return /*#__PURE__*/_jsx(StyleBuilder, {
14
- title: "Grid Item",
17
+ title: translation("Grid Item"),
15
18
  type: "gridItemStyle",
16
19
  element: element,
17
20
  onSave: onSave,
@@ -10,8 +10,11 @@ const GridPopup = props => {
10
10
  onDelete,
11
11
  customProps
12
12
  } = props;
13
+ const {
14
+ translation
15
+ } = customProps;
13
16
  return /*#__PURE__*/_jsx(StyleBuilder, {
14
- title: "Grid",
17
+ title: translation("Grid"),
15
18
  type: "gridStyle",
16
19
  element: element,
17
20
  onSave: onSave,
@@ -10,8 +10,11 @@ const SectionPopup = props => {
10
10
  onDelete,
11
11
  customProps
12
12
  } = props;
13
+ const {
14
+ translation
15
+ } = customProps;
13
16
  return /*#__PURE__*/_jsx(StyleBuilder, {
14
- title: "Section",
17
+ title: translation("Section"),
15
18
  type: "sectionStyle",
16
19
  element: element,
17
20
  onSave: onSave,
@@ -19,7 +19,8 @@ const Toolbar = props => {
19
19
  selected,
20
20
  linkRef,
21
21
  onEditLink,
22
- editor
22
+ editor,
23
+ translation
23
24
  } = props;
24
25
  const btnProps = handleLinkType(urlPath, linkType, true, showInNewTab === "_blank");
25
26
  const navType = getLinkType(linkType, urlPath);
@@ -52,13 +53,13 @@ const Toolbar = props => {
52
53
  children: /*#__PURE__*/_jsx(OpenInNewIcon, {})
53
54
  })
54
55
  }), /*#__PURE__*/_jsx(Tooltip, {
55
- title: "Edit",
56
+ title: translation("Edit"),
56
57
  children: /*#__PURE__*/_jsx(IconButton, {
57
58
  onClick: onEditLink,
58
59
  children: /*#__PURE__*/_jsx(EditIcon, {})
59
60
  })
60
61
  }), /*#__PURE__*/_jsx(Tooltip, {
61
- title: "Remove",
62
+ title: translation("Remove"),
62
63
  children: /*#__PURE__*/_jsx(IconButton, {
63
64
  onClick: () => removeLink(editor),
64
65
  children: /*#__PURE__*/_jsx(LinkOffIcon, {})
@@ -92,7 +93,8 @@ const Link = props => {
92
93
  customProps
93
94
  } = props;
94
95
  const {
95
- readOnly
96
+ readOnly,
97
+ translation
96
98
  } = customProps;
97
99
  const editor = useSlateStatic();
98
100
  const selected = useSelected();
@@ -150,7 +152,8 @@ const Link = props => {
150
152
  selected: selected,
151
153
  linkRef: linkRef,
152
154
  onEditLink: onEditLink,
153
- editor: editor
155
+ editor: editor,
156
+ translation: translation
154
157
  }), showInput ? /*#__PURE__*/_jsx(LinkSettings, {
155
158
  handleClose: handleClose,
156
159
  onSave: ({
@@ -26,6 +26,9 @@ const LinkButton = props => {
26
26
  isActive,
27
27
  props: blockProps
28
28
  } = getBlockActive(editor, "link");
29
+ const {
30
+ translation
31
+ } = customProps;
29
32
  const urlPath = blockProps?.url || blockProps?.href;
30
33
  const showInNewTab = blockProps?.showInNewTab || blockProps?.target;
31
34
  const {
@@ -61,7 +64,7 @@ const LinkButton = props => {
61
64
  ref: linkInputRef,
62
65
  className: "popup-wrapper1",
63
66
  children: [/*#__PURE__*/_jsx(Tooltip, {
64
- title: "Link",
67
+ title: translation("Link"),
65
68
  arrow: true,
66
69
  children: /*#__PURE__*/_jsx(IconButton, {
67
70
  className: `${showInput ? "clicked btnActive" : ""} ${isActive ? "btnActive" : ""}`,
@@ -7,14 +7,19 @@ import CheckListStyle from "./CheckListStyles";
7
7
  import { jsx as _jsx } from "react/jsx-runtime";
8
8
  import { jsxs as _jsxs } from "react/jsx-runtime";
9
9
  import { Fragment as _Fragment } from "react/jsx-runtime";
10
- const CheckList = ({
11
- attributes,
12
- children,
13
- element,
14
- isEmpty,
15
- className,
16
- style
17
- }) => {
10
+ const CheckList = props => {
11
+ const {
12
+ attributes,
13
+ children,
14
+ element,
15
+ isEmpty,
16
+ className,
17
+ style,
18
+ customProps
19
+ } = props;
20
+ const {
21
+ translation
22
+ } = customProps;
18
23
  const editor = useSlateStatic();
19
24
  const readOnly = useReadOnly();
20
25
  const classes = CheckListStyle();
@@ -73,7 +78,7 @@ const CheckList = ({
73
78
  width: '90%'
74
79
  },
75
80
  className: `checkbox-list content-editable ${isEmpty ? "empty" : ""}`,
76
- placeholder: nestedCheckList ? "" : "Todo List",
81
+ placeholder: nestedCheckList ? "" : translation("Todo List"),
77
82
  children: children
78
83
  })]
79
84
  })
@@ -5,9 +5,13 @@ import ToolbarIcon from "../../common/ToolbarIcon";
5
5
  import { NewLineElementIcon } from "../../common/iconListV2";
6
6
  import { jsx as _jsx } from "react/jsx-runtime";
7
7
  const NewLineButton = ({
8
- icoBtnType
8
+ icoBtnType,
9
+ customProps
9
10
  }) => {
10
11
  const editor = useSlateStatic();
12
+ const {
13
+ translation
14
+ } = customProps;
11
15
  const onAddNewLine = () => {
12
16
  Transforms.insertNodes(editor, [{
13
17
  type: "paragraph",
@@ -21,7 +25,7 @@ const NewLineButton = ({
21
25
  ReactEditor.focus(editor);
22
26
  };
23
27
  return /*#__PURE__*/_jsx(ToolbarIcon, {
24
- title: "New Line",
28
+ title: translation("New Line"),
25
29
  onClick: onAddNewLine,
26
30
  icon: /*#__PURE__*/_jsx(NewLineElementIcon, {
27
31
  sx: {
@@ -17,6 +17,9 @@ const PageSettingsButton = props => {
17
17
  } = props;
18
18
  const [openSetttings, setOpenSettings] = useState(false);
19
19
  const editor = useSlateStatic();
20
+ const {
21
+ translation
22
+ } = customProps;
20
23
  const onSettings = () => {
21
24
  const {
22
25
  element,
@@ -49,7 +52,7 @@ const PageSettingsButton = props => {
49
52
  onClick: onSettings,
50
53
  className: "removeDefaultSvgCls"
51
54
  }) : /*#__PURE__*/_jsx(ToolbarIcon, {
52
- title: "Page Settings",
55
+ title: translation("Page Settings"),
53
56
  onClick: onSettings,
54
57
  icon: /*#__PURE__*/_jsx(SettingsIcon, {}),
55
58
  icoBtnType: icoBtnType