@flozy/editor 11.1.0 → 11.1.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 (140) hide show
  1. package/dist/Editor/ChatEditor.js +6 -6
  2. package/dist/Editor/CommonEditor.js +21 -82
  3. package/dist/Editor/DialogWrapper.js +25 -31
  4. package/dist/Editor/Editor.css +4 -37
  5. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  6. package/dist/Editor/Elements/Attachments/Attachments.js +11 -153
  7. package/dist/Editor/Elements/Attachments/AttachmentsButton.js +3 -8
  8. package/dist/Editor/Elements/Button/EditorButton.js +7 -22
  9. package/dist/Editor/Elements/Color Picker/ColorButtons.js +14 -61
  10. package/dist/Editor/Elements/Color Picker/ColorPicker.css +1 -25
  11. package/dist/Editor/Elements/Color Picker/ColorPicker.js +7 -10
  12. package/dist/Editor/Elements/Color Picker/Styles.js +13 -15
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/Select.js +55 -134
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/SelectV1.js +8 -7
  15. package/dist/Editor/Elements/DataView/Layouts/DataTypes/PersonType.js +3 -8
  16. package/dist/Editor/Elements/DataView/Layouts/Options/EditProperty.js +1 -1
  17. package/dist/Editor/Elements/DataView/Layouts/TableStyles.js +1 -1
  18. package/dist/Editor/Elements/Embed/Embed.css +0 -5
  19. package/dist/Editor/Elements/Embed/Embed.js +43 -37
  20. package/dist/Editor/Elements/Embed/Image.js +22 -242
  21. package/dist/Editor/Elements/Embed/Video.js +32 -277
  22. package/dist/Editor/Elements/Form/Form.js +35 -10
  23. package/dist/Editor/Elements/Form/FormField.js +1 -1
  24. package/dist/Editor/Elements/Form/Workflow/Styles.js +22 -24
  25. package/dist/Editor/Elements/Form/Workflow/constant.js +1 -25
  26. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +75 -34
  27. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +5 -9
  28. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +1 -3
  29. package/dist/Editor/Elements/FreeGrid/styles.js +0 -15
  30. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  31. package/dist/Editor/Elements/PageSettings/PageSettingsButton.js +1 -2
  32. package/dist/Editor/Elements/Signature/SignatureOptions/TypeSignature.js +3 -2
  33. package/dist/Editor/Elements/Signature/SignaturePopup.js +13 -2
  34. package/dist/Editor/Elements/SimpleText/index.js +1 -4
  35. package/dist/Editor/Elements/Table/Table.js +1 -2
  36. package/dist/Editor/Elements/Table/TableCell.js +3 -10
  37. package/dist/Editor/Elements/Title/title.js +5 -4
  38. package/dist/Editor/Elements/TopBanner/TopBanner.js +2 -4
  39. package/dist/Editor/Elements/TopBanner/TopBannerButton.js +3 -5
  40. package/dist/Editor/Styles/EditorStyles.js +5 -16
  41. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +3 -27
  42. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +3 -4
  43. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  44. package/dist/Editor/Toolbar/FormatTools/TextSize.js +29 -33
  45. package/dist/Editor/Toolbar/Mini/MiniToolbar.js +1 -2
  46. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +1 -3
  47. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +23 -25
  48. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +42 -167
  49. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +5 -15
  50. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +1 -2
  51. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +7 -65
  52. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +12 -66
  53. package/dist/Editor/Toolbar/PopupTool/index.js +4 -6
  54. package/dist/Editor/Toolbar/toolbarGroups.js +6 -48
  55. package/dist/Editor/common/ColorPickerButton.js +19 -38
  56. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  57. package/dist/Editor/common/FontLoader/FontLoader.js +0 -1
  58. package/dist/Editor/common/Icon.js +0 -28
  59. package/dist/Editor/common/ImageSelector/ImageSelector.js +7 -45
  60. package/dist/Editor/common/ImageSelector/Options/Upload.js +11 -26
  61. package/dist/Editor/common/ImageSelector/Styles.js +9 -3
  62. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +1 -2
  63. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +2 -3
  64. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +2 -3
  65. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +2 -3
  66. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +2 -3
  67. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +2 -3
  68. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +7 -20
  69. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +2 -3
  70. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +0 -2
  71. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +7 -20
  72. package/dist/Editor/common/RnD/GuideLines/styles.js +1 -1
  73. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +3 -6
  74. package/dist/Editor/common/RnD/Utils/gridDropItem.js +11 -28
  75. package/dist/Editor/common/RnD/Utils/index.js +1 -3
  76. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +63 -52
  77. package/dist/Editor/common/RnD/VirtualElement/helper.js +68 -248
  78. package/dist/Editor/common/RnD/VirtualElement/styles.js +0 -22
  79. package/dist/Editor/common/RnD/index.js +14 -61
  80. package/dist/Editor/common/Shorthands/elements.js +0 -54
  81. package/dist/Editor/common/StyleBuilder/buttonStyle.js +2 -4
  82. package/dist/Editor/common/StyleBuilder/embedVideoStyle.js +0 -4
  83. package/dist/Editor/common/StyleBuilder/fieldStyle.js +0 -1
  84. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +2 -10
  85. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +2 -12
  86. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +7 -15
  87. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +10 -36
  88. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +4 -13
  89. package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +0 -2
  90. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +7 -15
  91. package/dist/Editor/common/StyleBuilder/formStyle.js +13 -19
  92. package/dist/Editor/common/StyleBuilder/index.js +4 -8
  93. package/dist/Editor/common/Uploader.js +17 -118
  94. package/dist/Editor/common/iconslist.js +0 -21
  95. package/dist/Editor/commonStyle.js +3 -37
  96. package/dist/Editor/helper/index.js +1 -4
  97. package/dist/Editor/helper/theme.js +2 -203
  98. package/dist/Editor/hooks/useMouseMove.js +3 -12
  99. package/dist/Editor/hooks/useTable.js +1 -62
  100. package/dist/Editor/plugins/withEmbeds.js +1 -1
  101. package/dist/Editor/plugins/withHTML.js +3 -56
  102. package/dist/Editor/plugins/withTable.js +1 -1
  103. package/dist/Editor/service/fileupload.js +0 -70
  104. package/dist/Editor/theme/ThemeList.js +173 -50
  105. package/dist/Editor/utils/SlateUtilityFunctions.js +38 -162
  106. package/dist/Editor/utils/button.js +17 -1
  107. package/dist/Editor/utils/font.js +37 -40
  108. package/dist/Editor/utils/helper.js +3 -76
  109. package/dist/Editor/utils/insertAppHeader.js +4 -8
  110. package/package.json +1 -1
  111. package/dist/Editor/Elements/Attachments/AttachmentStyles.js +0 -16
  112. package/dist/Editor/Elements/FreeGrid/helper.js +0 -194
  113. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +0 -439
  114. package/dist/Editor/assets/svg/BackIcon.js +0 -18
  115. package/dist/Editor/assets/svg/ThemeIcons.js +0 -293
  116. package/dist/Editor/common/CustomColorPicker/index.js +0 -130
  117. package/dist/Editor/common/CustomColorPicker/style.js +0 -53
  118. package/dist/Editor/common/CustomDialog2/index.js +0 -94
  119. package/dist/Editor/common/CustomDialog2/style.js +0 -67
  120. package/dist/Editor/common/CustomSelect.js +0 -43
  121. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +0 -17
  122. package/dist/Editor/common/UploaderWithProgress.js +0 -183
  123. package/dist/Editor/hooks/useEditorTheme.js +0 -153
  124. package/dist/Editor/hooks/useThemeValues.js +0 -63
  125. package/dist/Editor/theme/index.js +0 -149
  126. package/dist/Editor/themeSettings/ActiveTheme.js +0 -82
  127. package/dist/Editor/themeSettings/buttons/index.js +0 -300
  128. package/dist/Editor/themeSettings/buttons/style.js +0 -23
  129. package/dist/Editor/themeSettings/colorTheme/index.js +0 -310
  130. package/dist/Editor/themeSettings/colorTheme/style.js +0 -81
  131. package/dist/Editor/themeSettings/fonts/PreviewElement.js +0 -121
  132. package/dist/Editor/themeSettings/fonts/index.js +0 -240
  133. package/dist/Editor/themeSettings/fonts/style.js +0 -62
  134. package/dist/Editor/themeSettings/icons.js +0 -60
  135. package/dist/Editor/themeSettings/index.js +0 -380
  136. package/dist/Editor/themeSettings/style.js +0 -299
  137. package/dist/Editor/themeSettingsAI/icons.js +0 -96
  138. package/dist/Editor/themeSettingsAI/index.js +0 -355
  139. package/dist/Editor/themeSettingsAI/saveTheme.js +0 -202
  140. package/dist/Editor/themeSettingsAI/style.js +0 -332
@@ -9,8 +9,6 @@ import { WorkflowIcon } from "../../common/iconslist";
9
9
  import { getTRBLBreakPoints, getBreakPointsValue, groupByBreakpoint } from "../../helper/theme";
10
10
  import { handleLinkType, windowVar } from "../../utils/helper";
11
11
  import LinkSettings from "../../common/LinkSettings";
12
- import { useEditorTheme } from "../../hooks/useEditorTheme";
13
- import { getTheme } from "../../theme";
14
12
  import Icon from "../../common/Icon";
15
13
  import { useEditorContext } from "../../hooks/useMouseMove";
16
14
  import useCommonStyle from "../../commonStyle";
@@ -42,12 +40,6 @@ const EditorButton = props => {
42
40
  const [openMoreOptions, setOpenMoreOptions] = useState(false);
43
41
  const [, setIconLoaded] = useState(false);
44
42
  const classes = useCommonStyle(appTheme);
45
- const {
46
- theme: selectedTheme
47
- } = useEditorTheme();
48
- const {
49
- buttonTheme
50
- } = getTheme(selectedTheme);
51
43
  const {
52
44
  label,
53
45
  bgColor,
@@ -61,8 +53,8 @@ const EditorButton = props => {
61
53
  fontFamily,
62
54
  textColorHover,
63
55
  bgColorHover,
64
- // buttonIcon,
65
56
  borderColorHover,
57
+ buttonIcon,
66
58
  iconPosition = "start",
67
59
  borderStyle,
68
60
  borderWidth,
@@ -83,7 +75,6 @@ const EditorButton = props => {
83
75
  };
84
76
  const isTrigger = linkType === "nextTrigger" || linkType === "prevTrigger";
85
77
  const refURl = isTrigger ? buttonLink?.url : url;
86
- const buttonIcon = element?.buttonIcon || buttonTheme?.buttonIcon;
87
78
  const BtnIcon = buttonIcon ? buttonIcon : null;
88
79
  windowVar.lastButtonProps = element;
89
80
  const handleTrigger = async () => {
@@ -274,14 +265,19 @@ const EditorButton = props => {
274
265
  display: "inline-block"
275
266
  },
276
267
  children: [/*#__PURE__*/_jsxs(Box, {
277
- className: `btn textAlign-${tAlign} button theme-element`,
278
268
  ref: buttonRef,
269
+ className: `btn textAlign-${tAlign}`,
279
270
  sx: {
280
271
  textDecoration: "none",
272
+ background: bgColor || "rgb(30, 75, 122)",
281
273
  borderBlockStyle: "solid",
274
+ borderColor: borderColor || "transparent",
282
275
  borderWidth: borderWidth !== undefined ? borderWidth : borderColor || borderColorHover ? "1px" : "0px",
283
276
  ...btnSp,
284
277
  borderStyle: borderStyle || "solid",
278
+ color: `${textColor || "#FFFFFF"}`,
279
+ fontSize: textSize || "inherit",
280
+ fontFamily: fontFamily || "PoppinsRegular",
285
281
  display: "inline-flex",
286
282
  alignItems: "center",
287
283
  position: "relative",
@@ -296,17 +292,6 @@ const EditorButton = props => {
296
292
  "& .element-toolbar": {
297
293
  display: "flex"
298
294
  }
299
- },
300
- color: textColor ? `${textColor} !important` : "#FFFFFF",
301
- fontSize: textSize ? `${textSize}px !important` : "inherit",
302
- fontFamily: fontFamily ? `${fontFamily} !important` : "PoppinsRegular",
303
- background: `${bgColor} !important`,
304
- borderColor: `${borderColor} !important`,
305
- borderRadius: {
306
- ...getBreakPointsValue(borderRadius || buttonTheme?.borderRadius || {}, null, "overrideBorderRadius", true)
307
- },
308
- padding: {
309
- ...getTRBLBreakPoints(bannerSpacing || buttonTheme?.bannerSpacing || {})
310
295
  }
311
296
  },
312
297
  ...buttonProps,
@@ -1,15 +1,11 @@
1
1
  import React, { useState } from "react";
2
- import { Box, IconButton, Popover, Typography, useTheme } from "@mui/material";
2
+ import { Box, IconButton, Popover } from "@mui/material";
3
3
  import KeyboardArrowDownRoundedIcon from "@mui/icons-material/KeyboardArrowDownRounded";
4
4
  import Button from "../../common/Button";
5
5
  import { colors } from "./defaultColors";
6
6
  import ColorPicker from "./colorPicker.svg";
7
- import { useSlateStatic } from "slate-react";
8
- import { Transforms } from "slate";
9
- import { useEditorContext } from "../../hooks/useMouseMove";
10
7
  import { jsx as _jsx } from "react/jsx-runtime";
11
8
  import { jsxs as _jsxs } from "react/jsx-runtime";
12
- import { Fragment as _Fragment } from "react/jsx-runtime";
13
9
  let c = [];
14
10
  const ColorChunks = (recentColors = []) => [...recentColors, ...colors].reduce((a, b, i) => {
15
11
  if (i % 7 === 0) {
@@ -36,8 +32,8 @@ const SingleColorButton = ({
36
32
  width: "100%",
37
33
  display: "flex",
38
34
  alignItems: "center",
39
- padding: padding || "8px 0px"
40
- // justifyContent: "center",
35
+ padding: padding || "8px 0px",
36
+ justifyContent: "center"
41
37
  },
42
38
  children: [crs.map(m => /*#__PURE__*/_jsx(Button, {
43
39
  onClick: handleSelect(m),
@@ -114,18 +110,12 @@ const ColorButtons = props => {
114
110
  openColorTool,
115
111
  onClose,
116
112
  onColorPickerClick,
117
- disableEditTheme,
118
113
  defaultColors = []
119
114
  } = props;
120
115
  const [row1, ...restRows] = ColorChunks([]);
121
116
  const [anchorEl, setAnchorEl] = useState(null);
122
117
  const open = Boolean(anchorEl);
123
118
  const firstRow = defaultColors?.length ? defaultColors : row1;
124
- const theme = useTheme();
125
- const editor = useSlateStatic();
126
- const {
127
- setOpenTheme
128
- } = useEditorContext();
129
119
  const handleMore = e => {
130
120
  setAnchorEl(e.currentTarget);
131
121
  };
@@ -138,7 +128,6 @@ const ColorButtons = props => {
138
128
  const handleSelect = color => () => {
139
129
  onSelect(color);
140
130
  };
141
- const colorVars = theme?.vars?.colors || {};
142
131
  return /*#__PURE__*/_jsxs(Box, {
143
132
  component: "span",
144
133
  sx: classes.colorButtons,
@@ -155,7 +144,7 @@ const ColorButtons = props => {
155
144
  activeColor: activeColor
156
145
  }, `si_btn_row1_${m}_${i}`);
157
146
  })
158
- }), /*#__PURE__*/_jsx(Popover, {
147
+ }), /*#__PURE__*/_jsxs(Popover, {
159
148
  open: open || openColorTool,
160
149
  anchorEl: anchorEl || openColorTool,
161
150
  onClose: handleClose,
@@ -169,40 +158,9 @@ const ColorButtons = props => {
169
158
  },
170
159
  sx: classes.colorPopper,
171
160
  className: "colorPopper",
172
- children: /*#__PURE__*/_jsxs(Box, {
161
+ children: [/*#__PURE__*/_jsx(Box, {
173
162
  sx: classes.colorButtonsInner,
174
- children: [Object.values(colorVars)?.length ? /*#__PURE__*/_jsxs(_Fragment, {
175
- children: [/*#__PURE__*/_jsxs(Box, {
176
- component: "div",
177
- className: "singleColorTitleWrapper",
178
- children: [/*#__PURE__*/_jsx(Typography, {
179
- variant: "subtitle2",
180
- children: "Theme colours"
181
- }), disableEditTheme ? null : /*#__PURE__*/_jsx("div", {
182
- className: "editBtn",
183
- onClick: () => {
184
- Transforms.deselect(editor, {
185
- at: editor.selection
186
- });
187
- handleClose();
188
- setOpenTheme("editThemeColor");
189
- },
190
- children: "Edit"
191
- })]
192
- }), /*#__PURE__*/_jsx(SingleColorButton, {
193
- crs: Object.values(colorVars),
194
- handleSelect: handleSelect,
195
- classes: classes,
196
- activeColor: activeColor
197
- })]
198
- }) : null, /*#__PURE__*/_jsx(Box, {
199
- component: "div",
200
- className: "singleColorTitleWrapper",
201
- children: /*#__PURE__*/_jsx(Typography, {
202
- variant: "subtitle2",
203
- children: "Custom colour"
204
- })
205
- }), restRows.map((m, i) => {
163
+ children: restRows.map((m, i) => {
206
164
  return /*#__PURE__*/_jsx(SingleColorButton, {
207
165
  id: `p2_${id}`,
208
166
  crs: m,
@@ -211,19 +169,14 @@ const ColorButtons = props => {
211
169
  classes: classes,
212
170
  activeColor: activeColor
213
171
  }, `si_btn_${m}_${i}`);
214
- }), forMiniTool ? /*#__PURE__*/_jsx(IconButton, {
215
- onClick: onColorPickerClick,
216
- style: {
217
- alignSelf: "start",
218
- margin: "6px",
219
- padding: "0px"
220
- },
221
- children: /*#__PURE__*/_jsx("img", {
222
- src: ColorPicker,
223
- alt: "color wheel"
224
- })
225
- }) : null]
226
- })
172
+ })
173
+ }), forMiniTool ? /*#__PURE__*/_jsx(IconButton, {
174
+ onClick: onColorPickerClick,
175
+ children: /*#__PURE__*/_jsx("img", {
176
+ src: ColorPicker,
177
+ alt: "color wheel"
178
+ })
179
+ }) : null]
227
180
  })]
228
181
  });
229
182
  };
@@ -60,28 +60,4 @@
60
60
  padding: 0 15px !important;
61
61
  width: 60px !important;
62
62
  flex-shrink: 0;
63
- }
64
-
65
-
66
- .singleColorTitleWrapper {
67
- display: flex;
68
- justify-content: space-between;
69
- align-items: center;
70
- padding: 10px;
71
- width: 100%;
72
- border-bottom: 1px solid #DCE4EC;
73
- }
74
-
75
- .singleColorTitleWrapper .MuiTypography-root {
76
- font-weight: 600;
77
- }
78
-
79
- .singleColorTitleWrapper .editBtn {
80
- text-transform: none;
81
- color: #2563EB;
82
- text-decoration: underline;
83
- padding: 0px;
84
- min-width: unset;
85
- cursor: pointer;
86
- font-size: 14px;
87
- }
63
+ }
@@ -1,14 +1,13 @@
1
1
  import React, { useState } from "react";
2
2
  import { ReactEditor } from "slate-react";
3
- import { IconButton, Tooltip, Box, Popover, useTheme } from "@mui/material";
3
+ import ColorPickerTool from "react-gcolor-picker";
4
+ import { IconButton, Tooltip, Box, Popover } from "@mui/material";
4
5
  import { addMarkData, activeMark } from "../../utils/SlateUtilityFunctions";
5
6
  import ColorButtons from "./ColorButtons";
6
7
  import ColorPickerStyles from "./Styles";
7
8
  import colorWheel from "./colorWheel.png";
8
9
  import "./ColorPicker.css";
9
10
  import { useEditorContext } from "../../hooks/useMouseMove";
10
- import CustomColorPicker from "../../common/CustomColorPicker";
11
- import { getSelectedElementColor } from "../../utils/helper";
12
11
  import { jsx as _jsx } from "react/jsx-runtime";
13
12
  import { Fragment as _Fragment } from "react/jsx-runtime";
14
13
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -26,8 +25,7 @@ const ColorPicker = props => {
26
25
  classes,
27
26
  forMiniTool,
28
27
  openColorTool,
29
- closeColorTool,
30
- type
28
+ closeColorTool
31
29
  } = props;
32
30
  const {
33
31
  theme
@@ -36,7 +34,6 @@ const ColorPicker = props => {
36
34
  const [anchorEl, setAnchorEl] = useState(null);
37
35
  const open = Boolean(anchorEl);
38
36
  const pickerStyles = ColorPickerStyles(theme);
39
- const muiTheme = useTheme();
40
37
  const onOpen = e => {
41
38
  e.preventDefault();
42
39
  setAnchorEl(e.currentTarget);
@@ -61,7 +58,7 @@ const ColorPicker = props => {
61
58
  setAnchorEl(null);
62
59
  setSelection(null);
63
60
  };
64
- const activeColor = type === "textColor" ? getSelectedElementColor(editor, format, muiTheme) : activeMark(editor, format) || DEFAULT_COLOR[format];
61
+ const activeColor = activeMark(editor, format) || DEFAULT_COLOR[format];
65
62
  return /*#__PURE__*/_jsxs(_Fragment, {
66
63
  children: [forMiniTool ? null : /*#__PURE__*/_jsx(Tooltip, {
67
64
  title: title,
@@ -99,10 +96,10 @@ const ColorPicker = props => {
99
96
  horizontal: "top"
100
97
  },
101
98
  sx: classes.colorPickerPopup,
102
- children: /*#__PURE__*/_jsx(CustomColorPicker, {
99
+ children: /*#__PURE__*/_jsx(ColorPickerTool, {
103
100
  gradient: true,
104
- onChange: handleFormSubmit,
105
- color: activeColor
101
+ value: activeColor,
102
+ onChange: handleFormSubmit
106
103
  })
107
104
  })]
108
105
  });
@@ -20,26 +20,24 @@ const ColorPickerStyles = theme => ({
20
20
  background: `${theme?.palette?.editor?.miniToolBarBackground}`,
21
21
  border: `1px solid ${theme?.palette?.editor?.miniToolBarBorder} !important`,
22
22
  borderRadius: "7px !important",
23
- padding: "0px 10px",
24
- "@media only screen and (max-width: 600px)": {
23
+ padding: "0px 5px",
24
+ '@media only screen and (max-width: 600px)': {
25
25
  marginTop: "-40px"
26
26
  }
27
27
  }
28
28
  },
29
29
  colorButtonSingle: {
30
- border: "1.5px solid #DCE4EC !important",
31
30
  "&.active": {
32
- // "&:before": {
33
- // content: '" "',
34
- // position: "absolute",
35
- // top: "-4px",
36
- // left: "-4px",
37
- // width: "calc(100% + 8px)",
38
- // height: "calc(100% + 8px)",
39
- // border: "2px solid #2563EB",
40
- // borderRadius: "50%",
41
- // },
42
- outline: "2px solid #2563EB"
31
+ "&:before": {
32
+ content: '" "',
33
+ position: "absolute",
34
+ top: "-4px",
35
+ left: "-4px",
36
+ width: "calc(100% + 8px)",
37
+ height: "calc(100% + 8px)",
38
+ border: "2px solid #2563EB",
39
+ borderRadius: "50%"
40
+ }
43
41
  }
44
42
  },
45
43
  colorButtonsInner: {
@@ -61,7 +59,7 @@ const ColorPickerStyles = theme => ({
61
59
  width: "24px",
62
60
  height: "24px",
63
61
  margin: "0px 4px",
64
- border: "1.5px solid #DCE4EC"
62
+ border: "unset"
65
63
  }
66
64
  },
67
65
  colorPickerIcon: {
@@ -6,7 +6,6 @@ import { useEditorContext } from "../../../../../hooks/useMouseMove";
6
6
  import useCompStyles from "./styles";
7
7
  import { CloseIcon } from "../../../../../common/iconslist";
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
- import { jsxs as _jsxs } from "react/jsx-runtime";
10
9
  const AvatarIcon = props => {
11
10
  const {
12
11
  option,
@@ -42,8 +41,7 @@ export default function Select(props) {
42
41
  placeholder = "",
43
42
  disabled = false,
44
43
  optionAvatar = false,
45
- className = "",
46
- wrapColumn = false
44
+ className = ""
47
45
  } = props;
48
46
  const value = Array.isArray(pValue) ? pValue : [];
49
47
  const options = selectOptions?.length ? selectOptions.filter(s => s.value) : [];
@@ -59,8 +57,7 @@ export default function Select(props) {
59
57
  newValue?.forEach(m => {
60
58
  if (multiple) {
61
59
  fv.push({
62
- value: m.inputValue || m.value,
63
- ...m
60
+ value: m.inputValue || m.value
64
61
  });
65
62
  } else {
66
63
  fv[0] = {
@@ -103,51 +100,51 @@ export default function Select(props) {
103
100
  }
104
101
  // Regular option
105
102
  return option.value || "";
106
- }
107
- // renderTags={(value, getTagProps) => {
108
- // return (
109
- // <Box
110
- // className={`tv-ms-tag-wrpr ${className}`}
111
- // sx={{
112
- // "& svg": { marginRight: "5px", "& path": { stroke: "#000" } },
113
- // flexWrap: wrapColumn ? "wrap" : "nowrap",
114
- // overflowX: wrapColumn ? "hidden" : "auto",
115
- // }}
116
- // >
117
- // {value?.map((option, index) => {
118
- // const { key, ...tagProps } = getTagProps({ index }) || {};
119
- // return option?.value ? (
120
- // <Chip
121
- // variant="outlined"
122
- // label={option?.label || option?.value}
123
- // key={key}
124
- // {...tagProps}
125
- // sx={{
126
- // background:
127
- // option?.color || appTheme?.palette?.editor?.tv_border1,
128
- // border: "none",
129
- // "& .MuiChip-label": {
130
- // paddingLeft: "12px !important",
131
- // paddingRight: disabled ? "12px !important" : "",
132
- // },
133
- // }}
134
- // avatar={<AvatarIcon option={option} avatar={optionAvatar} />}
135
- // deleteIcon={
136
- // <CloseIcon
137
- // style={{
138
- // cursor: "pointer",
139
- // display: disabled ? "none" : "",
140
- // }}
141
- // />
142
- // }
143
- // />
144
- // ) : null;
145
- // })}
146
- // </Box>
147
- // );
148
- // }}
149
- ,
150
- renderTags: () => null,
103
+ },
104
+ renderTags: (value, getTagProps) => {
105
+ return /*#__PURE__*/_jsx(Box, {
106
+ className: `tv-ms-tag-wrpr ${className}`,
107
+ sx: {
108
+ "& svg": {
109
+ marginRight: "5px",
110
+ "& path": {
111
+ stroke: "#000"
112
+ }
113
+ }
114
+ },
115
+ children: value?.map((option, index) => {
116
+ const {
117
+ key,
118
+ ...tagProps
119
+ } = getTagProps({
120
+ index
121
+ }) || {};
122
+ return option?.value ? /*#__PURE__*/_jsx(Chip, {
123
+ variant: "outlined",
124
+ label: option?.label || option?.value,
125
+ ...tagProps,
126
+ sx: {
127
+ background: option?.color || appTheme?.palette?.editor?.tv_border1,
128
+ border: "none",
129
+ "& .MuiChip-label": {
130
+ paddingLeft: "12px !important",
131
+ paddingRight: disabled ? "12px !important" : ""
132
+ }
133
+ },
134
+ avatar: /*#__PURE__*/_jsx(AvatarIcon, {
135
+ option: option,
136
+ avatar: optionAvatar
137
+ }),
138
+ deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {
139
+ style: {
140
+ cursor: "pointer",
141
+ display: disabled ? "none" : ""
142
+ }
143
+ })
144
+ }, key) : null;
145
+ })
146
+ });
147
+ },
151
148
  renderOption: (props, option) => {
152
149
  const {
153
150
  key,
@@ -164,96 +161,20 @@ export default function Select(props) {
164
161
  avatar: /*#__PURE__*/_jsx(AvatarIcon, {
165
162
  option: option,
166
163
  avatar: optionAvatar
167
- })
168
- // deleteIcon={<CloseIcon />}
164
+ }),
165
+ deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {})
169
166
  })
170
167
  }, key);
171
168
  },
172
169
  freeSolo: true,
173
170
  size: "small",
174
- fullWidth: true
175
- // renderInput={(params) => {
176
- // return (
177
- // <TextField
178
- // fullWidth
179
- // size="small"
180
- // {...params}
181
- // placeholder={placeholder}
182
- // />
183
- // );
184
- // }}
185
- ,
171
+ fullWidth: true,
186
172
  renderInput: params => {
187
- const {
188
- InputProps,
189
- ...rest
190
- } = params;
191
- return /*#__PURE__*/_jsxs(Box, {
192
- className: `tv-ms-tag-wrpr ${className}`,
193
- sx: {
194
- display: "flex",
195
- flexWrap: wrapColumn ? "wrap" : "nowrap",
196
- alignItems: "center",
197
- minHeight: "40px",
198
- padding: "2px",
199
- gap: "4px",
200
- overflowX: 'auto',
201
- "& .MuiChip-root": {
202
- margin: "2px"
203
- }
204
- },
205
- children: [value?.map((option, index) => /*#__PURE__*/_jsx(Chip, {
206
- variant: "outlined",
207
- label: option?.label || option?.value,
208
- sx: {
209
- background: option?.color || appTheme?.palette?.editor?.tv_border1,
210
- maxWidth: '150px',
211
- border: "none",
212
- "& .MuiChip-label": {
213
- // paddingLeft: "12px !important",
214
- // paddingRight: disabled ? "12px !important" : "",
215
- maxWidth: '100px'
216
- },
217
- "& .MuiChip-deleteIcon": {
218
- '& path': {
219
- stroke: '#0F172A'
220
- }
221
- }
222
- },
223
- avatar: /*#__PURE__*/_jsx(AvatarIcon, {
224
- option: option,
225
- avatar: optionAvatar
226
- }),
227
- onDelete: !disabled ? () => {
228
- const newValue = [...value];
229
- newValue.splice(index, 1);
230
- onChange(newValue);
231
- } : undefined,
232
- deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {
233
- style: {
234
- cursor: "pointer",
235
- display: disabled ? "none" : ""
236
- }
237
- }),
238
- ...InputProps?.startAdornment?.[index]?.props
239
- }, index)), /*#__PURE__*/_jsx(TextField, {
240
- ...rest,
241
- InputProps: {
242
- ...InputProps,
243
- disableUnderline: true,
244
- sx: {
245
- minWidth: 120,
246
- flexGrow: 1,
247
- input: {
248
- padding: "4px 8px"
249
- }
250
- }
251
- },
252
- size: "small",
253
- placeholder: placeholder,
254
- disabled: disabled,
255
- variant: "standard"
256
- })]
173
+ return /*#__PURE__*/_jsx(TextField, {
174
+ fullWidth: true,
175
+ size: "small",
176
+ ...params,
177
+ placeholder: placeholder
257
178
  });
258
179
  },
259
180
  slotProps: {
@@ -40,8 +40,7 @@ const SelectV1 = props => {
40
40
  wrapColumn = false,
41
41
  onChange,
42
42
  onUpdate,
43
- translation,
44
- disabled
43
+ translation
45
44
  } = props;
46
45
  const [anchorEl, setAnchorEl] = useState(null);
47
46
  const [anchorElOption, setAnchorElOption] = useState(null);
@@ -218,13 +217,15 @@ const SelectV1 = props => {
218
217
  overflowX: wrapColumn ? "hidden" : "auto",
219
218
  gap: 0.5,
220
219
  padding: "8px",
221
- cursor: disabled ? "auto" : "pointer"
220
+ cursor: "pointer"
222
221
  },
223
- onClick: disabled ? undefined : handleOpenPopover,
222
+ onClick: handleOpenPopover,
224
223
  children: resolvedSelectedOptions?.map((option, index) => /*#__PURE__*/_jsx(Chip, {
225
224
  label: option?.value,
226
- onDelete: !disabled ? event => handleDeleteChip(event, option) : undefined,
227
- deleteIcon: !disabled ? /*#__PURE__*/_jsx(CloseIcon, {}) : undefined,
225
+ onDelete: event => {
226
+ handleDeleteChip(event, option);
227
+ },
228
+ deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
228
229
  variant: "filled",
229
230
  sx: {
230
231
  backgroundColor: option?.color,
@@ -236,7 +237,7 @@ const SelectV1 = props => {
236
237
  }
237
238
  },
238
239
  "&:hover": {
239
- opacity: disabled ? 1 : 0.8
240
+ opacity: 0.8
240
241
  }
241
242
  }
242
243
  }, index))
@@ -7,12 +7,8 @@ const PersonType = props => {
7
7
  rowIndex,
8
8
  property,
9
9
  value,
10
- readOnly,
11
- settings
10
+ readOnly
12
11
  } = props;
13
- const {
14
- wrapColumn
15
- } = settings;
16
12
  const {
17
13
  onChange,
18
14
  users
@@ -26,10 +22,9 @@ const PersonType = props => {
26
22
  value: value || [],
27
23
  onChange: handleChange,
28
24
  options: users || [],
29
- multiple: true,
25
+ multiple: false,
30
26
  disabled: readOnly,
31
- optionAvatar: true,
32
- wrapColumn: wrapColumn
27
+ optionAvatar: true
33
28
  });
34
29
  };
35
30
  export default PersonType;
@@ -7,7 +7,7 @@ import Icon from "../../../../common/Icon";
7
7
  import CloseIcon from "@mui/icons-material/Close";
8
8
  import { jsx as _jsx } from "react/jsx-runtime";
9
9
  import { jsxs as _jsxs } from "react/jsx-runtime";
10
- const NEED_WRAPS = ["text", "multi-select", "person"];
10
+ const NEED_WRAPS = ["text", "multi-select"];
11
11
  const EditProperty = props => {
12
12
  const {
13
13
  classes,
@@ -101,7 +101,7 @@ const useTableStyles = (theme, appTheme) => ({
101
101
  position: "relative",
102
102
  "& .tv-ms-tag-wrpr": {
103
103
  display: "flex",
104
- // flexWrap: "nowrap",
104
+ flexWrap: "nowrap",
105
105
  overflow: "auto",
106
106
  minWidth: "58px",
107
107
  "& .MuiChip-deleteIcon": {
@@ -95,9 +95,4 @@
95
95
 
96
96
  .disablePointerEvent {
97
97
  pointer-events: none;
98
- }
99
-
100
- .cursorStabilityElement {
101
- pointer-events: none;
102
- user-select: none;
103
98
  }