@flozy/editor 9.8.5 → 9.8.7

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 (137) hide show
  1. package/dist/Editor/ChatEditor.js +17 -16
  2. package/dist/Editor/CommonEditor.js +119 -17
  3. package/dist/Editor/DialogWrapper.js +31 -25
  4. package/dist/Editor/Editor.css +17 -9
  5. package/dist/Editor/Elements/AI/PopoverAIInput.js +11 -3
  6. package/dist/Editor/Elements/AppHeader/AppHeader.js +3 -3
  7. package/dist/Editor/Elements/Button/EditorButton.js +25 -9
  8. package/dist/Editor/Elements/Color Picker/ColorButtons.js +61 -14
  9. package/dist/Editor/Elements/Color Picker/ColorPicker.css +25 -1
  10. package/dist/Editor/Elements/Color Picker/ColorPicker.js +10 -7
  11. package/dist/Editor/Elements/Color Picker/Styles.js +15 -13
  12. package/dist/Editor/Elements/DataView/Layouts/ColumnView.js +4 -2
  13. package/dist/Editor/Elements/DataView/Layouts/DataTypes/Components/MultiSelect.js +448 -0
  14. package/dist/Editor/Elements/DataView/Layouts/DataTypes/MultiSelectType.js +21 -6
  15. package/dist/Editor/Elements/DataView/Layouts/Options/AddOptions.js +5 -1
  16. package/dist/Editor/Elements/DataView/Layouts/Options/EditOption.js +3 -2
  17. package/dist/Editor/Elements/DataView/Layouts/Options/index.js +11 -0
  18. package/dist/Editor/Elements/DataView/Layouts/ViewData.js +8 -4
  19. package/dist/Editor/Elements/Embed/Image.js +2 -2
  20. package/dist/Editor/Elements/Embed/Video.js +1 -1
  21. package/dist/Editor/Elements/Form/Workflow/Styles.js +24 -22
  22. package/dist/Editor/Elements/FreeGrid/FreeGrid.js +48 -22
  23. package/dist/Editor/Elements/FreeGrid/FreeGridBox.js +25 -4
  24. package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +46 -3
  25. package/dist/Editor/Elements/FreeGrid/Options/More.js +7 -2
  26. package/dist/Editor/Elements/FreeGrid/styles.js +3 -0
  27. package/dist/Editor/Elements/Grid/GridItem.js +1 -1
  28. package/dist/Editor/Elements/List/CheckList.js +4 -1
  29. package/dist/Editor/Elements/SimpleText/index.js +9 -1
  30. package/dist/Editor/Elements/SimpleText/style.js +2 -2
  31. package/dist/Editor/Elements/Table/Table.js +3 -3
  32. package/dist/Editor/Elements/Title/title.js +6 -6
  33. package/dist/Editor/Elements/Variables/VariableButton.js +10 -1
  34. package/dist/Editor/MiniEditor.js +2 -1
  35. package/dist/Editor/Styles/EditorStyles.js +5 -5
  36. package/dist/Editor/Toolbar/FormatTools/Dropdown.js +27 -3
  37. package/dist/Editor/Toolbar/FormatTools/FontFamilyAutocomplete.js +4 -3
  38. package/dist/Editor/Toolbar/FormatTools/MarkButton.js +2 -2
  39. package/dist/Editor/Toolbar/FormatTools/TextSize.js +10 -13
  40. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/MiniColorPicker.js +4 -2
  41. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectFontSize.js +6 -13
  42. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/SelectTypography.js +167 -42
  43. package/dist/Editor/Toolbar/PopupTool/MiniTextFormat/index.js +7 -4
  44. package/dist/Editor/Toolbar/PopupTool/PopperHeader.js +2 -1
  45. package/dist/Editor/Toolbar/PopupTool/PopupToolStyle.js +72 -12
  46. package/dist/Editor/Toolbar/PopupTool/TextFormat.js +95 -23
  47. package/dist/Editor/Toolbar/PopupTool/ThemeTextFormat.js +439 -0
  48. package/dist/Editor/Toolbar/PopupTool/index.js +1 -1
  49. package/dist/Editor/Toolbar/toolbarGroups.js +48 -6
  50. package/dist/Editor/assets/svg/BackIcon.js +18 -0
  51. package/dist/Editor/assets/svg/ClearAllRounded.js +31 -0
  52. package/dist/Editor/assets/svg/ResetIconNew.js +23 -0
  53. package/dist/Editor/assets/svg/ThemeIcons.js +293 -0
  54. package/dist/Editor/common/ColorPickerButton.js +38 -16
  55. package/dist/Editor/common/CustomColorPicker/index.js +131 -0
  56. package/dist/Editor/common/CustomColorPicker/style.js +53 -0
  57. package/dist/Editor/common/CustomDialog2/index.js +94 -0
  58. package/dist/Editor/common/CustomDialog2/style.js +67 -0
  59. package/dist/Editor/common/CustomSelect.js +43 -0
  60. package/dist/Editor/common/DnD/DragHandleButton.js +1 -1
  61. package/dist/Editor/common/FontLoader/FontLoader.js +3 -0
  62. package/dist/Editor/common/Icon.js +31 -1
  63. package/dist/Editor/common/ImageSelector/Styles.js +3 -9
  64. package/dist/Editor/common/RnD/ContextMenu/CMenus.js +24 -0
  65. package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +2 -1
  66. package/dist/Editor/common/RnD/ElementSettings/Settings/AppHeaderSettings.js +3 -2
  67. package/dist/Editor/common/RnD/ElementSettings/Settings/BoxSettings.js +3 -2
  68. package/dist/Editor/common/RnD/ElementSettings/Settings/ButtonSettings.js +3 -2
  69. package/dist/Editor/common/RnD/ElementSettings/Settings/CodeSettings.js +3 -2
  70. package/dist/Editor/common/RnD/ElementSettings/Settings/FormSettings.js +4 -2
  71. package/dist/Editor/common/RnD/ElementSettings/Settings/ImageSettings.js +3 -2
  72. package/dist/Editor/common/RnD/ElementSettings/Settings/TableSettings.js +3 -2
  73. package/dist/Editor/common/RnD/ElementSettings/Settings/TextSettings.js +3 -1
  74. package/dist/Editor/common/RnD/ElementSettings/Settings/VideoSettings.js +3 -2
  75. package/dist/Editor/common/RnD/ShadowElement.js +2 -1
  76. package/dist/Editor/common/RnD/SwitchViewport/SwitchViewport.js +8 -2
  77. package/dist/Editor/common/RnD/Theme/MainThemeProvider.js +17 -0
  78. package/dist/Editor/common/RnD/Theme/ViewportStimulator.js +6 -3
  79. package/dist/Editor/common/RnD/Utils/gridDropItem.js +73 -9
  80. package/dist/Editor/common/RnD/Utils/index.js +3 -0
  81. package/dist/Editor/common/RnD/VirtualElement/BoxHeaderAutoAlignment.js +43 -0
  82. package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +44 -0
  83. package/dist/Editor/common/RnD/VirtualElement/VirtualTextElement.js +134 -0
  84. package/dist/Editor/common/RnD/VirtualElement/helper.js +382 -0
  85. package/dist/Editor/common/RnD/VirtualElement/index.js +187 -103
  86. package/dist/Editor/common/RnD/VirtualElement/styles.js +155 -7
  87. package/dist/Editor/common/RnD/VirtualElement/updateAutoProps.js +5 -3
  88. package/dist/Editor/common/RnD/index.js +59 -3
  89. package/dist/Editor/common/Shorthands/elements.js +54 -0
  90. package/dist/Editor/common/SnackBar/index.js +43 -0
  91. package/dist/Editor/common/StyleBuilder/buttonStyle.js +4 -2
  92. package/dist/Editor/common/StyleBuilder/fieldTypes/backgroundImage.js +5 -0
  93. package/dist/Editor/common/StyleBuilder/fieldTypes/bannerSpacing.js +12 -2
  94. package/dist/Editor/common/StyleBuilder/fieldTypes/borderRadius.js +15 -7
  95. package/dist/Editor/common/StyleBuilder/fieldTypes/card.js +16 -8
  96. package/dist/Editor/common/StyleBuilder/fieldTypes/color.js +36 -10
  97. package/dist/Editor/common/StyleBuilder/fieldTypes/fontSize.js +16 -7
  98. package/dist/Editor/common/StyleBuilder/fieldTypes/lineSpacing.js +7 -6
  99. package/dist/Editor/common/StyleBuilder/fieldTypes/textOptions.js +15 -7
  100. package/dist/Editor/common/StyleBuilder/pageSettingsStyle.js +5 -7
  101. package/dist/Editor/common/Uploader.js +8 -0
  102. package/dist/Editor/common/iconslist.js +7 -8
  103. package/dist/Editor/commonStyle.js +95 -60
  104. package/dist/Editor/helper/textIndeces.js +58 -0
  105. package/dist/Editor/helper/theme.js +202 -2
  106. package/dist/Editor/hooks/useAutoScroll.js +38 -0
  107. package/dist/Editor/hooks/useEditorTheme.js +153 -0
  108. package/dist/Editor/hooks/useMouseMove.js +9 -3
  109. package/dist/Editor/hooks/useThemeValues.js +63 -0
  110. package/dist/Editor/plugins/withEmbeds.js +1 -1
  111. package/dist/Editor/plugins/withHTML.js +10 -7
  112. package/dist/Editor/plugins/withLinks.js +9 -10
  113. package/dist/Editor/plugins/withTable.js +1 -1
  114. package/dist/Editor/theme/ThemeList.js +50 -173
  115. package/dist/Editor/theme/index.js +149 -0
  116. package/dist/Editor/themeSettings/ActiveTheme.js +72 -0
  117. package/dist/Editor/themeSettings/buttons/index.js +290 -0
  118. package/dist/Editor/themeSettings/buttons/style.js +23 -0
  119. package/dist/Editor/themeSettings/colorTheme/index.js +309 -0
  120. package/dist/Editor/themeSettings/colorTheme/style.js +81 -0
  121. package/dist/Editor/themeSettings/fonts/PreviewElement.js +121 -0
  122. package/dist/Editor/themeSettings/fonts/index.js +240 -0
  123. package/dist/Editor/themeSettings/fonts/style.js +62 -0
  124. package/dist/Editor/themeSettings/icons.js +60 -0
  125. package/dist/Editor/themeSettings/index.js +361 -0
  126. package/dist/Editor/themeSettings/style.js +292 -0
  127. package/dist/Editor/themeSettingsAI/icons.js +96 -0
  128. package/dist/Editor/themeSettingsAI/index.js +355 -0
  129. package/dist/Editor/themeSettingsAI/saveTheme.js +202 -0
  130. package/dist/Editor/themeSettingsAI/style.js +324 -0
  131. package/dist/Editor/utils/SlateUtilityFunctions.js +171 -45
  132. package/dist/Editor/utils/button.js +1 -17
  133. package/dist/Editor/utils/draftToSlate.js +3 -2
  134. package/dist/Editor/utils/font.js +40 -37
  135. package/dist/Editor/utils/freegrid.js +2 -3
  136. package/dist/Editor/utils/helper.js +90 -19
  137. package/package.json +4 -4
@@ -0,0 +1,448 @@
1
+ import React, { useCallback, useEffect, useMemo, useState } from "react";
2
+ import Autocomplete from "@mui/material/Autocomplete";
3
+ import Box from "@mui/material/Box";
4
+ import Chip from "@mui/material/Chip";
5
+ import Divider from "@mui/material/Divider";
6
+ import Popover from "@mui/material/Popover";
7
+ import TextField from "@mui/material/TextField";
8
+ import Typography from "@mui/material/Typography";
9
+ import List from "@mui/material/List";
10
+ import ListItem from "@mui/material/ListItem";
11
+ import ListItemButton from "@mui/material/ListItemButton";
12
+ import IconButton from "@mui/material/IconButton";
13
+ import SwipeableDrawer from "@mui/material/SwipeableDrawer";
14
+ import Tooltip from "@mui/material/Tooltip";
15
+ import { CloseIcon } from "../../../../../common/iconslist";
16
+ import { useEditorContext } from "../../../../../hooks/useMouseMove";
17
+ import Icon from "../../../../../common/Icon";
18
+ import { colors } from "../../../../Color Picker/defaultColors";
19
+ import PropertySettings from "../../Options";
20
+ import SnackbarAlert from "../../../../../common/SnackBar";
21
+ import { jsx as _jsx } from "react/jsx-runtime";
22
+ import { jsxs as _jsxs } from "react/jsx-runtime";
23
+ const EXCLUDED_COLORS = new Set(["#000000", "#0F172A", "#2563EB", "#FFFFFF", "#64748B"]);
24
+ const DEFAULT_COLORS = colors?.filter(f => !f?.includes("linear") && !EXCLUDED_COLORS?.has(f));
25
+ const generateRandomColor = () => {
26
+ const randomIndex = Math.floor(Math.random() * DEFAULT_COLORS?.length);
27
+ return DEFAULT_COLORS[randomIndex];
28
+ };
29
+ const MultiSelectWithPopover = props => {
30
+ const {
31
+ options = [],
32
+ value,
33
+ onChange,
34
+ onUpdate,
35
+ property,
36
+ wrapColumn = false,
37
+ translation
38
+ } = props;
39
+ const [anchorEl, setAnchorEl] = useState(null);
40
+ const [anchorElOption, setAnchorElOption] = useState(null);
41
+ const [currentIndex, setCurrentIndex] = useState(null);
42
+ const [selectedOptions, setSelectedOptions] = useState(value);
43
+ const [availableOptions, setAvailableOptions] = useState(options);
44
+ const [showSnackBar, setShowSnackBar] = useState(false);
45
+ const [chipColor, setChipColor] = useState(generateRandomColor());
46
+ const [inputValue, setInputValue] = useState("");
47
+ const {
48
+ theme
49
+ } = useEditorContext();
50
+ const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
51
+ const PopoverComponent = isMobile ? SwipeableDrawer : Popover;
52
+ const mode = useMemo(() => ({
53
+ type: "editOptionMulti",
54
+ edit: {
55
+ label: "Multi Select",
56
+ visible: true,
57
+ key: property,
58
+ type: "multi-select",
59
+ options: options || [],
60
+ optionIndex: currentIndex,
61
+ hideBackButton: true
62
+ }
63
+ }), [options, property, currentIndex]);
64
+ const customScrollStyles = {
65
+ scrollbarWidth: "thin",
66
+ scrollbarColor: `${theme?.palette?.editor?.brainPopupScroll} transparent`,
67
+ "&::-webkit-scrollbar": {
68
+ width: "6px"
69
+ },
70
+ "&::-webkit-scrollbar-thumb": {
71
+ backgroundColor: theme?.palette?.editor?.brainPopupScroll,
72
+ borderRadius: "3px"
73
+ },
74
+ "&::-webkit-scrollbar-track": {
75
+ display: "none"
76
+ }
77
+ };
78
+ useEffect(() => {
79
+ if (inputValue?.trim() && !chipColor) {
80
+ setChipColor(generateRandomColor());
81
+ }
82
+ }, [inputValue, chipColor]);
83
+ useEffect(() => {
84
+ if (JSON.stringify(options) !== JSON.stringify(availableOptions)) {
85
+ setAvailableOptions(options);
86
+ }
87
+ }, [options, availableOptions]);
88
+ const handleOpenPopover = useCallback(event => {
89
+ setAnchorEl(event.currentTarget);
90
+ }, []);
91
+ const handleClosePopover = useCallback(e => {
92
+ e?.stopPropagation();
93
+ setAnchorEl(null);
94
+ }, []);
95
+ const handleAddOption = newValue => {
96
+ const trimmedValue = newValue?.trim();
97
+ if (!trimmedValue) return;
98
+ const newOption = {
99
+ value: trimmedValue,
100
+ color: chipColor
101
+ };
102
+ if (!availableOptions?.some(opt => opt?.value === trimmedValue)) {
103
+ setAvailableOptions(prev => [...prev, newOption]);
104
+ setSelectedOptions(prev => [...prev, newOption]);
105
+ onUpdate([newOption, ...availableOptions]);
106
+ }
107
+ setInputValue("");
108
+ setChipColor("");
109
+ };
110
+ const onClose = () => {
111
+ setAnchorEl(anchorElOption);
112
+ setAnchorElOption(null);
113
+ };
114
+ const onEditOption = (type, data) => {
115
+ const updateData = data?.edit ? data?.edit?.options : data?.options;
116
+ onUpdate(updateData);
117
+ if (data?.edit?.options) {
118
+ const updatedSelectedOptions = selectedOptions?.filter(selOption => updateData?.some(availOption => availOption?.value === selOption?.value && availOption?.color === selOption?.color));
119
+ setSelectedOptions(updatedSelectedOptions);
120
+ onClose();
121
+ }
122
+ };
123
+ const handleEditOption = (e, index) => {
124
+ e.stopPropagation();
125
+ setCurrentIndex(index);
126
+ setAnchorElOption(anchorEl);
127
+ setAnchorEl(null);
128
+ };
129
+ const handleSelectOption = option => {
130
+ if (!selectedOptions?.some(opt => opt?.value === option?.value)) {
131
+ const updatedOptions = [...selectedOptions, option];
132
+ setSelectedOptions(updatedOptions);
133
+ onChange(updatedOptions);
134
+ } else {
135
+ setShowSnackBar(true);
136
+ }
137
+ };
138
+ const handleClearSelection = () => {
139
+ setSelectedOptions([]);
140
+ };
141
+ const filteredOptions = availableOptions?.filter(option => option?.value?.toLowerCase()?.includes(inputValue?.toLowerCase()));
142
+ const isExactMatch = availableOptions?.some(opt => opt?.value?.toLowerCase() === inputValue?.toLowerCase());
143
+ const open = Boolean(anchorEl);
144
+ const openEditOption = Boolean(anchorElOption);
145
+ const id = open ? "autocomplete-popover" : undefined;
146
+ return /*#__PURE__*/_jsxs("div", {
147
+ children: [/*#__PURE__*/_jsx(Box, {
148
+ sx: {
149
+ display: "flex",
150
+ flexWrap: wrapColumn ? "wrap" : "nowrap",
151
+ overflowX: wrapColumn ? "hidden" : "auto",
152
+ gap: 0.5,
153
+ padding: "8px",
154
+ cursor: "pointer"
155
+ },
156
+ onClick: handleOpenPopover,
157
+ children: selectedOptions?.map((option, index) => /*#__PURE__*/_jsx(Chip, {
158
+ label: option?.value,
159
+ onDelete: event => {
160
+ event.stopPropagation();
161
+ setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
162
+ },
163
+ deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
164
+ variant: "filled",
165
+ sx: {
166
+ backgroundColor: option?.color,
167
+ color: '#0F172A',
168
+ "& .MuiChip-deleteIcon": {
169
+ flexShrink: 0,
170
+ "& path": {
171
+ stroke: '#0F172A'
172
+ }
173
+ },
174
+ "&:hover": {
175
+ opacity: 0.8
176
+ }
177
+ }
178
+ }, index))
179
+ }), /*#__PURE__*/_jsx(PopoverComponent, {
180
+ id: id,
181
+ open: open,
182
+ anchorEl: anchorEl,
183
+ anchor: "bottom",
184
+ onClose: e => handleClosePopover(e),
185
+ anchorOrigin: {
186
+ vertical: "top",
187
+ horizontal: "left"
188
+ },
189
+ transformOrigin: {
190
+ vertical: "top",
191
+ horizontal: "left"
192
+ },
193
+ sx: {
194
+ "& .MuiPaper-root": {
195
+ borderRadius: "20px",
196
+ background: theme?.palette?.editor?.textFormatBgColor,
197
+ border: `1px solid ${theme?.palette?.editor?.popUpBorderColor}`,
198
+ boxShadow: "0px 4px 10px 0px #00000029"
199
+ }
200
+ },
201
+ disableAutoFocus: true,
202
+ disableEnforceFocus: true,
203
+ disableRestoreFocus: true,
204
+ children: /*#__PURE__*/_jsxs(Box, {
205
+ sx: {
206
+ width: isMobile ? "100%" : 300
207
+ },
208
+ children: [/*#__PURE__*/_jsx(Autocomplete, {
209
+ multiple: true,
210
+ freeSolo: true,
211
+ disablePortal: true,
212
+ PopperComponent: () => null,
213
+ sx: {
214
+ "& .MuiFormControl-root": {
215
+ maxHeight: "250px",
216
+ overflowY: "auto",
217
+ overflowX: "hidden",
218
+ pr: '12px',
219
+ pl: '12px',
220
+ marginTop: '12px',
221
+ ...customScrollStyles
222
+ }
223
+ },
224
+ disableClearable: true,
225
+ options: [],
226
+ getOptionLabel: option => options?.value || "",
227
+ value: selectedOptions,
228
+ onChange: (event, newValues) => {
229
+ const addedOptions = newValues?.filter(value => typeof value === "object" || typeof value === "string" && value?.trim() !== "")?.map(value => typeof value === "string" ? {
230
+ value,
231
+ color: chipColor
232
+ } : value);
233
+ const isDuplicate = addedOptions?.some(newOpt => (selectedOptions || [])?.some(opt => opt.value === newOpt.value));
234
+ if (!isDuplicate) {
235
+ setSelectedOptions([...selectedOptions, ...addedOptions]);
236
+ }
237
+ },
238
+ inputValue: inputValue,
239
+ onInputChange: (event, newInputValue) => setInputValue(newInputValue),
240
+ onKeyDown: event => {
241
+ if (event.key === "Enter" && inputValue.trim()) {
242
+ event.preventDefault();
243
+ handleAddOption(inputValue);
244
+ }
245
+ },
246
+ filterOptions: (options, params) => options?.filter(option => option?.value?.toLowerCase()?.includes(params?.inputValue?.toLowerCase())),
247
+ renderInput: params => /*#__PURE__*/_jsx(TextField, {
248
+ ...params,
249
+ variant: "standard",
250
+ InputProps: {
251
+ ...params.InputProps,
252
+ disableUnderline: true,
253
+ sx: {
254
+ display: "flex",
255
+ flexWrap: "wrap",
256
+ fontFamily: "Inter",
257
+ fontWeight: 400,
258
+ fontSize: "12px",
259
+ color: theme?.palette?.editor?.secondaryTextColor,
260
+ "&::placeholder": {
261
+ color: theme?.palette?.editor?.secondaryTextColor
262
+ },
263
+ "& .MuiAutocomplete-input": {
264
+ minWidth: "100px !important"
265
+ }
266
+ },
267
+ endAdornment: /*#__PURE__*/_jsx(Tooltip, {
268
+ arrow: true,
269
+ title: "Clear Selected",
270
+ children: /*#__PURE__*/_jsx(IconButton, {
271
+ onClick: handleClearSelection,
272
+ sx: {
273
+ padding: 0,
274
+ minWidth: "unset",
275
+ "& .MuiSvgIcon-root": {
276
+ fontSize: 20
277
+ },
278
+ '& rect': {
279
+ fill: theme?.palette?.editor?.closeButtonSvgStroke
280
+ },
281
+ '&:hover': {
282
+ backgroundColor: 'transparent'
283
+ }
284
+ },
285
+ children: /*#__PURE__*/_jsx(Icon, {
286
+ icon: "resetIconNew"
287
+ })
288
+ })
289
+ })
290
+ },
291
+ sx: {
292
+ backgroundColor: "transparent",
293
+ fontFamily: 'Inter',
294
+ fontWeight: 400,
295
+ fontSize: '12px'
296
+ },
297
+ placeholder: "Create new one..."
298
+ }),
299
+ renderTags: (tagValues, getTagProps) => tagValues.map((option, index) => /*#__PURE__*/_jsx(Chip, {
300
+ variant: "filled",
301
+ label: option?.value,
302
+ ...getTagProps({
303
+ index
304
+ }),
305
+ onDelete: event => {
306
+ event?.stopPropagation();
307
+ setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
308
+ },
309
+ deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
310
+ sx: {
311
+ backgroundColor: option?.color,
312
+ color: '#0F172A',
313
+ "& .MuiChip-deleteIcon": {
314
+ flexShrink: 0,
315
+ "& path": {
316
+ stroke: '#0F172A'
317
+ }
318
+ },
319
+ "&:hover": {
320
+ opacity: 0.8
321
+ }
322
+ }
323
+ }, index))
324
+ }), /*#__PURE__*/_jsx(Divider, {
325
+ sx: {
326
+ mt: '12px',
327
+ borderBottom: `1px solid ${theme?.palette?.editor?.popUpBorderColor}`,
328
+ boxShadow: theme?.palette?.editor?.dividerDropShadow
329
+ }
330
+ }), /*#__PURE__*/_jsx(Box, {
331
+ sx: {
332
+ pl: '4px'
333
+ },
334
+ children: /*#__PURE__*/_jsxs(List, {
335
+ sx: {
336
+ maxHeight: "250px",
337
+ overflowY: "auto",
338
+ ...customScrollStyles
339
+ },
340
+ children: [/*#__PURE__*/_jsx(Typography, {
341
+ sx: {
342
+ mb: 1,
343
+ pl: '8px',
344
+ color: theme?.palette?.editor?.secondaryTextColor,
345
+ fontFamily: 'Inter',
346
+ fontWeight: 400,
347
+ fontSize: '12px'
348
+ },
349
+ children: "Choose an option or create one"
350
+ }), filteredOptions?.map((option, index) => /*#__PURE__*/_jsx(ListItem, {
351
+ sx: {
352
+ padding: 0
353
+ },
354
+ disablePadding: true,
355
+ children: /*#__PURE__*/_jsxs(ListItemButton, {
356
+ onClick: () => handleSelectOption(option),
357
+ sx: {
358
+ paddingTop: "4px",
359
+ paddingBottom: "4px",
360
+ justifyContent: 'space-between',
361
+ '&:hover': {
362
+ '& path': {
363
+ stroke: theme?.palette?.editor?.activeColor
364
+ },
365
+ borderRadius: '12px'
366
+ }
367
+ },
368
+ children: [/*#__PURE__*/_jsx(Chip, {
369
+ label: option?.value,
370
+ sx: {
371
+ backgroundColor: option?.color,
372
+ color: '#0F172A',
373
+ fontWeight: 500,
374
+ fontSize: "12px",
375
+ fontFamily: "Inter",
376
+ padding: "4px 12px",
377
+ borderRadius: "16px",
378
+ maxWidth: "180px",
379
+ whiteSpace: "nowrap",
380
+ overflow: "hidden",
381
+ textOverflow: "ellipsis"
382
+ }
383
+ }), /*#__PURE__*/_jsx(IconButton, {
384
+ size: "small",
385
+ sx: {
386
+ '& path': {
387
+ stroke: theme?.palette?.editor?.closeButtonSvgStroke
388
+ },
389
+ '&:hover': {
390
+ backgroundColor: 'transparent'
391
+ }
392
+ },
393
+ onClick: e => handleEditOption(e, index),
394
+ children: /*#__PURE__*/_jsx(Icon, {
395
+ icon: "rightArrow"
396
+ })
397
+ })]
398
+ })
399
+ }, index)), inputValue?.trim() && !isExactMatch && /*#__PURE__*/_jsx(ListItem, {
400
+ disablePadding: true,
401
+ children: /*#__PURE__*/_jsxs(ListItemButton, {
402
+ onClick: () => handleAddOption(inputValue),
403
+ sx: {
404
+ display: "flex",
405
+ alignItems: "center"
406
+ },
407
+ children: [/*#__PURE__*/_jsx(Typography, {
408
+ sx: {
409
+ color: theme?.palette?.editor?.secondaryTextColor,
410
+ marginRight: "6px",
411
+ fontSize: "14px",
412
+ fontFamily: "Inter"
413
+ },
414
+ children: "Create"
415
+ }), /*#__PURE__*/_jsx(Chip, {
416
+ label: `${inputValue}`,
417
+ sx: {
418
+ backgroundColor: chipColor,
419
+ color: '#0F172A',
420
+ fontWeight: 500,
421
+ fontSize: "12px",
422
+ fontFamily: "Inter",
423
+ borderRadius: "16px",
424
+ maxWidth: "180px",
425
+ whiteSpace: "nowrap",
426
+ overflow: "hidden",
427
+ textOverflow: "ellipsis"
428
+ }
429
+ })]
430
+ })
431
+ })]
432
+ })
433
+ })]
434
+ })
435
+ }), openEditOption ? /*#__PURE__*/_jsx(PropertySettings, {
436
+ open: openEditOption,
437
+ anchorEl: anchorElOption,
438
+ mode: mode,
439
+ onClose: onClose,
440
+ onEvent: onEditOption,
441
+ translation: translation
442
+ }) : null, showSnackBar ? /*#__PURE__*/_jsx(SnackbarAlert, {
443
+ message: "Option already selected!",
444
+ setShowSnackBar: setShowSnackBar
445
+ }) : null]
446
+ });
447
+ };
448
+ export default MultiSelectWithPopover;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { useDataView } from "../../Providers/DataViewProvider";
3
- import Select from "./Components/Select";
3
+ import MultiSelectWithPopover from "./Components/MultiSelect";
4
4
  import { jsx as _jsx } from "react/jsx-runtime";
5
5
  const MultiSelectType = props => {
6
6
  const {
@@ -10,13 +10,15 @@ const MultiSelectType = props => {
10
10
  options,
11
11
  label = "",
12
12
  readOnly,
13
- settings
13
+ settings,
14
+ translation
14
15
  } = props;
15
16
  const {
16
17
  wrapColumn
17
18
  } = settings;
18
19
  const {
19
- onChange
20
+ onChange,
21
+ onUpdateProperty
20
22
  } = useDataView();
21
23
  const value = Array.isArray(pValue) ? pValue : [];
22
24
  const coloredValues = [...(value || [])]?.map(m => {
@@ -30,15 +32,28 @@ const MultiSelectType = props => {
30
32
  [property]: data?.filter(f => f?.value)
31
33
  });
32
34
  };
33
- return /*#__PURE__*/_jsx(Select, {
34
- className: `wrap-${wrapColumn}`,
35
+ const handleUpdate = data => {
36
+ const updateData = {
37
+ "label": "Multi Select",
38
+ "visible": true,
39
+ "key": property,
40
+ "type": "multi-select",
41
+ "options": data
42
+ };
43
+ onUpdateProperty(updateData);
44
+ };
45
+ return /*#__PURE__*/_jsx(MultiSelectWithPopover, {
35
46
  value: coloredValues,
36
47
  onChange: handleChange,
48
+ onUpdate: handleUpdate,
37
49
  options: options,
38
50
  multiple: true,
39
51
  limitTags: 2,
40
52
  placeholder: label,
41
- disabled: readOnly
53
+ disabled: readOnly,
54
+ property: property,
55
+ wrapColumn: wrapColumn,
56
+ translation: translation
42
57
  });
43
58
  };
44
59
  export default MultiSelectType;
@@ -4,7 +4,11 @@ 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 DEFAULT_COLORS = colors?.filter(f => !(f.includes("linear") || f === "#000000"));
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
+
8
12
  const AddOptions = props => {
9
13
  const {
10
14
  edit,
@@ -30,6 +30,7 @@ const EditOption = props => {
30
30
  } = edit;
31
31
  const selectedOption = edit?.options[optionIndex] || {};
32
32
  const pickerStyles = ColorPickerStyles(theme);
33
+ const hideBackButton = edit?.hideBackButton || false;
33
34
  useEffect(() => {
34
35
  return () => {
35
36
  // on un-mount update the option change
@@ -104,14 +105,14 @@ const EditOption = props => {
104
105
  children: [/*#__PURE__*/_jsxs(Box, {
105
106
  className: "fe-dv-ap-title",
106
107
  children: [/*#__PURE__*/_jsxs("span", {
107
- children: [/*#__PURE__*/_jsx(IconButton, {
108
+ children: [!hideBackButton ? /*#__PURE__*/_jsx(IconButton, {
108
109
  className: "tv-act-ico",
109
110
  size: "small",
110
111
  onClick: onBack,
111
112
  children: /*#__PURE__*/_jsx(Icon, {
112
113
  icon: 'leftArrow'
113
114
  })
114
- }), translation("Edit Option")]
115
+ }) : null, translation("Edit Option")]
115
116
  }), /*#__PURE__*/_jsx(IconButton, {
116
117
  className: "tv-act-ico bg br1",
117
118
  size: "small",
@@ -29,6 +29,16 @@ 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
+ }
32
42
  }
33
43
  };
34
44
  const PropertySettings = props => {
@@ -82,6 +92,7 @@ const PropertySettings = props => {
82
92
  translation: translation
83
93
  });
84
94
  case "editOption":
95
+ case "editOptionMulti":
85
96
  return /*#__PURE__*/_jsx(EditOption, {
86
97
  classes: classes,
87
98
  onClose: onClose,
@@ -11,7 +11,8 @@ const RenderRow = props => {
11
11
  properties,
12
12
  onSelect,
13
13
  selected,
14
- readOnly
14
+ readOnly,
15
+ translation
15
16
  } = props;
16
17
  const showProperties = properties?.filter(f => f.visible);
17
18
  return showProperties?.map((property, i) => {
@@ -22,7 +23,8 @@ const RenderRow = props => {
22
23
  property: property,
23
24
  onSelect: onSelect,
24
25
  selected: selected,
25
- readOnly: readOnly
26
+ readOnly: readOnly,
27
+ translation: translation
26
28
  }, `${property.key}_${i}`);
27
29
  });
28
30
  };
@@ -33,7 +35,8 @@ const ViewData = props => {
33
35
  customProps
34
36
  } = props;
35
37
  const {
36
- readOnly
38
+ readOnly,
39
+ translation
37
40
  } = customProps || {};
38
41
  const {
39
42
  properties,
@@ -67,7 +70,8 @@ const ViewData = props => {
67
70
  properties: properties,
68
71
  onSelect: onSelect,
69
72
  selected: selectedRows?.includes(row?.id),
70
- readOnly: readOnly
73
+ readOnly: readOnly,
74
+ translation: translation
71
75
  }), /*#__PURE__*/_jsx("td", {}), /*#__PURE__*/_jsx("td", {})]
72
76
  }, i);
73
77
  }), /*#__PURE__*/_jsx("tr", {
@@ -5,7 +5,7 @@ import AspectRatioIcon from "@mui/icons-material/AspectRatio";
5
5
  import useResize from "../../utils/customHooks/useResize";
6
6
  import EmbedPopup from "./EmbedPopup";
7
7
  import { IconButton, Tooltip, Box, useTheme } from "@mui/material";
8
- import { GridSettingsIcon, LinkIcon } from "../../common/iconslist";
8
+ import { LinkIcon } from "../../common/iconslist";
9
9
  import { useEditorContext } from "../../hooks/useMouseMove";
10
10
  import { getTRBLBreakPoints, getBreakPointsValue, groupByBreakpoint } from "../../helper/theme";
11
11
  import Icon from "../../common/Icon";
@@ -33,7 +33,7 @@ const ToolBar = ({
33
33
  top: "-4px",
34
34
  left: topM ? "35px" : "0px",
35
35
  margin: "0px",
36
- gap: '3px'
36
+ gap: "3px"
37
37
  },
38
38
  children: [/*#__PURE__*/_jsx(Tooltip, {
39
39
  title: translation("Image Settings"),
@@ -89,7 +89,7 @@ const VideoPlaceholder = props => {
89
89
  },
90
90
  children: [/*#__PURE__*/_jsx(Icon, {
91
91
  icon: "video"
92
- }), TYPE_LABELS[type] || translation("Embed Video or Other")]
92
+ }), translation(TYPE_LABELS[type] || "Embed Video or Other")]
93
93
  }) : /*#__PURE__*/_jsxs(Box, {
94
94
  sx: {
95
95
  color: "#64748B !important",