@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
@@ -9,8 +9,12 @@ import { Fragment as _Fragment } from "react/jsx-runtime";
9
9
  const ColorboxButton = props => {
10
10
  const editor = useSlateStatic();
11
11
  const {
12
- icoBtnType
12
+ icoBtnType,
13
+ customProps
13
14
  } = props;
15
+ const {
16
+ translation
17
+ } = customProps;
14
18
  const onClick = () => {
15
19
  toggleBlock(editor, "blockquote", false, {
16
20
  bgColor: "rgb(227, 236, 255)"
@@ -19,7 +23,7 @@ const ColorboxButton = props => {
19
23
  };
20
24
  return /*#__PURE__*/_jsx(_Fragment, {
21
25
  children: /*#__PURE__*/_jsx(ToolbarIcon, {
22
- title: "Colorbox",
26
+ title: translation("Colorbox"),
23
27
  onClick: onClick,
24
28
  icon: /*#__PURE__*/_jsx(Icon, {
25
29
  icon: "colorbox"
@@ -24,7 +24,8 @@ const DataView = props => {
24
24
  } = props;
25
25
  const {
26
26
  CHARACTERS,
27
- readOnly
27
+ readOnly,
28
+ translation
28
29
  } = customProps || {};
29
30
  const {
30
31
  properties,
@@ -121,9 +122,11 @@ const DataView = props => {
121
122
  readOnly: readOnly,
122
123
  title: title,
123
124
  onTitleChange: onTitleChange,
124
- path: path
125
+ path: path,
126
+ translation: translation
125
127
  }), /*#__PURE__*/_jsx(LayoutView, {
126
128
  readOnly: readOnly,
129
+ translation: translation,
127
130
  children: children
128
131
  })]
129
132
  })
@@ -6,13 +6,17 @@ import { jsx as _jsx } from "react/jsx-runtime";
6
6
  const DataViewButton = 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 onClick = () => {
12
16
  insertDataView(editor);
13
17
  };
14
18
  return /*#__PURE__*/_jsx(ToolbarIcon, {
15
- title: "Dynamic Table",
19
+ title: translation("Dynamic Table"),
16
20
  onClick: onClick,
17
21
  icon: /*#__PURE__*/_jsx(Icon, {
18
22
  icon: "dataTable"
@@ -2,22 +2,23 @@ import React from "react";
2
2
  import { Box } from "@mui/material";
3
3
  import SimpleSelect from "../../DataTypes/Components/SimpleSelect";
4
4
  import { jsx as _jsx } from "react/jsx-runtime";
5
- const SORT_LABELS = {
6
- asc: "Ascending",
7
- desc: "Descending"
8
- };
9
- const SORT_OPTIONS = [{
10
- key: "asc",
11
- label: SORT_LABELS.asc
12
- }, {
13
- key: "desc",
14
- label: SORT_LABELS.desc
15
- }];
16
5
  const ChooseSort = props => {
17
6
  const {
18
7
  sort,
19
- onChange
8
+ onChange,
9
+ translation
20
10
  } = props;
11
+ const SORT_LABELS = {
12
+ asc: translation("Ascending"),
13
+ desc: translation("Descending")
14
+ };
15
+ const SORT_OPTIONS = [{
16
+ key: "asc",
17
+ label: SORT_LABELS.asc
18
+ }, {
19
+ key: "desc",
20
+ label: SORT_LABELS.desc
21
+ }];
21
22
  const handleChange = e => {
22
23
  onChange(sort, {
23
24
  operator: e?.target?.value
@@ -9,7 +9,8 @@ import { jsx as _jsx } from "react/jsx-runtime";
9
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
10
  const SortOptions = props => {
11
11
  const {
12
- onClose
12
+ onClose,
13
+ translation
13
14
  } = props;
14
15
  const {
15
16
  properties,
@@ -54,10 +55,12 @@ const SortOptions = props => {
54
55
  children: [/*#__PURE__*/_jsx(ChooseField, {
55
56
  sort: m,
56
57
  properties: properties,
57
- onChange: handleSortChange
58
+ onChange: handleSortChange,
59
+ translation: translation
58
60
  }), /*#__PURE__*/_jsx(ChooseSort, {
59
61
  sort: m,
60
- onChange: handleSortChange
62
+ onChange: handleSortChange,
63
+ translation: translation
61
64
  })]
62
65
  })
63
66
  }, i);
@@ -75,7 +78,7 @@ const SortOptions = props => {
75
78
  icon: 'trashIcon'
76
79
  })
77
80
  }), /*#__PURE__*/_jsx(ListItemText, {
78
- children: "Delete Sort"
81
+ children: translation("Delete Sort")
79
82
  })]
80
83
  })]
81
84
  }) : /*#__PURE__*/_jsx(ColumnsList, {
@@ -15,20 +15,22 @@ const FilterSort = props => {
15
15
  open,
16
16
  mode,
17
17
  anchorEl,
18
- onClose
18
+ onClose,
19
+ translation
19
20
  } = props;
20
21
  const classes = useFilterSortStyles(theme, appTheme);
21
22
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
22
23
  const PoperComponent = isMobile ? SwipeableDrawer : Popover;
23
24
  const renderMode = () => {
24
25
  if (mode?.type === "filter") {
25
- return "Filter Mode will be availbele soon";
26
+ return translation("filterModeAvilableSoon");
26
27
  } else if (mode?.type === "sort") {
27
28
  return /*#__PURE__*/_jsx(SortOptions, {
28
- onClose: onClose
29
+ onClose: onClose,
30
+ translation: translation
29
31
  });
30
32
  } else {
31
- return "Unknown Filter / Sort Mode";
33
+ return translation("unKnownFilter");
32
34
  }
33
35
  };
34
36
  return /*#__PURE__*/_jsx(PoperComponent, {
@@ -50,7 +52,7 @@ const FilterSort = props => {
50
52
  children: [/*#__PURE__*/_jsxs(Box, {
51
53
  className: "fe-dv-ap-title",
52
54
  children: [/*#__PURE__*/_jsx("span", {
53
- children: "Sort By"
55
+ children: translation("Sort By")
54
56
  }), /*#__PURE__*/_jsx(IconButton, {
55
57
  className: "tv-act-ico bg br1",
56
58
  size: "small",
@@ -17,7 +17,8 @@ const FilterView = props => {
17
17
  readOnly,
18
18
  title,
19
19
  onTitleChange,
20
- path
20
+ path,
21
+ translation
21
22
  } = props;
22
23
  const {
23
24
  sort,
@@ -92,7 +93,7 @@ const FilterView = props => {
92
93
  fontSize: "16px"
93
94
  },
94
95
  size: "small",
95
- placeholder: "Untitled",
96
+ placeholder: translation("Untitled"),
96
97
  inputProps: {
97
98
  "aria-label": "Table Name",
98
99
  maxLength: 100
@@ -101,7 +102,7 @@ const FilterView = props => {
101
102
  onChange: handleTitleChange,
102
103
  onKeyUp: handleEnter,
103
104
  id: `tv-title-input-${path.join("|")}`
104
- }) : title || "Untitled"
105
+ }) : title || translation("Untitled")
105
106
  }), /*#__PURE__*/_jsxs(Box, {
106
107
  className: "tv-fi-wrpr",
107
108
  sx: {
@@ -130,7 +131,7 @@ const FilterView = props => {
130
131
  paddingBottom: "0px"
131
132
  },
132
133
  size: "small",
133
- placeholder: "Search here",
134
+ placeholder: translation("Search here"),
134
135
  inputProps: {
135
136
  "aria-label": "search google maps"
136
137
  },
@@ -152,7 +153,8 @@ const FilterView = props => {
152
153
  open: open,
153
154
  anchorEl: anchorEl,
154
155
  mode: mode,
155
- onClose: onClose
156
+ onClose: onClose,
157
+ translation: translation
156
158
  }), !readOnly ? /*#__PURE__*/_jsx(IconButton, {
157
159
  className: "mr",
158
160
  sx: {
@@ -196,7 +198,7 @@ const FilterView = props => {
196
198
  children: /*#__PURE__*/_jsx(Icon, {
197
199
  icon: "duplicateIcon"
198
200
  })
199
- }), "Duplicate"]
201
+ }), translation("Duplicate")]
200
202
  }), /*#__PURE__*/_jsxs(MenuItem, {
201
203
  onClick: onMenuClick("Delete"),
202
204
  children: [" ", /*#__PURE__*/_jsx(Box, {
@@ -208,7 +210,7 @@ const FilterView = props => {
208
210
  children: /*#__PURE__*/_jsx(Icon, {
209
211
  icon: "trashIcon"
210
212
  })
211
- }), "Delete"]
213
+ }), translation("Delete")]
212
214
  })]
213
215
  }) : null]
214
216
  })]
@@ -9,7 +9,8 @@ const AddOptions = props => {
9
9
  const {
10
10
  edit,
11
11
  onUpdate,
12
- onEvent
12
+ onEvent,
13
+ translation
13
14
  } = props;
14
15
  const [addBox, setAddBox] = useState(false);
15
16
  const [value, setValue] = useState("");
@@ -69,7 +70,7 @@ const AddOptions = props => {
69
70
  icon: 'plusIcon'
70
71
  })
71
72
  }), /*#__PURE__*/_jsx(ListItemText, {
72
- primary: "Add Options"
73
+ primary: translation("Add Options")
73
74
  })]
74
75
  })
75
76
  }), addBox ? /*#__PURE__*/_jsx(Box, {
@@ -8,7 +8,8 @@ const AddProperty = props => {
8
8
  const {
9
9
  classes,
10
10
  onClose,
11
- onEvent
11
+ onEvent,
12
+ translation
12
13
  } = props;
13
14
  const onSelect = type => () => {
14
15
  onEvent("addProperty", type);
@@ -17,7 +18,7 @@ const AddProperty = props => {
17
18
  sx: classes.addProperty,
18
19
  children: [/*#__PURE__*/_jsxs(Box, {
19
20
  className: "fe-dv-ap-title",
20
- children: ["Add Property", /*#__PURE__*/_jsx(IconButton, {
21
+ children: [translation("Add Property"), /*#__PURE__*/_jsx(IconButton, {
21
22
  className: "tv-act-ico bg br1",
22
23
  size: "small",
23
24
  onClick: onClose,
@@ -33,7 +34,8 @@ const AddProperty = props => {
33
34
  }), /*#__PURE__*/_jsx(Box, {
34
35
  className: "fe-dv-ap-opt-content mt",
35
36
  children: /*#__PURE__*/_jsx(PropertyList, {
36
- onSelect: onSelect
37
+ onSelect: onSelect,
38
+ translation: translation
37
39
  })
38
40
  })]
39
41
  });
@@ -11,7 +11,8 @@ const AllProperties = props => {
11
11
  const {
12
12
  classes,
13
13
  onClose,
14
- onEvent
14
+ onEvent,
15
+ translation
15
16
  } = props;
16
17
  const {
17
18
  properties,
@@ -40,7 +41,7 @@ const AllProperties = props => {
40
41
  sx: classes.addProperty,
41
42
  children: [/*#__PURE__*/_jsxs(Box, {
42
43
  className: "fe-dv-ap-title",
43
- children: ["Properties", /*#__PURE__*/_jsx(IconButton, {
44
+ children: [translation("Properties"), /*#__PURE__*/_jsx(IconButton, {
44
45
  className: "tv-act-ico bg br1",
45
46
  size: "small",
46
47
  onClick: onClose,
@@ -55,7 +56,7 @@ const AllProperties = props => {
55
56
  })]
56
57
  }), /*#__PURE__*/_jsx(Box, {
57
58
  className: "fe-dv-ap-desc",
58
- children: "Displayed Properties"
59
+ children: translation("Displayed Properties")
59
60
  }), /*#__PURE__*/_jsxs(Box, {
60
61
  className: "fe-dv-ap-opt-content",
61
62
  children: [/*#__PURE__*/_jsx(List, {
@@ -92,7 +93,7 @@ const AllProperties = props => {
92
93
  }), hiddenProperties?.length > 0 ? /*#__PURE__*/_jsxs(_Fragment, {
93
94
  children: [/*#__PURE__*/_jsx(Box, {
94
95
  className: "fe-dv-ap-desc",
95
- children: "Hidden Properties"
96
+ children: translation("Hidden Properties")
96
97
  }), /*#__PURE__*/_jsx(List, {
97
98
  className: "fe-dv-opt-list",
98
99
  children: hiddenProperties?.map((m, i) => {
@@ -135,7 +136,7 @@ const AllProperties = props => {
135
136
  icon: 'plusIcon'
136
137
  })
137
138
  }), /*#__PURE__*/_jsx(ListItemText, {
138
- children: "Add New Property"
139
+ children: translation("Add New Property")
139
140
  })]
140
141
  })
141
142
  })]
@@ -10,7 +10,8 @@ const ChangeProperty = props => {
10
10
  classes,
11
11
  onClose,
12
12
  onEvent,
13
- mode
13
+ mode,
14
+ translation
14
15
  } = props;
15
16
  const onSelect = property => () => {
16
17
  onEvent("updateProperty", {
@@ -47,7 +48,7 @@ const ChangeProperty = props => {
47
48
  children: /*#__PURE__*/_jsx(Icon, {
48
49
  icon: 'leftArrow'
49
50
  })
50
- }), "Change Property"]
51
+ }), translation("Change Property")]
51
52
  }), /*#__PURE__*/_jsx(IconButton, {
52
53
  className: "tv-act-ico bg br1",
53
54
  size: "small",
@@ -68,7 +69,8 @@ const ChangeProperty = props => {
68
69
  className: "fe-dv-ap-opt-content mt",
69
70
  children: /*#__PURE__*/_jsx(PropertyList, {
70
71
  onSelect: onSelect,
71
- selected: mode?.edit
72
+ selected: mode?.edit,
73
+ translation: translation
72
74
  })
73
75
  })]
74
76
  });
@@ -13,7 +13,8 @@ const EditOption = props => {
13
13
  classes,
14
14
  onClose,
15
15
  mode,
16
- onEvent
16
+ onEvent,
17
+ translation
17
18
  } = props;
18
19
  const [edit, setEdit] = useState({
19
20
  ...(mode?.edit || {})
@@ -110,7 +111,7 @@ const EditOption = props => {
110
111
  children: /*#__PURE__*/_jsx(Icon, {
111
112
  icon: 'leftArrow'
112
113
  })
113
- }), "Edit Option"]
114
+ }), translation("Edit Option")]
114
115
  }), /*#__PURE__*/_jsx(IconButton, {
115
116
  className: "tv-act-ico bg br1",
116
117
  size: "small",
@@ -128,14 +129,14 @@ const EditOption = props => {
128
129
  className: "fe-dv-ap-opt-content mt-1 mb",
129
130
  children: /*#__PURE__*/_jsx(FormControlLabel, {
130
131
  className: "ml-0",
131
- label: "Option Name",
132
+ label: translation("Option Name"),
132
133
  control: /*#__PURE__*/_jsx(TextField, {
133
134
  size: "small",
134
135
  name: "value",
135
136
  value: selectedOption?.value,
136
137
  onChange: onChange,
137
138
  fullWidth: true,
138
- placeholder: "Option Name"
139
+ placeholder: translation("Option Name")
139
140
  }),
140
141
  labelPlacement: "top"
141
142
  })
@@ -143,7 +144,7 @@ const EditOption = props => {
143
144
  className: "label-desc mt-1",
144
145
  children: [/*#__PURE__*/_jsx(Box, {
145
146
  className: "label-tp mb",
146
- children: "Choose Color"
147
+ children: translation("Choose Color")
147
148
  }), /*#__PURE__*/_jsx(Box, {
148
149
  className: "ml",
149
150
  children: /*#__PURE__*/_jsx(ColorButtons, {
@@ -162,7 +163,7 @@ const EditOption = props => {
162
163
  icon: 'trashIcon'
163
164
  })
164
165
  }), /*#__PURE__*/_jsx(ListItemText, {
165
- children: "Delete Option"
166
+ children: translation("Delete Option")
166
167
  })]
167
168
  })
168
169
  })]
@@ -13,7 +13,8 @@ const EditProperty = props => {
13
13
  classes,
14
14
  onClose,
15
15
  mode,
16
- onEvent
16
+ onEvent,
17
+ translation
17
18
  } = props;
18
19
  const [edit, setEdit] = useState({
19
20
  ...(mode?.edit || {})
@@ -129,7 +130,7 @@ const EditProperty = props => {
129
130
  children: /*#__PURE__*/_jsx(Icon, {
130
131
  icon: "leftArrow"
131
132
  })
132
- }), "Edit Property"]
133
+ }), translation("Edit Property")]
133
134
  }), /*#__PURE__*/_jsx(IconButton, {
134
135
  className: "tv-act-ico bg br1",
135
136
  size: "small",
@@ -146,7 +147,7 @@ const EditProperty = props => {
146
147
  }), /*#__PURE__*/_jsxs(Box, {
147
148
  className: "fe-dv-ap-opt-content",
148
149
  children: [/*#__PURE__*/_jsx(FormControlLabel, {
149
- label: "Field Name",
150
+ label: translation("Field Name"),
150
151
  labelPlacement: "top",
151
152
  sx: {
152
153
  "& .MuiFormControl-root": {
@@ -158,7 +159,7 @@ const EditProperty = props => {
158
159
  value: edit?.label,
159
160
  onChange: onChange("label"),
160
161
  fullWidth: true,
161
- placeholder: "Field Name"
162
+ placeholder: translation("Field Name")
162
163
  })
163
164
  }), needWrap ? /*#__PURE__*/_jsx(List, {
164
165
  className: "fe-dv-opt-list",
@@ -182,7 +183,7 @@ const EditProperty = props => {
182
183
  },
183
184
  onClick: onChangeProperty,
184
185
  children: [/*#__PURE__*/_jsx(ListItemText, {
185
- children: "Type"
186
+ children: translation("Type")
186
187
  }), /*#__PURE__*/_jsxs(ListItemIcon, {
187
188
  sx: {
188
189
  display: "flex",
@@ -206,7 +207,7 @@ const EditProperty = props => {
206
207
  })
207
208
  }), /*#__PURE__*/_jsx("span", {
208
209
  className: "label-tp",
209
- children: TYPE_LABELS[edit?.type]
210
+ children: translation(TYPE_LABELS[edit?.type])
210
211
  }), /*#__PURE__*/_jsx(Icon, {
211
212
  icon: "rightArrow"
212
213
  })]
@@ -217,11 +218,13 @@ const EditProperty = props => {
217
218
  }), /*#__PURE__*/_jsx(AddOptions, {
218
219
  edit: edit,
219
220
  onUpdate: onUpdate,
220
- onEvent: onEvent
221
+ onEvent: onEvent,
222
+ translation: translation
221
223
  }), /*#__PURE__*/_jsx(FilterProperty, {
222
224
  edit: edit,
223
225
  onUpdate: onUpdate,
224
- onEvent: onEvent
226
+ onEvent: onEvent,
227
+ translation: translation
225
228
  }), /*#__PURE__*/_jsxs(List, {
226
229
  className: "fe-dv-opt-list",
227
230
  children: [/*#__PURE__*/_jsxs(ListItemButton, {
@@ -232,8 +235,8 @@ const EditProperty = props => {
232
235
  }) : /*#__PURE__*/_jsx(Icon, {
233
236
  icon: "eyeIcon"
234
237
  })
235
- }), /*#__PURE__*/_jsxs(ListItemText, {
236
- children: [edit?.visible ? "Hide" : "Show", " in View"]
238
+ }), /*#__PURE__*/_jsx(ListItemText, {
239
+ children: `${edit?.visible ? translation("Hide") : translation("Show")} ${translation("in View")}`
237
240
  })]
238
241
  }), /*#__PURE__*/_jsxs(ListItemButton, {
239
242
  onClick: onAction("Duplicate"),
@@ -242,7 +245,7 @@ const EditProperty = props => {
242
245
  icon: "duplicateIcon"
243
246
  })
244
247
  }), /*#__PURE__*/_jsx(ListItemText, {
245
- children: "Duplicate Property"
248
+ children: translation("Duplicate Property")
246
249
  })]
247
250
  }), /*#__PURE__*/_jsxs(ListItemButton, {
248
251
  onClick: onAction("Delete"),
@@ -251,7 +254,7 @@ const EditProperty = props => {
251
254
  icon: "trashIcon"
252
255
  })
253
256
  }), /*#__PURE__*/_jsx(ListItemText, {
254
- children: "Delete Property"
257
+ children: translation("Delete Property")
255
258
  })]
256
259
  })]
257
260
  })]
@@ -11,7 +11,8 @@ const FilterProperty = props => {
11
11
  } = useDataView();
12
12
  const {
13
13
  edit,
14
- onEvent
14
+ onEvent,
15
+ translation
15
16
  } = props;
16
17
  const handleChangeOption = m => () => {
17
18
  onEvent("addSort", {
@@ -33,7 +34,7 @@ const FilterProperty = props => {
33
34
  icon: m?.Icon
34
35
  })
35
36
  }), /*#__PURE__*/_jsx(ListItemText, {
36
- primary: m.label
37
+ primary: translation(m.label)
37
38
  })]
38
39
  }, i);
39
40
  })
@@ -7,7 +7,8 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
7
7
  const PropertyList = props => {
8
8
  const {
9
9
  onSelect,
10
- selected
10
+ selected,
11
+ translation
11
12
  } = props;
12
13
  return /*#__PURE__*/_jsx(List, {
13
14
  children: PROPERTY_TYPES?.map(({
@@ -22,7 +23,7 @@ const PropertyList = props => {
22
23
  icon: rest?.Icon
23
24
  })
24
25
  }), /*#__PURE__*/_jsx(ListItemText, {
25
- primary: rest?.label
26
+ primary: translation(rest?.label)
26
27
  })]
27
28
  }, i);
28
29
  })
@@ -41,7 +41,8 @@ const PropertySettings = props => {
41
41
  anchorEl,
42
42
  mode,
43
43
  onClose,
44
- onEvent
44
+ onEvent,
45
+ translation
45
46
  } = props;
46
47
  const classes = useOptionsStyles(theme, appTheme);
47
48
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
@@ -53,35 +54,40 @@ const PropertySettings = props => {
53
54
  classes: classes,
54
55
  onClose: onClose,
55
56
  onEvent: onEvent,
56
- mode: mode
57
+ mode: mode,
58
+ translation: translation
57
59
  });
58
60
  case "editProperty":
59
61
  return /*#__PURE__*/_jsx(EditProperty, {
60
62
  classes: classes,
61
63
  onClose: onClose,
62
64
  onEvent: onEvent,
63
- mode: mode
65
+ mode: mode,
66
+ translation: translation
64
67
  });
65
68
  case "changeProperty":
66
69
  return /*#__PURE__*/_jsx(ChangeProperty, {
67
70
  classes: classes,
68
71
  onClose: onClose,
69
72
  onEvent: onEvent,
70
- mode: mode
73
+ mode: mode,
74
+ translation: translation
71
75
  });
72
76
  case "allProperties":
73
77
  return /*#__PURE__*/_jsx(AllProperties, {
74
78
  classes: classes,
75
79
  onClose: onClose,
76
80
  onEvent: onEvent,
77
- mode: mode
81
+ mode: mode,
82
+ translation: translation
78
83
  });
79
84
  case "editOption":
80
85
  return /*#__PURE__*/_jsx(EditOption, {
81
86
  classes: classes,
82
87
  onClose: onClose,
83
88
  onEvent: onEvent,
84
- mode: mode
89
+ mode: mode,
90
+ translation: translation
85
91
  });
86
92
  default:
87
93
  return null;
@@ -134,7 +134,8 @@ const TableView = props => {
134
134
  } = useEditorContext();
135
135
  const {
136
136
  children,
137
- readOnly
137
+ readOnly,
138
+ translation
138
139
  } = props;
139
140
  const theme = useTheme();
140
141
  const classes = useTableStyles(theme, appTheme);
@@ -166,7 +167,7 @@ const TableView = props => {
166
167
  case "addProperty":
167
168
  const np = onAddProperty({
168
169
  type: data?.type
169
- }, data?.overrides || {});
170
+ }, data?.overrides || {}, translation);
170
171
  if (navToEdit) {
171
172
  setMode({
172
173
  type: "editProperty",
@@ -336,14 +337,15 @@ const TableView = props => {
336
337
  startIcon: /*#__PURE__*/_jsx(Icon, {
337
338
  icon: "addRounded"
338
339
  }),
339
- children: "Add new row"
340
+ children: translation("Add new row")
340
341
  }) : null, open && !readOnly ? /*#__PURE__*/_jsx(PropertySettings, {
341
342
  open: open,
342
343
  anchorEl: anchorEl,
343
344
  mode: mode,
344
345
  properties: properties,
345
346
  onClose: onClose,
346
- onEvent: onEvent
347
+ onEvent: onEvent,
348
+ translation: translation
347
349
  }) : null]
348
350
  });
349
351
  };
@@ -9,7 +9,8 @@ const LAYOUT_COMPONENT = {
9
9
  const LayoutView = props => {
10
10
  const {
11
11
  readOnly,
12
- children
12
+ children,
13
+ translation
13
14
  } = props;
14
15
  const {
15
16
  layoutType
@@ -18,6 +19,7 @@ const LayoutView = props => {
18
19
  return /*#__PURE__*/_jsx(_Fragment, {
19
20
  children: /*#__PURE__*/_jsx(Layout, {
20
21
  readOnly: readOnly,
22
+ translation: translation,
21
23
  children: children
22
24
  })
23
25
  });