@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
@@ -44,7 +44,8 @@ export default function LinkSettings(props) {
44
44
  } = props;
45
45
  const {
46
46
  isMobile,
47
- tagName
47
+ tagName,
48
+ translation
48
49
  } = customProps;
49
50
  const navOptions = getNavOptions(customProps.hideTools, tagName, allowTrigger);
50
51
  const classes = LinkSettingsStyles(theme);
@@ -72,7 +73,7 @@ export default function LinkSettings(props) {
72
73
  sx: {
73
74
  fontWeight: 600
74
75
  },
75
- children: "What do you want to link to?"
76
+ children: translation("dialogueTitle")
76
77
  }), /*#__PURE__*/_jsx(Select, {
77
78
  size: "small",
78
79
  fullWidth: true,
@@ -94,7 +95,7 @@ export default function LinkSettings(props) {
94
95
  value: navOption.value,
95
96
  children: /*#__PURE__*/_jsx(Typography, {
96
97
  variant: "body2",
97
- children: navOption.label
98
+ children: translation(navOption.label)
98
99
  })
99
100
  }, i);
100
101
  })
@@ -103,14 +104,15 @@ export default function LinkSettings(props) {
103
104
  paddingTop: "14px"
104
105
  },
105
106
  children: NavSettings && /*#__PURE__*/_jsx(NavSettings, {
106
- placeholder: nav?.placeholder,
107
+ placeholder: translation(nav?.placeholder),
107
108
  nav: nav,
108
109
  onChange: onChange,
109
110
  value: navValue,
110
111
  openInNewTab: openInNewTab,
111
112
  onNewTabChange: () => setOpenInNewTab(prev => !prev),
112
113
  services: customProps.services,
113
- classes: classes
114
+ classes: classes,
115
+ translation: translation
114
116
  })
115
117
  }), /*#__PURE__*/_jsx(Box, {
116
118
  component: "div",
@@ -118,7 +120,8 @@ export default function LinkSettings(props) {
118
120
  children: /*#__PURE__*/_jsx(ActionsButtons, {
119
121
  classes: classes,
120
122
  onCancel: handleClose,
121
- onSave: onSubmit
123
+ onSave: onSubmit,
124
+ translation: translation
122
125
  })
123
126
  })]
124
127
  });
@@ -130,7 +133,7 @@ export default function LinkSettings(props) {
130
133
  fullWidth: true,
131
134
  maxWidth: "sm",
132
135
  children: [/*#__PURE__*/_jsx(DialogTitle, {
133
- children: "What do you want to link to?"
136
+ children: translation("dialogueTitle")
134
137
  }), /*#__PURE__*/_jsx(IconButton, {
135
138
  "aria-label": "close",
136
139
  onClick: handleClose,
@@ -152,7 +155,7 @@ export default function LinkSettings(props) {
152
155
  return /*#__PURE__*/_jsx(FormControlLabel, {
153
156
  value: navOption.value,
154
157
  control: /*#__PURE__*/_jsx(Radio, {}),
155
- label: navOption.label,
158
+ label: translation(navOption.label),
156
159
  onChange: () => {
157
160
  setNav(navOption);
158
161
  setNavValue("");
@@ -165,14 +168,15 @@ export default function LinkSettings(props) {
165
168
  item: true,
166
169
  xs: 6,
167
170
  children: NavSettings && /*#__PURE__*/_jsx(NavSettings, {
168
- placeholder: nav?.placeholder,
171
+ placeholder: translation(nav?.placeholder),
169
172
  nav: nav,
170
173
  onChange: onChange,
171
174
  value: navValue,
172
175
  openInNewTab: openInNewTab,
173
176
  onNewTabChange: () => setOpenInNewTab(prev => !prev),
174
177
  services: customProps.services,
175
- classes: classes
178
+ classes: classes,
179
+ translation: translation
176
180
  })
177
181
  })]
178
182
  })
@@ -180,7 +184,8 @@ export default function LinkSettings(props) {
180
184
  children: /*#__PURE__*/_jsx(ActionsButtons, {
181
185
  classes: classes,
182
186
  onCancel: handleClose,
183
- onSave: onSubmit
187
+ onSave: onSubmit,
188
+ translation: translation
184
189
  })
185
190
  })]
186
191
  });
@@ -189,17 +194,18 @@ export default function LinkSettings(props) {
189
194
  function ActionsButtons({
190
195
  classes,
191
196
  onCancel,
192
- onSave
197
+ onSave,
198
+ translation
193
199
  }) {
194
200
  return /*#__PURE__*/_jsxs(_Fragment, {
195
201
  children: [/*#__PURE__*/_jsx(Button, {
196
202
  onClick: onCancel,
197
203
  sx: classes.closeBtn,
198
- children: "Cancel"
204
+ children: translation("Cancel")
199
205
  }), /*#__PURE__*/_jsx(Button, {
200
206
  onClick: onSave,
201
207
  sx: classes.saveBtn,
202
- children: "Save"
208
+ children: translation("Save")
203
209
  })]
204
210
  });
205
211
  }
@@ -13,7 +13,7 @@ export const getNavOptions = (hideTools = [], tagName = "", allowTrigger) => {
13
13
  }, {
14
14
  label: "Web Address",
15
15
  value: "webAddress",
16
- placeholder: "https://",
16
+ placeholder: "httpsText",
17
17
  showOpenInNewTab: true
18
18
  }, {
19
19
  label: "Select Page and Section",
@@ -23,8 +23,12 @@ const MentionsPopup = /*#__PURE__*/forwardRef((props, ref) => {
23
23
  mentions,
24
24
  setMentions,
25
25
  type,
26
- otherProps
26
+ otherProps,
27
+ customProps
27
28
  } = props;
29
+ const {
30
+ translation
31
+ } = customProps;
28
32
  const classes = usePopupStyle(theme);
29
33
  const papperRef = useRef(null);
30
34
  const buttonRef = useRef(null);
@@ -83,7 +87,7 @@ const MentionsPopup = /*#__PURE__*/forwardRef((props, ref) => {
83
87
  sx: classes.groupHeader,
84
88
  component: "div",
85
89
  variant: "h6",
86
- children: prevGroup
90
+ children: translation(prevGroup)
87
91
  });
88
92
  } else {
89
93
  return null;
@@ -7,9 +7,9 @@ const CMenus = {
7
7
  name: "bringForward",
8
8
  label: "Move to Front",
9
9
  autoClose: false,
10
- render: () => {
10
+ render: translation => {
11
11
  return /*#__PURE__*/_jsxs(_Fragment, {
12
- children: ["Move to Front", " ", /*#__PURE__*/_jsxs("span", {
12
+ children: [translation("Move to Front"), " ", /*#__PURE__*/_jsxs("span", {
13
13
  className: "shortcut-help-info",
14
14
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " \u2191"]
15
15
  })]
@@ -19,9 +19,9 @@ const CMenus = {
19
19
  name: "bringBackward",
20
20
  label: "Move to Back",
21
21
  autoClose: false,
22
- render: () => {
22
+ render: translation => {
23
23
  return /*#__PURE__*/_jsxs(_Fragment, {
24
- children: ["Move to Back", " ", /*#__PURE__*/_jsxs("span", {
24
+ children: [translation("Move to Back"), " ", /*#__PURE__*/_jsxs("span", {
25
25
  className: "shortcut-help-info",
26
26
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " \u2193"]
27
27
  })]
@@ -30,9 +30,9 @@ const CMenus = {
30
30
  }, {
31
31
  name: "cut",
32
32
  label: "Cut",
33
- render: () => {
33
+ render: translation => {
34
34
  return /*#__PURE__*/_jsxs(_Fragment, {
35
- children: ["Cut", " ", /*#__PURE__*/_jsxs("span", {
35
+ children: [translation("Cut"), " ", /*#__PURE__*/_jsxs("span", {
36
36
  className: "shortcut-help-info",
37
37
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " X"]
38
38
  })]
@@ -41,9 +41,9 @@ const CMenus = {
41
41
  }, {
42
42
  name: "copy",
43
43
  label: "Copy",
44
- render: () => {
44
+ render: translation => {
45
45
  return /*#__PURE__*/_jsxs(_Fragment, {
46
- children: ["Copy", " ", /*#__PURE__*/_jsxs("span", {
46
+ children: [translation("Copy"), " ", /*#__PURE__*/_jsxs("span", {
47
47
  className: "shortcut-help-info",
48
48
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " C"]
49
49
  })]
@@ -52,9 +52,9 @@ const CMenus = {
52
52
  }, {
53
53
  name: "paste",
54
54
  label: "Paste",
55
- render: () => {
55
+ render: translation => {
56
56
  return /*#__PURE__*/_jsxs(_Fragment, {
57
- children: ["Paste", " ", /*#__PURE__*/_jsxs("span", {
57
+ children: [translation("Paste"), " ", /*#__PURE__*/_jsxs("span", {
58
58
  className: "shortcut-help-info",
59
59
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " V"]
60
60
  })]
@@ -67,9 +67,9 @@ const CMenus = {
67
67
  parent: [{
68
68
  name: "cut",
69
69
  label: "Cut",
70
- render: () => {
70
+ render: translation => {
71
71
  return /*#__PURE__*/_jsxs(_Fragment, {
72
- children: ["Cut", " ", /*#__PURE__*/_jsxs("span", {
72
+ children: [translation("Cut"), " ", /*#__PURE__*/_jsxs("span", {
73
73
  className: "shortcut-help-info",
74
74
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " X"]
75
75
  })]
@@ -78,9 +78,9 @@ const CMenus = {
78
78
  }, {
79
79
  name: "copy",
80
80
  label: "Copy",
81
- render: () => {
81
+ render: translation => {
82
82
  return /*#__PURE__*/_jsxs(_Fragment, {
83
- children: ["Copy", " ", /*#__PURE__*/_jsxs("span", {
83
+ children: [translation("Copy"), " ", /*#__PURE__*/_jsxs("span", {
84
84
  className: "shortcut-help-info",
85
85
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " C"]
86
86
  })]
@@ -89,9 +89,9 @@ const CMenus = {
89
89
  }, {
90
90
  name: "paste",
91
91
  label: "Paste",
92
- render: () => {
92
+ render: translation => {
93
93
  return /*#__PURE__*/_jsxs(_Fragment, {
94
- children: ["Paste", " ", /*#__PURE__*/_jsxs("span", {
94
+ children: [translation("Paste"), " ", /*#__PURE__*/_jsxs("span", {
95
95
  className: "shortcut-help-info",
96
96
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " V"]
97
97
  })]
@@ -104,9 +104,9 @@ const CMenus = {
104
104
  "parent-container": [{
105
105
  name: "cut",
106
106
  label: "Cut",
107
- render: () => {
107
+ render: translation => {
108
108
  return /*#__PURE__*/_jsxs(_Fragment, {
109
- children: ["Cut", " ", /*#__PURE__*/_jsxs("span", {
109
+ children: [translation("Cut"), " ", /*#__PURE__*/_jsxs("span", {
110
110
  className: "shortcut-help-info",
111
111
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " X"]
112
112
  })]
@@ -115,9 +115,9 @@ const CMenus = {
115
115
  }, {
116
116
  name: "copy",
117
117
  label: "Copy",
118
- render: () => {
118
+ render: translation => {
119
119
  return /*#__PURE__*/_jsxs(_Fragment, {
120
- children: ["Copy", " ", /*#__PURE__*/_jsxs("span", {
120
+ children: [translation("Copy"), " ", /*#__PURE__*/_jsxs("span", {
121
121
  className: "shortcut-help-info",
122
122
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " C"]
123
123
  })]
@@ -126,9 +126,9 @@ const CMenus = {
126
126
  }, {
127
127
  name: "paste",
128
128
  label: "Paste",
129
- render: () => {
129
+ render: translation => {
130
130
  return /*#__PURE__*/_jsxs(_Fragment, {
131
- children: ["Paste", " ", /*#__PURE__*/_jsxs("span", {
131
+ children: [translation("Paste"), " ", /*#__PURE__*/_jsxs("span", {
132
132
  className: "shortcut-help-info",
133
133
  children: [/*#__PURE__*/_jsx(CMDIcon, {}), " V"]
134
134
  })]
@@ -14,7 +14,8 @@ const ContextMenu = props => {
14
14
  open,
15
15
  type,
16
16
  contextMenu,
17
- handleClose
17
+ handleClose,
18
+ translation
18
19
  } = props;
19
20
  const {
20
21
  path,
@@ -35,7 +36,7 @@ const ContextMenu = props => {
35
36
  return /*#__PURE__*/_jsx(MenuItem, {
36
37
  className: "cm-menu-item",
37
38
  onClick: handleClose(m),
38
- children: m?.render ? m.render() : m.label
39
+ children: m?.render ? m.render(translation) : translation(m.label)
39
40
  }, `cm_${i}`);
40
41
  })
41
42
  }) : null;
@@ -16,7 +16,8 @@ const ElementOptions = props => {
16
16
  actionsMap,
17
17
  optionsProps,
18
18
  selectedAction,
19
- theme
19
+ theme,
20
+ customProps
20
21
  } = props;
21
22
  const classes = useElementOptionsStyle({
22
23
  theme
@@ -28,6 +29,9 @@ const ElementOptions = props => {
28
29
  menuProps
29
30
  } = menu;
30
31
  const isOpen = Boolean(anchorEl) && open;
32
+ const {
33
+ translation
34
+ } = customProps;
31
35
  const handleOptionClick = type => e => {
32
36
  if (actionsMap[type]) {
33
37
  const {
@@ -57,7 +61,7 @@ const ElementOptions = props => {
57
61
  title
58
62
  } = Actions[action] || {};
59
63
  return type ? /*#__PURE__*/_jsx(Tooltip, {
60
- title: title,
64
+ title: translation(title),
61
65
  arrow: true,
62
66
  children: /*#__PURE__*/_jsx(Button, {
63
67
  onClick: handleOptionClick(type),
@@ -85,6 +89,7 @@ const ElementOptions = props => {
85
89
  }), open && MenuComp ? /*#__PURE__*/_jsx(OptionsPopup, {
86
90
  theme: theme,
87
91
  open: openMenu,
92
+ translation: translation,
88
93
  ...menu,
89
94
  handleClose: handleClose,
90
95
  children: /*#__PURE__*/_jsx(MenuComp, {
@@ -8,14 +8,18 @@ const SavePopup = props => {
8
8
  const {
9
9
  classes,
10
10
  onClose,
11
- elementProps
11
+ elementProps,
12
+ customProps
12
13
  } = props;
14
+ const {
15
+ translation
16
+ } = customProps;
13
17
  return /*#__PURE__*/_jsxs(Dialog, {
14
18
  open: true,
15
19
  fullWidth: true,
16
20
  sx: classes.dialog,
17
21
  children: [/*#__PURE__*/_jsxs(DialogTitle, {
18
- children: ["Save As Template", /*#__PURE__*/_jsx(IconButton, {
22
+ children: [translation("Save As Template"), /*#__PURE__*/_jsx(IconButton, {
19
23
  onClick: onClose,
20
24
  children: /*#__PURE__*/_jsx(CloseIcon, {})
21
25
  })]
@@ -27,7 +31,8 @@ const SavePopup = props => {
27
31
  },
28
32
  saveText: "Save",
29
33
  handleClose: onClose,
30
- elementProps: elementProps
34
+ elementProps: elementProps,
35
+ translation: translation
31
36
  })
32
37
  })]
33
38
  });
@@ -19,6 +19,9 @@ const Settings = props => {
19
19
  customProps,
20
20
  theme
21
21
  } = props;
22
+ const {
23
+ translation
24
+ } = customProps;
22
25
  const title = settingsLabel[childType] || "Settings";
23
26
  const Settings = SettingsComponents[childType];
24
27
  return /*#__PURE__*/_jsx(_Fragment, {
@@ -46,10 +49,10 @@ const Settings = props => {
46
49
  children: [/*#__PURE__*/_jsxs(Typography, {
47
50
  variant: "h6",
48
51
  className: "item-wrapper title",
49
- children: [title, /*#__PURE__*/_jsx(Box, {
52
+ children: [translation(title), /*#__PURE__*/_jsx(Box, {
50
53
  component: "div",
51
54
  children: /*#__PURE__*/_jsx(Tooltip, {
52
- title: "Close",
55
+ title: translation("Close"),
53
56
  arrow: true,
54
57
  children: /*#__PURE__*/_jsx(IconButton, {
55
58
  className: "closeBtn",
@@ -20,7 +20,8 @@ const FormSettings = props => {
20
20
  const element = Node.get(editor, element_path);
21
21
  const styleMaps = formStyle;
22
22
  const {
23
- hideTools
23
+ hideTools,
24
+ translation
24
25
  } = customProps || {};
25
26
  const {
26
27
  theme
@@ -109,7 +110,7 @@ const FormSettings = props => {
109
110
  fontSize: "14px !important",
110
111
  fontWeight: "400"
111
112
  },
112
- children: m?.tab
113
+ children: translation(m?.tab)
113
114
  })
114
115
  }), /*#__PURE__*/_jsx(AccordionDetails, {
115
116
  sx: {
@@ -8,7 +8,8 @@ const TextSettings = props => {
8
8
  const {
9
9
  editor,
10
10
  path,
11
- theme
11
+ theme,
12
+ customProps
12
13
  } = props;
13
14
  const item_path = path.split("|").map(m => parseInt(m));
14
15
  const element_path = [...item_path, 0];
@@ -25,7 +26,8 @@ const TextSettings = props => {
25
26
  }, []);
26
27
  return /*#__PURE__*/_jsx(TextFormat, {
27
28
  classes: classes,
28
- editor: editor
29
+ editor: editor,
30
+ customProps: customProps
29
31
  });
30
32
  };
31
33
  export default TextSettings;
@@ -17,7 +17,8 @@ const OptionsPopup = props => {
17
17
  open,
18
18
  anchorEl,
19
19
  placement,
20
- handleClose
20
+ handleClose,
21
+ translation
21
22
  } = props;
22
23
  return anchorEl ? /*#__PURE__*/_jsx(Popper, {
23
24
  sx: classes.root,
@@ -30,10 +31,10 @@ const OptionsPopup = props => {
30
31
  children: [/*#__PURE__*/_jsxs(Typography, {
31
32
  variant: "div",
32
33
  className: "item-wrapper title",
33
- children: [title, /*#__PURE__*/_jsx(Box, {
34
+ children: [translation(title), /*#__PURE__*/_jsx(Box, {
34
35
  component: "div",
35
36
  children: /*#__PURE__*/_jsx(Tooltip, {
36
- title: "Close",
37
+ title: translation("Close"),
37
38
  arrow: true,
38
39
  children: /*#__PURE__*/_jsx(IconButton, {
39
40
  onClick: handleClose,
@@ -10,6 +10,7 @@ const SwitchViewport = props => {
10
10
  const {
11
11
  breakpoint,
12
12
  onChange,
13
+ translation,
13
14
  show
14
15
  } = props;
15
16
  const classes = useSwitchViewport();
@@ -27,7 +28,7 @@ const SwitchViewport = props => {
27
28
  display: show ? "block" : "none"
28
29
  },
29
30
  children: [/*#__PURE__*/_jsx(Tooltip, {
30
- title: "Desktop View",
31
+ title: translation("Desktop View"),
31
32
  children: /*#__PURE__*/_jsx(IconButton, {
32
33
  className: `${!breakpoint || breakpoint === "lg" ? "active" : ""}`,
33
34
  onClick: () => {
@@ -37,7 +38,7 @@ const SwitchViewport = props => {
37
38
  children: /*#__PURE__*/_jsx(PersonalVideoIcon, {})
38
39
  })
39
40
  }), /*#__PURE__*/_jsx(Tooltip, {
40
- title: "Mobile View",
41
+ title: translation("Mobile View"),
41
42
  children: /*#__PURE__*/_jsx(IconButton, {
42
43
  className: `${breakpoint === "xs" ? "active" : ""}`,
43
44
  onClick: () => {
@@ -64,7 +64,8 @@ const RnD = props => {
64
64
  editor,
65
65
  breakpoint = "",
66
66
  handleContextMenuClick = () => {},
67
- itemData = {}
67
+ itemData = {},
68
+ customProps
68
69
  } = props;
69
70
  const {
70
71
  isSelectedElement,
@@ -106,6 +107,9 @@ const RnD = props => {
106
107
  y: 0
107
108
  });
108
109
  const parentSectionPath = str_path?.split("|").slice(0, 2).join("_");
110
+ const {
111
+ translation
112
+ } = customProps;
109
113
  useEffect(() => {
110
114
  if (ITEM_TYPES.includes(type)) {
111
115
  if (enable === 1) {
@@ -517,7 +521,7 @@ const RnD = props => {
517
521
  return /*#__PURE__*/_jsxs(_Fragment, {
518
522
  children: [/*#__PURE__*/_jsxs(Box, {
519
523
  component: Rnd,
520
- placeholder: ItemTypes[childType] || "Item",
524
+ placeholder: translation(ItemTypes[childType]) || translation("Item"),
521
525
  id: eId || "",
522
526
  ref: c => {
523
527
  positionRef.current = c;
@@ -584,7 +588,9 @@ const RnD = props => {
584
588
  optionsProps: optionsProps,
585
589
  selectedAction: currentAction,
586
590
  path: str_path,
587
- theme: theme
591
+ theme: theme,
592
+ translation: translation,
593
+ customProps: customProps
588
594
  }) : null, /*#__PURE__*/_jsx(ElementSettings, {
589
595
  open: Boolean(currentAction),
590
596
  currentAction: currentAction,
@@ -618,7 +624,8 @@ const RnD = props => {
618
624
  open: openContextMenu,
619
625
  contextMenu: contextMenu,
620
626
  handleClose: handleClose,
621
- theme: theme
627
+ theme: theme,
628
+ translation: translation
622
629
  }), type === "parent" && breakpoint === "lg" && !readOnly ? /*#__PURE__*/_jsx(VirtualElement, {
623
630
  parentEle: positionRef?.current?.resizableElement?.current,
624
631
  updated_at: updated_at,
@@ -18,7 +18,8 @@ const Toolbar = ({
18
18
  readOnly,
19
19
  showTool,
20
20
  onSettings,
21
- isSectionFullWidth
21
+ isSectionFullWidth,
22
+ translation
22
23
  }) => {
23
24
  return !readOnly && !showTool ? /*#__PURE__*/_jsx(Box, {
24
25
  component: "div",
@@ -32,7 +33,7 @@ const Toolbar = ({
32
33
  }
33
34
  },
34
35
  children: /*#__PURE__*/_jsx(Tooltip, {
35
- title: "Section Settings",
36
+ title: translation("Section Settings"),
36
37
  children: /*#__PURE__*/_jsx(IconButton, {
37
38
  onClick: onSettings,
38
39
  children: /*#__PURE__*/_jsx(SectionSettingIcon, {})
@@ -50,7 +51,8 @@ const Section = props => {
50
51
  customProps
51
52
  } = props;
52
53
  const {
53
- readOnly
54
+ readOnly,
55
+ translation
54
56
  } = customProps;
55
57
  const editor = useSlateStatic();
56
58
  // const [isHovering, setIsHovering] = useState(false);
@@ -160,7 +162,8 @@ const Section = props => {
160
162
  isSectionFullWidth: isSectionFullWidth,
161
163
  readOnly: readOnly,
162
164
  showTool: false,
163
- onSettings: onSettings
165
+ onSettings: onSettings,
166
+ translation: translation
164
167
  }), children]
165
168
  }), openSetttings ? /*#__PURE__*/_jsx(SectionPopup, {
166
169
  element: {
@@ -203,7 +203,10 @@ const ELEMENTS_LIST = [{
203
203
  type: "emoji",
204
204
  renderComponent: rest => /*#__PURE__*/_jsx(EmojiButton, {
205
205
  ...rest,
206
- icoBtnType: "cmd"
206
+ icoBtnType: "cmd",
207
+ customProps: {
208
+ ...rest
209
+ }
207
210
  })
208
211
  }, {
209
212
  name: "Brain",
@@ -215,7 +218,10 @@ const ELEMENTS_LIST = [{
215
218
  element: {
216
219
  name: "Brain"
217
220
  },
218
- icoBtnType: "cmd"
221
+ icoBtnType: "cmd",
222
+ customProps: {
223
+ ...rest
224
+ }
219
225
  })
220
226
  }, {
221
227
  name: "Divider",
@@ -332,9 +338,20 @@ const ELEMENTS_LIST = [{
332
338
  const elements = props => {
333
339
  const {
334
340
  search,
335
- hideTools
341
+ hideTools,
342
+ translation
336
343
  } = props;
337
- const filteredElements = ELEMENTS_LIST.filter(f => (hideTools || []).indexOf(f.type) === -1);
344
+ const translatedElements = ELEMENTS_LIST.map(element => ({
345
+ ...element,
346
+ name: translation(element.name),
347
+ renderComponent: element.renderComponent ? rest => {
348
+ return element.renderComponent({
349
+ ...rest,
350
+ translation
351
+ });
352
+ } : undefined
353
+ }));
354
+ const filteredElements = translatedElements.filter(f => (hideTools || []).indexOf(f.type) === -1);
338
355
  return filteredElements.filter(c => c.name.toLowerCase().includes(search?.toLowerCase()));
339
356
  };
340
357
  export default elements;
@@ -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
  }]
@@ -106,9 +106,9 @@ const buttonStyle = [{
106
106
  text: "Dashed",
107
107
  value: "dashed"
108
108
  }],
109
- renderOption: option => {
109
+ renderOption: (option, elementProps, translation) => {
110
110
  return /*#__PURE__*/_jsx("span", {
111
- children: option.text
111
+ children: translation(option.text)
112
112
  });
113
113
  }
114
114
  }]