@flozy/editor 10.5.0 → 10.5.1

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 (192) hide show
  1. package/dist/Editor/ChatEditor.js +16 -17
  2. package/dist/Editor/CommonEditor.js +18 -134
  3. package/dist/Editor/DialogWrapper.js +25 -31
  4. package/dist/Editor/Editor.css +8 -46
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +3 -11
  6. package/dist/Editor/Elements/Accordion/Accordion.js +9 -46
  7. package/dist/Editor/Elements/Accordion/AccordionSummary.js +23 -1
  8. package/dist/Editor/Elements/AppHeader/AppHeader.js +5 -10
  9. package/dist/Editor/Elements/Button/EditorButton.js +10 -26
  10. package/dist/Editor/Elements/Carousel/CarouselItem.js +1 -2
  11. package/dist/Editor/Elements/Color Picker/ColorButtons.js +14 -61
  12. package/dist/Editor/Elements/Color Picker/ColorPicker.css +1 -25
  13. package/dist/Editor/Elements/Color Picker/ColorPicker.js +7 -10
  14. package/dist/Editor/Elements/Color Picker/Styles.js +13 -15
  15. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +2 -4
  16. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +11 -26
  17. package/dist/Editor/Elements/DataView/Layouts/DataTypes/SelectType.js +9 -28
  18. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +6 -17
  19. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +16 -43
  20. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +0 -11
  21. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +4 -8
  22. package/dist/Editor/Elements/Embed/Image.js +2 -3
  23. package/dist/Editor/Elements/Embed/Video.js +1 -1
  24. package/dist/Editor/Elements/EmbedScript/Code.js +2 -14
  25. package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +28 -57
  26. package/dist/Editor/Elements/Form/Form.js +171 -184
  27. package/dist/Editor/Elements/Form/FormElements/FormText.js +6 -23
  28. package/dist/Editor/Elements/Form/FormElements/FormTextArea.js +2 -2
  29. package/dist/Editor/Elements/Form/FormField.js +6 -13
  30. package/dist/Editor/Elements/Form/Workflow/Styles.js +22 -24
  31. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +32 -40
  32. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +4 -7
  33. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +0 -1
  34. package/dist/Editor/Elements/FreeGrid/Options/More.js +8 -8
  35. package/dist/Editor/Elements/FreeGrid/styles.js +7 -75
  36. package/dist/Editor/Elements/Grid/Grid.js +2 -14
  37. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  38. package/dist/Editor/Elements/List/CheckList.js +2 -3
  39. package/dist/Editor/Elements/Search/SearchAttachment.js +9 -40
  40. package/dist/Editor/Elements/Search/SearchButton.js +8 -9
  41. package/dist/Editor/Elements/Search/SearchList.js +7 -9
  42. package/dist/Editor/Elements/Signature/Signature.css +1 -2
  43. package/dist/Editor/Elements/Signature/SignatureOptions/DrawSignature.js +5 -18
  44. package/dist/Editor/Elements/Signature/SignatureOptions/UploadSignature.js +3 -16
  45. package/dist/Editor/Elements/SimpleText/index.js +1 -6
  46. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  47. package/dist/Editor/Elements/Table/AddRowCol.js +2 -8
  48. package/dist/Editor/Elements/Table/DragButton.js +1 -0
  49. package/dist/Editor/Elements/Table/Draggable.js +2 -6
  50. package/dist/Editor/Elements/Table/Styles.js +0 -7
  51. package/dist/Editor/Elements/Table/Table.js +3 -3
  52. package/dist/Editor/Elements/Table/TableCell.js +8 -31
  53. package/dist/Editor/Elements/Title/title.js +6 -6
  54. package/dist/Editor/Elements/Variables/VariableButton.js +1 -10
  55. package/dist/Editor/MiniEditor.js +1 -2
  56. package/dist/Editor/Styles/EditorStyles.js +5 -5
  57. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
  58. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
  59. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  60. package/dist/Editor/Toolbar/FormatTools/TextSize.js +13 -10
  61. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +1 -2
  62. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +2 -4
  63. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +13 -6
  64. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +42 -167
  65. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +4 -7
  66. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +1 -2
  67. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +12 -72
  68. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +27 -100
  69. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  70. package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
  71. package/dist/Editor/assets/svg/SettingsIcon.js +0 -1
  72. package/dist/Editor/common/ColorPickerButton.js +16 -41
  73. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  74. package/dist/Editor/common/FontLoader/FontLoader.js +0 -3
  75. package/dist/Editor/common/Icon.js +1 -31
  76. package/dist/Editor/common/ImageSelector/ImageSelector.js +2 -2
  77. package/dist/Editor/common/ImageSelector/Styles.js +9 -3
  78. package/dist/Editor/common/LinkSettings/NavComponents.js +55 -61
  79. package/dist/Editor/common/LinkSettings/index.js +80 -82
  80. package/dist/Editor/common/LinkSettings/navOptions.js +2 -2
  81. package/dist/Editor/common/LinkSettings/style.js +74 -209
  82. package/dist/Editor/common/MentionsPopup/index.js +1 -4
  83. package/dist/Editor/common/RnD/ElementOptions/Actions.js +15 -13
  84. package/dist/Editor/common/RnD/ElementOptions/Icons/LinkIcon.js +0 -1
  85. package/dist/Editor/common/RnD/ElementOptions/index.js +2 -2
  86. package/dist/Editor/common/RnD/ElementOptions/styles.js +1 -28
  87. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +5 -6
  88. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Signature.js +3 -4
  89. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
  90. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
  91. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
  92. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
  93. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -4
  94. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +2 -3
  95. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
  96. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +1 -3
  97. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +2 -3
  98. package/dist/Editor/common/RnD/ElementSettings/styles.js +12 -146
  99. package/dist/Editor/common/RnD/OptionsPopup/index.js +5 -8
  100. package/dist/Editor/common/RnD/OptionsPopup/style.js +19 -120
  101. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +5 -8
  102. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +3 -6
  103. package/dist/Editor/common/RnD/Utils/gridDropItem.js +19 -28
  104. package/dist/Editor/common/RnD/Utils/index.js +1 -3
  105. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +58 -42
  106. package/dist/Editor/common/RnD/VirtualElement/helper.js +132 -323
  107. package/dist/Editor/common/RnD/VirtualElement/styles.js +0 -16
  108. package/dist/Editor/common/RnD/index.js +38 -67
  109. package/dist/Editor/common/Select/index.js +5 -44
  110. package/dist/Editor/common/Select/styles.js +2 -30
  111. package/dist/Editor/common/Shorthands/elements.js +11 -65
  112. package/dist/Editor/common/StyleBuilder/accordionTitleBtnStyle.js +2 -2
  113. package/dist/Editor/common/StyleBuilder/accordionTitleStyle.js +9 -12
  114. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
  115. package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +0 -4
  116. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +0 -5
  117. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
  118. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
  119. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +8 -16
  120. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +10 -36
  121. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +7 -16
  122. package/dist/Editor/common/StyleBuilder/fieldTypes/index.js +1 -3
  123. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +6 -7
  124. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +6 -13
  125. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
  126. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +7 -5
  127. package/dist/Editor/common/SwipeableDrawer/style.js +12 -14
  128. package/dist/Editor/common/Uploader.js +0 -16
  129. package/dist/Editor/common/iconListV2.js +6 -177
  130. package/dist/Editor/common/iconslist.js +0 -24
  131. package/dist/Editor/commonStyle.js +62 -186
  132. package/dist/Editor/helper/index.js +1 -5
  133. package/dist/Editor/helper/theme.js +2 -203
  134. package/dist/Editor/hooks/useMouseMove.js +5 -8
  135. package/dist/Editor/hooks/useTable.js +4 -5
  136. package/dist/Editor/plugins/withEmbeds.js +1 -1
  137. package/dist/Editor/plugins/withHTML.js +1 -3
  138. package/dist/Editor/plugins/withTable.js +1 -1
  139. package/dist/Editor/theme/ThemeList.js +173 -50
  140. package/dist/Editor/utils/SlateUtilityFunctions.js +46 -172
  141. package/dist/Editor/utils/accordion.js +4 -14
  142. package/dist/Editor/utils/button.js +17 -1
  143. package/dist/Editor/utils/customHooks/useTableResize.js +9 -49
  144. package/dist/Editor/utils/draftToSlate.js +2 -3
  145. package/dist/Editor/utils/events.js +6 -50
  146. package/dist/Editor/utils/font.js +37 -40
  147. package/dist/Editor/utils/form.js +4 -4
  148. package/dist/Editor/utils/formfield.js +2 -9
  149. package/dist/Editor/utils/helper.js +26 -215
  150. package/dist/Editor/utils/insertAppHeader.js +1 -1
  151. package/dist/Editor/utils/signature.js +9 -2
  152. package/package.json +4 -4
  153. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/SelectV1.js +0 -510
  154. package/dist/Editor/Elements/EmbedScript/styles.js +0 -89
  155. package/dist/Editor/Elements/FreeGrid/helper.js +0 -115
  156. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -439
  157. package/dist/Editor/assets/svg/BackIcon.js +0 -18
  158. package/dist/Editor/assets/svg/ClearAllRounded.js +0 -31
  159. package/dist/Editor/assets/svg/ResetIconNew.js +0 -23
  160. package/dist/Editor/assets/svg/ThemeIcons.js +0 -293
  161. package/dist/Editor/common/Checkbox/index.js +0 -46
  162. package/dist/Editor/common/Checkbox/styles.js +0 -45
  163. package/dist/Editor/common/CustomColorPicker/index.js +0 -130
  164. package/dist/Editor/common/CustomColorPicker/style.js +0 -53
  165. package/dist/Editor/common/CustomDialog2/index.js +0 -94
  166. package/dist/Editor/common/CustomDialog2/style.js +0 -67
  167. package/dist/Editor/common/CustomSelect.js +0 -43
  168. package/dist/Editor/common/RadioGroup/index.js +0 -48
  169. package/dist/Editor/common/RadioGroup/styles.js +0 -29
  170. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
  171. package/dist/Editor/common/SnackBar/index.js +0 -43
  172. package/dist/Editor/common/StyleBuilder/fieldTypes/embedUpload.js +0 -115
  173. package/dist/Editor/helper/textIndeces.js +0 -58
  174. package/dist/Editor/hooks/useEditorTheme.js +0 -153
  175. package/dist/Editor/hooks/useThemeValues.js +0 -63
  176. package/dist/Editor/theme/index.js +0 -149
  177. package/dist/Editor/themeSettings/ActiveTheme.js +0 -82
  178. package/dist/Editor/themeSettings/buttons/index.js +0 -300
  179. package/dist/Editor/themeSettings/buttons/style.js +0 -23
  180. package/dist/Editor/themeSettings/colorTheme/index.js +0 -310
  181. package/dist/Editor/themeSettings/colorTheme/style.js +0 -81
  182. package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
  183. package/dist/Editor/themeSettings/fonts/index.js +0 -240
  184. package/dist/Editor/themeSettings/fonts/style.js +0 -62
  185. package/dist/Editor/themeSettings/icons.js +0 -60
  186. package/dist/Editor/themeSettings/index.js +0 -380
  187. package/dist/Editor/themeSettings/style.js +0 -299
  188. package/dist/Editor/themeSettingsAI/icons.js +0 -96
  189. package/dist/Editor/themeSettingsAI/index.js +0 -355
  190. package/dist/Editor/themeSettingsAI/saveTheme.js +0 -202
  191. package/dist/Editor/themeSettingsAI/style.js +0 -332
  192. package/dist/Editor/utils/updateFormName.js +0 -22
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { useDataView } from "../../Providers/DataViewProvider";
3
- import SelectV1 from "./Components/SelectV1";
3
+ import Select from "./Components/Select";
4
4
  import { jsx as _jsx } from "react/jsx-runtime";
5
5
  const SelectType = props => {
6
6
  const {
@@ -8,47 +8,28 @@ const SelectType = props => {
8
8
  property,
9
9
  value,
10
10
  options,
11
- readOnly,
12
- translation
11
+ readOnly
13
12
  } = props;
14
13
  const {
15
- onChange,
16
- onUpdateProperty
14
+ onChange
17
15
  } = useDataView();
18
- const label = "";
19
16
  const coloredValues = [...(value || [])]?.map(m => {
20
17
  return {
21
18
  ...m,
22
- color: (options || []).find(f => f?.value === m?.value || f?.id === m?.id)?.color || "#FFF"
19
+ color: options?.find(f => f.value === m.value)?.color
23
20
  };
24
21
  });
25
22
  const handleChange = data => {
26
23
  onChange(rowIndex, {
27
- [property]: data?.filter(f => f?.id)
24
+ [property]: data?.filter(f => f?.value)
28
25
  });
29
26
  };
30
- const handleUpdate = data => {
31
- const updateData = {
32
- "label": "Select",
33
- "visible": true,
34
- "key": property,
35
- "type": "select",
36
- "options": data
37
- };
38
- onUpdateProperty(updateData);
39
- };
40
- return /*#__PURE__*/_jsx(SelectV1, {
27
+ return /*#__PURE__*/_jsx(Select, {
41
28
  value: coloredValues,
42
- options: options,
43
- selectMultiple: false,
44
- disabled: readOnly,
45
- limitTags: 2,
46
- placeholder: label,
47
- property: property,
48
- wrapColumn: false,
49
29
  onChange: handleChange,
50
- onUpdate: handleUpdate,
51
- translation: translation
30
+ options: options,
31
+ multiple: false,
32
+ disabled: readOnly
52
33
  });
53
34
  };
54
35
  export default SelectType;
@@ -1,14 +1,10 @@
1
- import React, { useEffect, useRef, useState } from "react";
1
+ import React, { useState } from "react";
2
2
  import { Box, List, ListItemButton, ListItemText, ListItemIcon, TextField, Chip } from "@mui/material";
3
3
  import { colors } from "../../../Color Picker/defaultColors";
4
4
  import Icon from "../../../../common/Icon";
5
5
  import { jsx as _jsx } from "react/jsx-runtime";
6
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
7
- const EXCLUDED_COLORS = new Set(["#000000", "#0F172A", "#2563EB", "#FFFFFF", "#64748B"]);
8
- const DEFAULT_COLORS = colors?.filter(f => !f?.includes("linear") && !EXCLUDED_COLORS?.has(f));
9
-
10
- // const DEFAULT_COLORS = colors?.filter((f) => !(f.includes("linear") || f === "#000000"));
11
-
7
+ const DEFAULT_COLORS = colors?.filter(f => !(f.includes("linear") || f === "#000000"));
12
8
  const AddOptions = props => {
13
9
  const {
14
10
  edit,
@@ -20,14 +16,8 @@ const AddOptions = props => {
20
16
  const [value, setValue] = useState("");
21
17
  const [error, setError] = useState("");
22
18
  const {
23
- options = []
19
+ options
24
20
  } = edit;
25
- const inputRef = useRef();
26
- useEffect(() => {
27
- if (inputRef?.current) {
28
- inputRef.current.focus();
29
- }
30
- }, [addBox, options]);
31
21
  const onAddBox = () => {
32
22
  setAddBox(!addBox);
33
23
  };
@@ -46,8 +36,7 @@ const AddOptions = props => {
46
36
  ...edit,
47
37
  options: [{
48
38
  value: value,
49
- color: getRandomColor(),
50
- id: `multi_${Date.now().toString(36)}_${Math.random().toString(36).substring(2, 5)}`
39
+ color: getRandomColor()
51
40
  }, ...(options || [])]
52
41
  });
53
42
  setValue("");
@@ -67,6 +56,7 @@ const AddOptions = props => {
67
56
  };
68
57
  const onBlur = () => {
69
58
  setValue("");
59
+ setAddBox(false);
70
60
  setError("");
71
61
  };
72
62
  return edit?.type === "select" || edit?.type === "multi-select" ? /*#__PURE__*/_jsxs(Box, {
@@ -85,7 +75,6 @@ const AddOptions = props => {
85
75
  })
86
76
  }), addBox ? /*#__PURE__*/_jsx(Box, {
87
77
  children: /*#__PURE__*/_jsx(TextField, {
88
- inputRef: inputRef,
89
78
  className: "mt",
90
79
  size: "small",
91
80
  fullWidth: true,
@@ -94,7 +83,7 @@ const AddOptions = props => {
94
83
  onChange: handleChange,
95
84
  onBlur: onBlur,
96
85
  helperText: error
97
- }, `input_${options?.length}`)
86
+ })
98
87
  }) : null, /*#__PURE__*/_jsx(List, {
99
88
  children: options?.map((m, i) => {
100
89
  return /*#__PURE__*/_jsxs(ListItemButton, {
@@ -19,7 +19,6 @@ const EditOption = props => {
19
19
  const [edit, setEdit] = useState({
20
20
  ...(mode?.edit || {})
21
21
  });
22
- const [errorMessage, setErrorMessage] = useState("");
23
22
  const editData = useRef({
24
23
  ...edit
25
24
  });
@@ -31,14 +30,10 @@ const EditOption = props => {
31
30
  } = edit;
32
31
  const selectedOption = edit?.options[optionIndex] || {};
33
32
  const pickerStyles = ColorPickerStyles(theme);
34
- const hideBackButton = edit?.hideBackButton || false;
35
- const errorMessageRef = useRef(errorMessage);
36
- useEffect(() => {
37
- errorMessageRef.current = errorMessage;
38
- }, [errorMessage]);
39
33
  useEffect(() => {
40
34
  return () => {
41
- if (editData?.current && !errorMessageRef.current) {
35
+ // on un-mount update the option change
36
+ if (editData?.current) {
42
37
  delete editData?.current?.edited;
43
38
  onEvent("updateProperty", {
44
39
  ...editData?.current
@@ -47,24 +42,18 @@ const EditOption = props => {
47
42
  };
48
43
  }, []);
49
44
  const onChange = e => {
50
- const {
51
- name,
52
- value,
53
- delete: isDelete
54
- } = e?.target || {};
55
- const targetValue = value?.toLowerCase();
56
- const updatedOptions = edit?.options?.map((m, i) => {
45
+ const updatedOptions = edit?.options.map((m, i) => {
57
46
  if (i === edit?.optionIndex) {
58
47
  return {
59
48
  ...m,
60
- [name]: value
49
+ [e.target.name]: e?.target?.value
61
50
  };
62
51
  }
63
52
  return m;
64
53
  });
65
54
 
66
- // If deleting the option
67
- if (edit?.optionIndex > -1 && isDelete) {
55
+ // for delete
56
+ if (edit?.optionIndex > -1 && e?.target?.delete) {
68
57
  updatedOptions.splice(edit?.optionIndex, 1);
69
58
  }
70
59
  const latest = {
@@ -78,28 +67,14 @@ const EditOption = props => {
78
67
  ...latest,
79
68
  edited: true
80
69
  };
81
- if (name === "value" && !value?.trim()) {
82
- setErrorMessage("Option name must not be empty");
83
- return;
84
- }
85
- const isDuplicate = name === "value" && targetValue && edit?.options?.some((op, i) => i !== edit?.optionIndex && op?.value?.toLowerCase?.() === targetValue);
86
- if (isDuplicate) {
87
- setErrorMessage("Option name must be unique");
88
- return;
89
- }
90
- setErrorMessage(""); // Clear error on valid input
91
70
 
92
- // If delete go back
93
- if (isDelete) {
94
- if (hideBackButton) {
95
- onClose();
96
- } else {
97
- onEvent("editProperty", {
98
- edit: {
99
- ...latest
100
- }
101
- });
102
- }
71
+ // if delete go back
72
+ if (e?.target?.delete) {
73
+ onEvent("editProperty", {
74
+ edit: {
75
+ ...latest
76
+ }
77
+ });
103
78
  }
104
79
  };
105
80
  const onBack = () => {
@@ -129,14 +104,14 @@ const EditOption = props => {
129
104
  children: [/*#__PURE__*/_jsxs(Box, {
130
105
  className: "fe-dv-ap-title",
131
106
  children: [/*#__PURE__*/_jsxs("span", {
132
- children: [!hideBackButton ? /*#__PURE__*/_jsx(IconButton, {
107
+ children: [/*#__PURE__*/_jsx(IconButton, {
133
108
  className: "tv-act-ico",
134
109
  size: "small",
135
110
  onClick: onBack,
136
111
  children: /*#__PURE__*/_jsx(Icon, {
137
112
  icon: 'leftArrow'
138
113
  })
139
- }) : null, translation("Edit Option")]
114
+ }), translation("Edit Option")]
140
115
  }), /*#__PURE__*/_jsx(IconButton, {
141
116
  className: "tv-act-ico bg br1",
142
117
  size: "small",
@@ -161,9 +136,7 @@ const EditOption = props => {
161
136
  value: selectedOption?.value,
162
137
  onChange: onChange,
163
138
  fullWidth: true,
164
- placeholder: translation("Option Name"),
165
- helperText: errorMessage,
166
- error: !!errorMessage
139
+ placeholder: translation("Option Name")
167
140
  }),
168
141
  labelPlacement: "top"
169
142
  })
@@ -29,16 +29,6 @@ const POSITIONS = {
29
29
  vertical: "top",
30
30
  horizontal: "right"
31
31
  }
32
- },
33
- editOptionMulti: {
34
- anchorOrigin: {
35
- vertical: "top",
36
- horizontal: "left"
37
- },
38
- transformOrigin: {
39
- vertical: "top",
40
- horizontal: "left"
41
- }
42
32
  }
43
33
  };
44
34
  const PropertySettings = props => {
@@ -92,7 +82,6 @@ const PropertySettings = props => {
92
82
  translation: translation
93
83
  });
94
84
  case "editOption":
95
- case "editOptionMulti":
96
85
  return /*#__PURE__*/_jsx(EditOption, {
97
86
  classes: classes,
98
87
  onClose: onClose,
@@ -11,8 +11,7 @@ const RenderRow = props => {
11
11
  properties,
12
12
  onSelect,
13
13
  selected,
14
- readOnly,
15
- translation
14
+ readOnly
16
15
  } = props;
17
16
  const showProperties = properties?.filter(f => f.visible);
18
17
  return showProperties?.map((property, i) => {
@@ -23,8 +22,7 @@ const RenderRow = props => {
23
22
  property: property,
24
23
  onSelect: onSelect,
25
24
  selected: selected,
26
- readOnly: readOnly,
27
- translation: translation
25
+ readOnly: readOnly
28
26
  }, `${property.key}_${i}`);
29
27
  });
30
28
  };
@@ -35,8 +33,7 @@ const ViewData = props => {
35
33
  customProps
36
34
  } = props;
37
35
  const {
38
- readOnly,
39
- translation
36
+ readOnly
40
37
  } = customProps || {};
41
38
  const {
42
39
  properties,
@@ -70,8 +67,7 @@ const ViewData = props => {
70
67
  properties: properties,
71
68
  onSelect: onSelect,
72
69
  selected: selectedRows?.includes(row?.id),
73
- readOnly: readOnly,
74
- translation: translation
70
+ readOnly: readOnly
75
71
  }), /*#__PURE__*/_jsx("td", {}), /*#__PURE__*/_jsx("td", {})]
76
72
  }, i);
77
73
  }), /*#__PURE__*/_jsx("tr", {
@@ -4,7 +4,7 @@ import { Node, Transforms, Editor } from "slate";
4
4
  import AspectRatioIcon from "@mui/icons-material/AspectRatio";
5
5
  import useResize from "../../utils/customHooks/useResize";
6
6
  import EmbedPopup from "./EmbedPopup";
7
- import { IconButton, Tooltip, Box, useTheme, useMediaQuery } from "@mui/material";
7
+ import { IconButton, Tooltip, Box, useTheme } from "@mui/material";
8
8
  import { LinkIcon } from "../../common/iconslist";
9
9
  import { useEditorContext } from "../../hooks/useMouseMove";
10
10
  import { getTRBLBreakPoints, getBreakPointsValue, groupByBreakpoint } from "../../helper/theme";
@@ -200,7 +200,6 @@ const Image = props => {
200
200
  theme: appTheme
201
201
  } = useEditorContext();
202
202
  const classes = useCommonStyle(appTheme);
203
- const isMobile = useMediaQuery("(max-width:599px)");
204
203
  const handleImageClick = () => {
205
204
  try {
206
205
  Transforms.select(editor, {
@@ -281,7 +280,7 @@ const Image = props => {
281
280
  sx: {
282
281
  display: {
283
282
  lg: "flex",
284
- xs: xsHidden && isMobile ? "none" : "flex"
283
+ xs: xsHidden ? "none" : "flex"
285
284
  },
286
285
  width: `100%`,
287
286
  maxWidth: "100%",
@@ -89,7 +89,7 @@ const VideoPlaceholder = props => {
89
89
  },
90
90
  children: [/*#__PURE__*/_jsx(Icon, {
91
91
  icon: "video"
92
- }), translation(TYPE_LABELS[type] || "Embed Video or Other")]
92
+ }), TYPE_LABELS[type] || translation("Embed Video or Other")]
93
93
  }) : /*#__PURE__*/_jsxs(Box, {
94
94
  sx: {
95
95
  color: "#64748B !important",
@@ -5,7 +5,6 @@ import { IconButton, Tooltip } from "@mui/material";
5
5
  import { DeleteIcon } from "../../assets/svg/AIIcons";
6
6
  import { ReactEditor, useSlateStatic } from "slate-react";
7
7
  import { Transforms } from "slate";
8
- import { CodeElementIcon } from "../../common/iconListV2";
9
8
 
10
9
  // const sanitize = (input) => {
11
10
  // const doc = new DOMParser().parseFromString(input, "text/html");
@@ -19,7 +18,6 @@ import { CodeElementIcon } from "../../common/iconListV2";
19
18
  // return doc.body.innerHTML;
20
19
  // };
21
20
  import { jsx as _jsx } from "react/jsx-runtime";
22
- import { jsxs as _jsxs } from "react/jsx-runtime";
23
21
  import { createElement as _createElement } from "react";
24
22
  const getCode = (embedData, isEncoded) => {
25
23
  if (isEncoded) {
@@ -63,7 +61,6 @@ const Code = props => {
63
61
  } = customProps;
64
62
  const editor = useSlateStatic();
65
63
  const path = ReactEditor.findPath(editor, element);
66
- const hasCode = embedData && getCode(embedData, isEncoded);
67
64
  const onDelete = () => {
68
65
  Transforms.removeNodes(editor, {
69
66
  at: path
@@ -88,20 +85,11 @@ const Code = props => {
88
85
  }
89
86
  }, [embedData]);
90
87
  return /*#__PURE__*/_createElement("div", {
91
- className: `embed-code has-hover ${hasCode ? "has-code" : ""}`,
88
+ className: "embed-code has-hover",
92
89
  contentEditable: false,
93
90
  ...attributes,
94
91
  key: element?.updatedOn
95
- }, !hasCode && /*#__PURE__*/_jsxs("div", {
96
- className: "empty-code",
97
- children: [/*#__PURE__*/_jsx("span", {
98
- className: "code-icon",
99
- children: /*#__PURE__*/_jsx(CodeElementIcon, {})
100
- }), /*#__PURE__*/_jsx("span", {
101
- className: "code-name",
102
- children: translation("Embed Code")
103
- })]
104
- }), /*#__PURE__*/_jsx("div", {
92
+ }, /*#__PURE__*/_jsx("div", {
105
93
  ref: codeRef
106
94
  }), children, !readOnly && /*#__PURE__*/_jsx(ToolBar, {
107
95
  onDelete: onDelete,
@@ -1,10 +1,7 @@
1
1
  import React, { useEffect, useState } from "react";
2
- import { Box, Button, Dialog, DialogActions, DialogContent, DialogTitle, Divider, IconButton, Tooltip, Typography } from "@mui/material";
2
+ import { Box, Button, Dialog, DialogActions, DialogContent, DialogTitle, Tooltip } from "@mui/material";
3
3
  import { insertEmbedScript, updateEmbedScript } from "../../utils/embedScript";
4
4
  import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
5
- import { useEditorContext } from "../../hooks/useMouseMove";
6
- import Styles from "./styles";
7
- import CloseRoundedIcon from "@mui/icons-material/CloseRounded";
8
5
  import { jsx as _jsx } from "react/jsx-runtime";
9
6
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
7
  import { Fragment as _Fragment } from "react/jsx-runtime";
@@ -23,10 +20,6 @@ const EmbedScriptPopup = props => {
23
20
  error: false
24
21
  });
25
22
  const [allowedDomains, setAllowedDomains] = useState([]);
26
- const {
27
- theme
28
- } = useEditorContext();
29
- const classes = Styles(theme);
30
23
  const {
31
24
  loading,
32
25
  error
@@ -76,70 +69,50 @@ const EmbedScriptPopup = props => {
76
69
  }
77
70
  onClose();
78
71
  };
79
- const handleClear = () => {
80
- setCode("");
81
- };
82
72
  return /*#__PURE__*/_jsx(_Fragment, {
83
73
  children: /*#__PURE__*/_jsxs(Dialog, {
84
74
  open: open,
85
75
  fullWidth: true,
86
- sx: classes.root,
87
76
  children: [/*#__PURE__*/_jsx(DialogTitle, {
88
77
  children: /*#__PURE__*/_jsxs(Box, {
89
78
  component: "div",
90
79
  sx: {
91
80
  display: "flex",
92
81
  alignItems: "center",
93
- justifyContent: "space-between",
94
- width: "100%"
82
+ gap: "6px"
95
83
  },
96
- children: [/*#__PURE__*/_jsxs(Box, {
97
- sx: {
98
- display: "flex",
99
- alignItems: "center",
100
- gap: "6px"
101
- },
102
- children: [/*#__PURE__*/_jsx(Typography, {
103
- className: "title",
104
- variant: "h6",
105
- children: translation("Embed Code")
106
- }), allowedDomains?.length ? /*#__PURE__*/_jsx(Tooltip, {
107
- title: /*#__PURE__*/_jsxs(Box, {
108
- sx: {
109
- textTransform: "none"
84
+ children: [translation("Embed Code"), allowedDomains?.length ? /*#__PURE__*/_jsx(Tooltip, {
85
+ title: /*#__PURE__*/_jsxs(Box, {
86
+ sx: {
87
+ textTransform: "none"
88
+ },
89
+ children: [/*#__PURE__*/_jsx("span", {
90
+ style: {
91
+ fontWeight: "bold"
110
92
  },
111
- children: [/*#__PURE__*/_jsx("span", {
112
- style: {
113
- fontWeight: "bold"
114
- },
115
- children: translation("Allowed Domains")
116
- }), /*#__PURE__*/_jsx("br", {}), allowedDomains.join(", ")]
117
- }),
118
- children: /*#__PURE__*/_jsx(InfoOutlinedIcon, {
119
- sx: {
120
- fill: "#94A3B8",
121
- cursor: "pointer",
122
- fontSize: "18px"
123
- }
124
- })
125
- }) : null]
126
- }), /*#__PURE__*/_jsx(IconButton, {
127
- className: "close-popupbtn",
128
- onClick: onClose,
129
- children: /*#__PURE__*/_jsx(CloseRoundedIcon, {})
130
- })]
93
+ children: translation("Allowed Domains")
94
+ }), /*#__PURE__*/_jsx("br", {}), allowedDomains.join(", ")]
95
+ }),
96
+ children: /*#__PURE__*/_jsx(InfoOutlinedIcon, {
97
+ color: "gray",
98
+ fontSize: "14px",
99
+ style: {
100
+ fill: "#94A3B8",
101
+ cursor: "pointer"
102
+ }
103
+ })
104
+ }) : null]
131
105
  })
132
- }), /*#__PURE__*/_jsx(Divider, {
133
- className: "divider"
134
106
  }), /*#__PURE__*/_jsxs(DialogContent, {
135
107
  children: [/*#__PURE__*/_jsx("textarea", {
136
108
  value: code,
137
109
  onChange: handleChange,
138
110
  style: {
139
- minHeight: "260px",
111
+ minHeight: "200px",
140
112
  width: "100%",
141
113
  resize: "none",
142
- padding: "4px"
114
+ padding: "4px",
115
+ boxSizing: "border-box"
143
116
  }
144
117
  }), /*#__PURE__*/_jsx(Box, {
145
118
  component: "div",
@@ -148,14 +121,12 @@ const EmbedScriptPopup = props => {
148
121
  })]
149
122
  }), /*#__PURE__*/_jsxs(DialogActions, {
150
123
  children: [/*#__PURE__*/_jsx(Button, {
151
- onClick: handleClear,
152
- className: "clear-btn",
153
- children: translation("Clear")
154
- }), /*#__PURE__*/_jsx(Button, {
155
124
  onClick: onSubmit,
156
125
  disabled: loading,
157
- className: "save-btn",
158
126
  children: loading ? translation("Validating") : translation("Save")
127
+ }), /*#__PURE__*/_jsx(Button, {
128
+ onClick: onClose,
129
+ children: translation("Cancel")
159
130
  })]
160
131
  })]
161
132
  })