@flozy/editor 9.8.3 → 9.8.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 (166) hide show
  1. package/dist/Editor/ChatEditor.js +14 -7
  2. package/dist/Editor/CommonEditor.js +27 -12
  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 +6 -2
  63. package/dist/Editor/Elements/FreeGrid/FreeGridButton.js +6 -2
  64. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +8 -3
  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 +21 -9
  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 +17 -5
  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 +87 -73
  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/PopupTool/index.js +17 -1
  110. package/dist/Editor/Toolbar/Toolbar.js +20 -10
  111. package/dist/Editor/common/CustomDialog/index.js +8 -10
  112. package/dist/Editor/common/ImageSelector/ImageSelector.js +10 -8
  113. package/dist/Editor/common/ImageSelector/Options/AddLink.js +6 -4
  114. package/dist/Editor/common/LinkSettings/NavComponents.js +14 -10
  115. package/dist/Editor/common/LinkSettings/index.js +20 -14
  116. package/dist/Editor/common/LinkSettings/navOptions.js +1 -1
  117. package/dist/Editor/common/MentionsPopup/index.js +6 -2
  118. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +22 -22
  119. package/dist/Editor/common/RnD/ContextMenu/index.js +3 -2
  120. package/dist/Editor/common/RnD/ElementOptions/index.js +7 -2
  121. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/SaveAsTemplate.js +8 -3
  122. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +5 -2
  123. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +3 -2
  124. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +4 -2
  125. package/dist/Editor/common/RnD/OptionsPopup/index.js +4 -3
  126. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +4 -3
  127. package/dist/Editor/common/RnD/index.js +11 -4
  128. package/dist/Editor/common/Section/index.js +7 -4
  129. package/dist/Editor/common/Shorthands/elements.js +18 -3
  130. package/dist/Editor/common/StyleBuilder/appHeaderStyle.js +4 -4
  131. package/dist/Editor/common/StyleBuilder/boxStyle.js +2 -2
  132. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -2
  133. package/dist/Editor/common/StyleBuilder/dividerStyles.js +2 -2
  134. package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +6 -6
  135. package/dist/Editor/common/StyleBuilder/fieldStyle.js +2 -2
  136. package/dist/Editor/common/StyleBuilder/fieldTypes/alignment.js +13 -9
  137. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +6 -3
  138. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +7 -3
  139. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -3
  140. package/dist/Editor/common/StyleBuilder/fieldTypes/buttonLink.js +6 -3
  141. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +11 -5
  142. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +9 -5
  143. package/dist/Editor/common/StyleBuilder/fieldTypes/elementSize.js +10 -6
  144. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +6 -2
  145. package/dist/Editor/common/StyleBuilder/fieldTypes/gridSize.js +6 -2
  146. package/dist/Editor/common/StyleBuilder/fieldTypes/icons.js +5 -2
  147. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +9 -6
  148. package/dist/Editor/common/StyleBuilder/fieldTypes/metaDataMapping.js +8 -2
  149. package/dist/Editor/common/StyleBuilder/fieldTypes/saveAsTemplate.js +12 -11
  150. package/dist/Editor/common/StyleBuilder/fieldTypes/selectBox.js +6 -2
  151. package/dist/Editor/common/StyleBuilder/fieldTypes/text.js +8 -4
  152. package/dist/Editor/common/StyleBuilder/fieldTypes/textAlign.js +6 -2
  153. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +6 -5
  154. package/dist/Editor/common/StyleBuilder/formStyle.js +7 -7
  155. package/dist/Editor/common/StyleBuilder/gridItemStyle.js +6 -6
  156. package/dist/Editor/common/StyleBuilder/gridStyle.js +5 -5
  157. package/dist/Editor/common/StyleBuilder/index.js +8 -5
  158. package/dist/Editor/common/Uploader.js +8 -5
  159. package/dist/Editor/helper/index.js +27 -3
  160. package/dist/Editor/plugins/withLayout.js +3 -2
  161. package/dist/Editor/plugins/withLinks.js +10 -0
  162. package/dist/Editor/utils/SlateUtilityFunctions.js +15 -9
  163. package/dist/Editor/utils/brains.js +1 -2
  164. package/dist/Editor/utils/freegrid.js +1 -1
  165. package/dist/Editor/utils/helper.js +2 -2
  166. package/package.json +1 -1
@@ -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);
@@ -56,13 +57,13 @@ const Toolbar = props => {
56
57
  children: /*#__PURE__*/_jsx(OpenInNewIcon, {})
57
58
  })
58
59
  }), /*#__PURE__*/_jsx(Tooltip, {
59
- title: "Edit",
60
+ title: translation("Edit"),
60
61
  children: /*#__PURE__*/_jsx(IconButton, {
61
62
  onClick: onEditLink,
62
63
  children: /*#__PURE__*/_jsx(EditIcon, {})
63
64
  })
64
65
  }), /*#__PURE__*/_jsx(Tooltip, {
65
- title: "Remove",
66
+ title: translation("Remove"),
66
67
  children: /*#__PURE__*/_jsx(IconButton, {
67
68
  onClick: () => removeLink(editor),
68
69
  children: /*#__PURE__*/_jsx(LinkOffIcon, {})
@@ -96,7 +97,8 @@ const Link = props => {
96
97
  customProps
97
98
  } = props;
98
99
  const {
99
- readOnly
100
+ readOnly,
101
+ translation
100
102
  } = customProps;
101
103
  const editor = useSlateStatic();
102
104
  const selected = useSelected();
@@ -154,7 +156,8 @@ const Link = props => {
154
156
  selected: selected,
155
157
  linkRef: linkRef,
156
158
  onEditLink: onEditLink,
157
- editor: editor
159
+ editor: editor,
160
+ translation: translation
158
161
  }), showInput ? /*#__PURE__*/_jsx(LinkSettings, {
159
162
  handleClose: handleClose,
160
163
  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: {
@@ -21,6 +21,9 @@ const PageSettingsButton = props => {
21
21
  } = props;
22
22
  const [openSetttings, setOpenSettings] = useState(false);
23
23
  const editor = useSlateStatic();
24
+ const {
25
+ translation
26
+ } = customProps;
24
27
  const {
25
28
  theme
26
29
  } = useEditorContext();
@@ -65,7 +68,7 @@ const PageSettingsButton = props => {
65
68
  className: "removeDefaultSvgCls"
66
69
  })
67
70
  }) : /*#__PURE__*/_jsx(ToolbarIcon, {
68
- title: "Page Settings",
71
+ title: translation("Page Settings"),
69
72
  onClick: onSettings,
70
73
  icon: /*#__PURE__*/_jsx(SettingsIcon, {}),
71
74
  icoBtnType: icoBtnType
@@ -9,8 +9,11 @@ const PageSettingsPopup = props => {
9
9
  onClose,
10
10
  customProps
11
11
  } = props;
12
+ const {
13
+ translation
14
+ } = customProps;
12
15
  return /*#__PURE__*/_jsx(StyleBuilder, {
13
- title: "Page Settings",
16
+ title: translation("Page Settings"),
14
17
  type: "pageSettingsStyle",
15
18
  element: element,
16
19
  onSave: onSave,
@@ -17,7 +17,8 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
17
17
  icoBtnType,
18
18
  selectionTarget,
19
19
  theme = 'light',
20
- otherProps
20
+ otherProps,
21
+ customProps
21
22
  } = props;
22
23
  const editor = useSlateStatic();
23
24
  const [anchorEl, setAnchorEl] = useState(null);
@@ -126,7 +127,8 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
126
127
  onSearchChange: onSearchChange,
127
128
  handleClick: handleClick,
128
129
  theme: theme,
129
- handleClose: handleClose
130
+ handleClose: handleClose,
131
+ customProps: customProps
130
132
  })
131
133
  })
132
134
  }) : /*#__PURE__*/_jsx(Popover, {
@@ -169,7 +171,8 @@ const SearchButton = /*#__PURE__*/forwardRef((props, ref) => {
169
171
  onSearchChange: onSearchChange,
170
172
  handleClick: handleClick,
171
173
  theme: theme,
172
- handleClose: handleClose
174
+ handleClose: handleClose,
175
+ customProps: customProps
173
176
  })
174
177
  })
175
178
  })]
@@ -11,8 +11,12 @@ const SearchAndDocList = ({
11
11
  onSearchChange,
12
12
  handleClick,
13
13
  theme,
14
- handleClose
14
+ handleClose,
15
+ customProps
15
16
  }) => {
17
+ const {
18
+ translation
19
+ } = customProps;
16
20
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
17
21
  return /*#__PURE__*/_jsxs(_Fragment, {
18
22
  children: [/*#__PURE__*/_jsxs(Box, {
@@ -28,7 +32,7 @@ const SearchAndDocList = ({
28
32
  fontWeight: 600,
29
33
  color: theme?.palette?.primary?.main
30
34
  },
31
- children: "Brains"
35
+ children: translation("Brains")
32
36
  }), !isMobile ? /*#__PURE__*/_jsx(IconButton, {
33
37
  onClick: e => {
34
38
  e?.stopPropagation();
@@ -68,7 +72,7 @@ const SearchAndDocList = ({
68
72
  children: /*#__PURE__*/_jsx(TextField, {
69
73
  fullWidth: true,
70
74
  variant: "outlined",
71
- placeholder: "Search here...",
75
+ placeholder: translation("placeHolderSearch"),
72
76
  size: "small",
73
77
  onChange: e => onSearchChange(e.target.value),
74
78
  InputProps: {
@@ -6,13 +6,17 @@ import { jsx as _jsx } from "react/jsx-runtime";
6
6
  const SignatureButton = 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 handleInsertSignature = () => {
12
16
  insertSignature(editor);
13
17
  };
14
18
  return /*#__PURE__*/_jsx(ToolbarIcon, {
15
- title: "Signature",
19
+ title: translation("Signature"),
16
20
  onClick: handleInsertSignature,
17
21
  icon: /*#__PURE__*/_jsx(Icon, {
18
22
  icon: "signature"
@@ -6,8 +6,12 @@ import { jsx as _jsx } from "react/jsx-runtime";
6
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
7
7
  const TypeSignature = props => {
8
8
  const {
9
- onDataChange
9
+ onDataChange,
10
+ customProps
10
11
  } = props;
12
+ const {
13
+ translation
14
+ } = customProps;
11
15
  const [name, setName] = useState("");
12
16
  const [fontFamily, setFontFamily] = useState("");
13
17
  const onChange = e => {
@@ -44,7 +48,7 @@ const TypeSignature = props => {
44
48
  warp: "noWarp",
45
49
  maxWidth: "120px"
46
50
  },
47
- children: name || "Signature"
51
+ children: name || translation("Signature")
48
52
  })
49
53
  })
50
54
  }, `typesign-ff-${m.value}`);
@@ -9,6 +9,9 @@ const UploadSignature = props => {
9
9
  customProps,
10
10
  onUploadDone
11
11
  } = props;
12
+ const {
13
+ translation
14
+ } = customProps;
12
15
  const [base64, setBase64] = useState(null);
13
16
  const [uploading, setUploading] = useState(false);
14
17
  const onChange = async e => {
@@ -54,7 +57,7 @@ const UploadSignature = props => {
54
57
  sx: {
55
58
  ml: 1
56
59
  },
57
- children: "Upload your signature"
60
+ children: translation("Upload your signature")
58
61
  })]
59
62
  })
60
63
  })]
@@ -31,7 +31,8 @@ const SignaturePopup = props => {
31
31
  const {
32
32
  readOnly,
33
33
  metadata,
34
- isSignerDetailsRequired = false
34
+ isSignerDetailsRequired = false,
35
+ translation
35
36
  } = customProps;
36
37
  const [open, setOpen] = useState(false);
37
38
  const [tab, setTab] = useState(0);
@@ -67,7 +68,7 @@ const SignaturePopup = props => {
67
68
  isValidEmail = validationMethods?.isEmail(signedData?.signedByEmail);
68
69
  }
69
70
  if (isValidEmail === "Enter valid email address") {
70
- alert(isValidEmail);
71
+ alert(translation(isValidEmail));
71
72
  } else {
72
73
  onSave(signedData);
73
74
  // manual delay
@@ -140,14 +141,14 @@ const SignaturePopup = props => {
140
141
  style: {
141
142
  color: "#A2B0B9"
142
143
  },
143
- children: "Your sign will be placed here"
144
+ children: translation("Your sign will be placed here")
144
145
  })]
145
146
  }), /*#__PURE__*/_jsx(Button, {
146
147
  onClick: handleOpen,
147
148
  style: {
148
149
  width: "fit-content"
149
150
  },
150
- children: "Sign here"
151
+ children: translation("Sign here")
151
152
  })]
152
153
  }), /*#__PURE__*/_jsx(Dialog, {
153
154
  className: `${className} dialogComp`,
@@ -184,7 +185,7 @@ const SignaturePopup = props => {
184
185
  variant: "h6",
185
186
  color: "primary",
186
187
  sx: classes.popupTitle2,
187
- children: "Signature"
188
+ children: translation("Signature")
188
189
  })
189
190
  }), /*#__PURE__*/_jsx(Grid, {
190
191
  item: true,
@@ -231,7 +232,7 @@ const SignaturePopup = props => {
231
232
  style: {
232
233
  textTransform: "none"
233
234
  },
234
- children: "Draw Signature"
235
+ children: translation("Draw Signature")
235
236
  })]
236
237
  })
237
238
  }), /*#__PURE__*/_jsx(Tab, {
@@ -244,7 +245,7 @@ const SignaturePopup = props => {
244
245
  style: {
245
246
  textTransform: "none"
246
247
  },
247
- children: "Type Signature"
248
+ children: translation("Type Signature")
248
249
  })]
249
250
  })
250
251
  }), /*#__PURE__*/_jsx(Tab, {
@@ -257,7 +258,7 @@ const SignaturePopup = props => {
257
258
  style: {
258
259
  textTransform: "none"
259
260
  },
260
- children: "Upload Signature"
261
+ children: translation("Upload Signature")
261
262
  })]
262
263
  })
263
264
  })]
@@ -303,7 +304,7 @@ const SignaturePopup = props => {
303
304
  fontWeight: 500,
304
305
  fontSize: "14px"
305
306
  },
306
- children: "Name:"
307
+ children: translation("nameField")
307
308
  })
308
309
  }), /*#__PURE__*/_jsx(Grid, {
309
310
  item: true,
@@ -312,7 +313,7 @@ const SignaturePopup = props => {
312
313
  fullWidth: true,
313
314
  id: "signedBy",
314
315
  name: "signedBy",
315
- placeholder: "Enter Name",
316
+ placeholder: translation("Enter Name"),
316
317
  value: signedData.signedBy || ""
317
318
  // defaultValue={defaultName || ""}
318
319
  ,
@@ -340,7 +341,7 @@ const SignaturePopup = props => {
340
341
  fontWeight: 500,
341
342
  fontSize: "14px"
342
343
  },
343
- children: "Date:"
344
+ children: translation("dateField")
344
345
  })
345
346
  }), /*#__PURE__*/_jsx(Grid, {
346
347
  item: true,
@@ -361,7 +362,7 @@ const SignaturePopup = props => {
361
362
  customInput: /*#__PURE__*/_jsx(TextField, {
362
363
  fullWidth: true,
363
364
  name: "signedOn",
364
- placeholder: "Select Date",
365
+ placeholder: translation("Select Date"),
365
366
  size: "small",
366
367
  InputProps: {
367
368
  startAdornment: /*#__PURE__*/_jsx(InputAdornment, {
@@ -431,7 +432,7 @@ const SignaturePopup = props => {
431
432
  fontWeight: 500,
432
433
  fontSize: "14px"
433
434
  },
434
- children: "Email:"
435
+ children: translation("emailField")
435
436
  })
436
437
  }), /*#__PURE__*/_jsx(Grid, {
437
438
  container: true,
@@ -440,7 +441,7 @@ const SignaturePopup = props => {
440
441
  fullWidth: true,
441
442
  id: "signedByEmail",
442
443
  name: "signedByEmail",
443
- placeholder: "Enter Email",
444
+ placeholder: translation("Enter Email"),
444
445
  size: "small",
445
446
  onChange: onChange,
446
447
  sx: classes.signaturePopUpNameField,
@@ -518,12 +519,12 @@ const SignaturePopup = props => {
518
519
  children: [!readOnly ? /*#__PURE__*/_jsx(Button, {
519
520
  onClick: handleClear,
520
521
  className: `secondaryBtn actionBtn deleteBtn deleteButtonSignature`,
521
- children: "Delete"
522
+ children: translation("Delete")
522
523
  }) : null, /*#__PURE__*/_jsx(Button, {
523
524
  onClick: handleSave,
524
525
  className: `primaryBtn actionBtn ${isEmpty ? "disabled disabledSaveBtn" : ""}`,
525
526
  disabled: isEmpty,
526
- children: "Save"
527
+ children: translation("Save")
527
528
  })]
528
529
  })]
529
530
  })]
@@ -24,7 +24,8 @@ const SimpleText = props => {
24
24
  } = props;
25
25
  const {
26
26
  readOnly,
27
- editorPlaceholder
27
+ editorPlaceholder,
28
+ translation
28
29
  } = customProps;
29
30
  // const { element: pageSt } = getPageSettings(editor) || {};
30
31
  // const { pageColor } = pageSt?.pageProps || {};
@@ -46,15 +47,15 @@ const SimpleText = props => {
46
47
  }, children, openAI ? null : /*#__PURE__*/_jsx("span", {
47
48
  contentEditable: false,
48
49
  className: "placeholder-simple-text",
49
- children: isEmptyEditor ? editorPlaceholder || "Write Something..." : showPlaceHolder ? opacity && selected ? /*#__PURE__*/_jsxs(_Fragment, {
50
- children: ["Type", " ", /*#__PURE__*/_jsx("span", {
50
+ children: isEmptyEditor ? editorPlaceholder || translation("writeSomethingPlaceHolder") : showPlaceHolder ? opacity && selected ? /*#__PURE__*/_jsxs(_Fragment, {
51
+ children: [translation("Type"), " ", /*#__PURE__*/_jsx("span", {
51
52
  style: {
52
53
  backgroundColor: "#F2F6FA",
53
54
  padding: "0px 2px",
54
55
  borderRadius: "2px"
55
56
  },
56
57
  children: "/"
57
- }), " ", "to browse elements"]
58
+ }), " ", translation("browseElementText")]
58
59
  }) : "" : ""
59
60
  }));
60
61
  };
@@ -29,7 +29,8 @@ function DragButton({
29
29
  const dragElement = useRef(null);
30
30
  const [showTool, setShowTool] = useState(false);
31
31
  const {
32
- isMobile
32
+ isMobile,
33
+ translation
33
34
  } = customProps || {};
34
35
  const onDragClick = () => {
35
36
  onDrag();
@@ -62,7 +63,8 @@ function DragButton({
62
63
  hideDelete,
63
64
  handleToolAction: (value, option, dragType) => {
64
65
  handleAction(value, option, dragType);
65
- }
66
+ },
67
+ translation
66
68
  };
67
69
  return /*#__PURE__*/_jsx(_Fragment, {
68
70
  children: show || showTool ? /*#__PURE__*/_jsxs(_Fragment, {
@@ -27,7 +27,8 @@ const hideRowDragBtns = (hide, dragRowBtnCls) => {
27
27
  const ToolTableComponent = props => {
28
28
  const {
29
29
  handleAction,
30
- editorTheme
30
+ editorTheme,
31
+ translation
31
32
  } = props;
32
33
  const {
33
34
  updateTableSelection
@@ -39,7 +40,8 @@ const ToolTableComponent = props => {
39
40
  if (type === "duplicate") {
40
41
  updateTableSelection(getDefaultTableSelection());
41
42
  }
42
- }
43
+ },
44
+ translation: translation
43
45
  });
44
46
  };
45
47
  const MoreTableSettings = props => {
@@ -48,9 +50,13 @@ const MoreTableSettings = props => {
48
50
  handleAction,
49
51
  editorTheme,
50
52
  setExpandTools,
51
- classes
53
+ classes,
54
+ customProps
52
55
  } = props;
53
56
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
57
+ const {
58
+ translation
59
+ } = customProps;
54
60
  return isMobile ? /*#__PURE__*/_jsx(SwipeableDrawerComponent, {
55
61
  open: Boolean(exandTools),
56
62
  onClose: () => {
@@ -61,7 +67,8 @@ const MoreTableSettings = props => {
61
67
  sx: classes.mobileToolDrawer,
62
68
  children: /*#__PURE__*/_jsx(ToolTableComponent, {
63
69
  handleAction: handleAction,
64
- editorTheme: editorTheme
70
+ editorTheme: editorTheme,
71
+ translation: translation
65
72
  })
66
73
  })
67
74
  }) : /*#__PURE__*/_jsx(Popper, {
@@ -77,7 +84,8 @@ const MoreTableSettings = props => {
77
84
  children: /*#__PURE__*/_jsx("div", {
78
85
  children: /*#__PURE__*/_jsx(ToolTableComponent, {
79
86
  handleAction: handleAction,
80
- editorTheme: editorTheme
87
+ editorTheme: editorTheme,
88
+ translation: translation
81
89
  })
82
90
  })
83
91
  })
@@ -92,6 +100,7 @@ const ToolBar = props => {
92
100
  handleAction,
93
101
  exandTools,
94
102
  openSetttings,
103
+ translation,
95
104
  hideTools
96
105
  } = props;
97
106
  const {
@@ -105,7 +114,7 @@ const ToolBar = props => {
105
114
  sx: classes.tableToolBar,
106
115
  children: !hideTools.includes("settings") ? /*#__PURE__*/_jsxs(_Fragment, {
107
116
  children: [/*#__PURE__*/_jsx(Tooltip, {
108
- title: "Settings",
117
+ title: translation("Settings"),
109
118
  arrow: true,
110
119
  onClick: () => handleAction("settings"),
111
120
  children: /*#__PURE__*/_jsx(IconButton, {
@@ -113,7 +122,7 @@ const ToolBar = props => {
113
122
  children: /*#__PURE__*/_jsx(SettingsIcon, {})
114
123
  })
115
124
  }), /*#__PURE__*/_jsx(Tooltip, {
116
- title: "Show Tools",
125
+ title: translation("Show Tools"),
117
126
  arrow: true,
118
127
  onClick: handleExpand,
119
128
  children: /*#__PURE__*/_jsx(IconButton, {
@@ -147,7 +156,8 @@ const Table = props => {
147
156
  const {
148
157
  readOnly,
149
158
  isMobile,
150
- hideTools = []
159
+ hideTools = [],
160
+ translation
151
161
  } = customProps;
152
162
  const [openSetttings, setOpenSettings] = useState(false);
153
163
  const [exandTools, setExpandTools] = useState(null);
@@ -335,13 +345,15 @@ const Table = props => {
335
345
  handleAction: handleAction,
336
346
  exandTools: exandTools,
337
347
  openSetttings: openSetttings,
348
+ translation: translation,
338
349
  hideTools: hideTools
339
350
  }), /*#__PURE__*/_jsx(MoreTableSettings, {
340
351
  exandTools: exandTools,
341
352
  handleAction: handleAction,
342
353
  editorTheme: editorTheme,
343
354
  setExpandTools: setExpandTools,
344
- classes: classes
355
+ classes: classes,
356
+ customProps: customProps
345
357
  }), openSetttings ? /*#__PURE__*/_jsx(TablePopup, {
346
358
  element: tableProps?.styleProps || {},
347
359
  onSave: onSave,
@@ -15,8 +15,11 @@ const TablePopup = props => {
15
15
  styleType
16
16
  } = props;
17
17
  const styles = STYLE_TYPES[styleType] || tableStyle;
18
+ const {
19
+ translation
20
+ } = customProps;
18
21
  return /*#__PURE__*/_jsx(StyleBuilder, {
19
- title: "Table",
22
+ title: translation("Table"),
20
23
  type: "gridStyle",
21
24
  element: element,
22
25
  onSave: onSave,
@@ -10,7 +10,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
10
10
  import { jsxs as _jsxs } from "react/jsx-runtime";
11
11
  const TableSelector = ({
12
12
  editor,
13
- icoBtnType
13
+ icoBtnType,
14
+ customProps
14
15
  }) => {
15
16
  const tableOptionsRef = useRef();
16
17
  const [selection, setSelection] = useState();
@@ -20,6 +21,9 @@ const TableSelector = ({
20
21
  column: 2
21
22
  });
22
23
  const table = new TableUtil(editor);
24
+ const {
25
+ translation
26
+ } = customProps;
23
27
  const handleButtonClick = () => {
24
28
  setSelection(editor.selection);
25
29
  setShowOptions(true);
@@ -72,7 +76,7 @@ const TableSelector = ({
72
76
  variant: "h6",
73
77
  className: "popupTitle",
74
78
  color: "primary",
75
- children: "Table"
79
+ children: translation("Table")
76
80
  }), /*#__PURE__*/_jsx(Grid, {
77
81
  style: {
78
82
  display: "flex"
@@ -110,7 +114,7 @@ const TableSelector = ({
110
114
  fontSize: "14px",
111
115
  fontWeight: 500
112
116
  },
113
- children: "No.of Rows"
117
+ children: translation("numberOfRow")
114
118
  })
115
119
  }), /*#__PURE__*/_jsx(TextField, {
116
120
  fullWidth: true,
@@ -137,7 +141,7 @@ const TableSelector = ({
137
141
  fontSize: "14px",
138
142
  fontWeight: 500
139
143
  },
140
- children: "No.of Columns"
144
+ children: translation("numberOfCoumns")
141
145
  })
142
146
  }), /*#__PURE__*/_jsx(TextField, {
143
147
  fullWidth: true,
@@ -158,11 +162,11 @@ const TableSelector = ({
158
162
  children: [/*#__PURE__*/_jsx(Button, {
159
163
  onClick: onCancel,
160
164
  className: "secondaryBtn",
161
- children: "Cancel"
165
+ children: translation("Cancel")
162
166
  }), /*#__PURE__*/_jsx(Button, {
163
167
  onClick: handleInsert,
164
168
  className: "primaryBtn",
165
- children: "Save"
169
+ children: translation("Save")
166
170
  })]
167
171
  })]
168
172
  })