@flozy/editor 9.7.9 → 9.8.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.
@@ -1,12 +1,23 @@
1
- import React, { useEffect, useState } from "react";
2
- import { Autocomplete, Box, Chip, Divider, Popover, TextField, Typography, List, ListItem, ListItemButton, IconButton, SwipeableDrawer, Tooltip } from "@mui/material";
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";
3
15
  import { CloseIcon } from "../../../../../common/iconslist";
4
16
  import { useEditorContext } from "../../../../../hooks/useMouseMove";
5
17
  import Icon from "../../../../../common/Icon";
6
18
  import { colors } from "../../../../Color Picker/defaultColors";
7
19
  import PropertySettings from "../../Options";
8
20
  import SnackbarAlert from "../../../../../common/SnackBar";
9
- import ClearAllRounded from "../../../../../assets/svg/ClearAllRounded";
10
21
  import { jsx as _jsx } from "react/jsx-runtime";
11
22
  import { jsxs as _jsxs } from "react/jsx-runtime";
12
23
  const EXCLUDED_COLORS = new Set(["#000000", "#0F172A", "#2563EB", "#FFFFFF", "#64748B"]);
@@ -38,7 +49,7 @@ const MultiSelectWithPopover = props => {
38
49
  } = useEditorContext();
39
50
  const isMobile = window.matchMedia("(max-width: 899px)")?.matches || false;
40
51
  const PopoverComponent = isMobile ? SwipeableDrawer : Popover;
41
- const mode = {
52
+ const mode = useMemo(() => ({
42
53
  type: "editOptionMulti",
43
54
  edit: {
44
55
  label: "Multi Select",
@@ -49,7 +60,7 @@ const MultiSelectWithPopover = props => {
49
60
  optionIndex: currentIndex,
50
61
  hideBackButton: true
51
62
  }
52
- };
63
+ }), [options, property, currentIndex]);
53
64
  const customScrollStyles = {
54
65
  scrollbarWidth: "thin",
55
66
  scrollbarColor: `${theme?.palette?.editor?.brainPopupScroll} transparent`,
@@ -65,21 +76,21 @@ const MultiSelectWithPopover = props => {
65
76
  }
66
77
  };
67
78
  useEffect(() => {
68
- if (inputValue?.trim()) {
69
- setChipColor(prevColor => prevColor || generateRandomColor());
70
- } else {
79
+ if (inputValue?.trim() && !chipColor) {
71
80
  setChipColor(generateRandomColor());
72
81
  }
73
- }, [inputValue]);
82
+ }, [inputValue, chipColor]);
74
83
  useEffect(() => {
75
- setAvailableOptions(options);
76
- }, [options]);
77
- const handleOpenPopover = event => {
84
+ if (JSON.stringify(options) !== JSON.stringify(availableOptions)) {
85
+ setAvailableOptions(options);
86
+ }
87
+ }, [options, availableOptions]);
88
+ const handleOpenPopover = useCallback(event => {
78
89
  setAnchorEl(event.currentTarget);
79
- };
80
- const handleClosePopover = () => {
90
+ }, []);
91
+ const handleClosePopover = useCallback(() => {
81
92
  setAnchorEl(null);
82
- };
93
+ }, []);
83
94
  const handleAddOption = newValue => {
84
95
  const trimmedValue = newValue?.trim();
85
96
  if (!trimmedValue) return;
@@ -93,6 +104,7 @@ const MultiSelectWithPopover = props => {
93
104
  onUpdate([newOption, ...availableOptions]);
94
105
  }
95
106
  setInputValue("");
107
+ setChipColor("");
96
108
  };
97
109
  const onClose = () => {
98
110
  setAnchorEl(anchorElOption);
@@ -115,8 +127,9 @@ const MultiSelectWithPopover = props => {
115
127
  };
116
128
  const handleSelectOption = option => {
117
129
  if (!selectedOptions?.some(opt => opt?.value === option?.value)) {
118
- setSelectedOptions(prev => [...prev, option]);
119
- onChange(selectedOptions);
130
+ const updatedOptions = [...selectedOptions, option];
131
+ setSelectedOptions(updatedOptions);
132
+ onChange(updatedOptions);
120
133
  } else {
121
134
  setShowSnackBar(true);
122
135
  }
@@ -200,7 +213,6 @@ const MultiSelectWithPopover = props => {
200
213
  overflowX: "hidden",
201
214
  pr: '12px',
202
215
  pl: '12px',
203
- maxWidth: isMobile ? "100%" : "275px",
204
216
  marginTop: '12px',
205
217
  ...customScrollStyles
206
218
  }
@@ -266,7 +278,9 @@ const MultiSelectWithPopover = props => {
266
278
  backgroundColor: 'transparent'
267
279
  }
268
280
  },
269
- children: /*#__PURE__*/_jsx(ClearAllRounded, {})
281
+ children: /*#__PURE__*/_jsx(Icon, {
282
+ icon: "resetIconNew"
283
+ })
270
284
  })
271
285
  })
272
286
  },
@@ -285,7 +299,7 @@ const MultiSelectWithPopover = props => {
285
299
  index
286
300
  }),
287
301
  onDelete: event => {
288
- event.stopPropagation();
302
+ event?.stopPropagation();
289
303
  setSelectedOptions(prev => prev.filter(selected => selected?.value !== option?.value));
290
304
  },
291
305
  deleteIcon: /*#__PURE__*/_jsx(CloseIcon, {}),
@@ -330,10 +344,15 @@ const MultiSelectWithPopover = props => {
330
344
  },
331
345
  children: "Choose an option or create one"
332
346
  }), filteredOptions?.map((option, index) => /*#__PURE__*/_jsx(ListItem, {
347
+ sx: {
348
+ padding: 0
349
+ },
333
350
  disablePadding: true,
334
351
  children: /*#__PURE__*/_jsxs(ListItemButton, {
335
352
  onClick: () => handleSelectOption(option),
336
353
  sx: {
354
+ paddingTop: "4px",
355
+ paddingBottom: "4px",
337
356
  justifyContent: 'space-between',
338
357
  '&:hover': {
339
358
  '& path': {
@@ -1,4 +1,4 @@
1
- import React, { useState } from "react";
1
+ import React, { useMemo, useState } from "react";
2
2
  import { Transforms, Node, Path } from "slate";
3
3
  import { useSlateStatic } from "slate-react";
4
4
  import { ReactEditor } from "slate-react";
@@ -250,6 +250,22 @@ const FreeGridItem = props => {
250
250
  }
251
251
  };
252
252
  const itemTypeOptions = (itemOptions[childType] || itemOptions?.default).filter(f => (hideTools || []).indexOf(f) === -1);
253
+ const variableStyle = useMemo(() => {
254
+ const {
255
+ width,
256
+ height
257
+ } = element || {};
258
+ let widthVar = width_xs;
259
+ let heightVar = height_xs;
260
+ if (element?.childType === "image") {
261
+ widthVar = width_xs || width;
262
+ heightVar = height_xs || height;
263
+ }
264
+ return {
265
+ "--width_xs": widthVar ? `${widthVar}px` : "auto",
266
+ "--height_xs": heightVar ? `${heightVar}px` : "auto"
267
+ };
268
+ }, [element]);
253
269
  return /*#__PURE__*/_jsx(RnD, {
254
270
  id: `freegrid_item_${path.join("|")}_${updated_at}_${breakpoint}`,
255
271
  className: `freegrid-item path-${path.length} breakpoint-${breakpoint}`,
@@ -270,9 +286,8 @@ const FreeGridItem = props => {
270
286
  "--width": `${width}px`,
271
287
  "--height": `${height}px`,
272
288
  "--zIndex": 100 + arrangeIndex,
273
- "--height_xs": height_xs ? `${height_xs}px` : "auto",
274
- "--width_xs": width_xs ? `${width_xs}px` : "auto",
275
- "--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "0px"
289
+ "--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "0px",
290
+ ...variableStyle
276
291
  // "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
277
292
  },
278
293
 
@@ -0,0 +1,23 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxs as _jsxs } from "react/jsx-runtime";
3
+ const ResetIconNew = () => {
4
+ return /*#__PURE__*/_jsxs("svg", {
5
+ width: "17",
6
+ height: "17",
7
+ viewBox: "0 0 17 17",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ children: [/*#__PURE__*/_jsx("circle", {
11
+ cx: "8.10105",
12
+ cy: "8.10234",
13
+ r: "8",
14
+ transform: "rotate(-89.2717 8.10105 8.10234)",
15
+ fill: "#2563EB",
16
+ fillOpacity: "0.16"
17
+ }), /*#__PURE__*/_jsx("path", {
18
+ d: "M12.7169 8.22222V8.22222C12.7168 8.2323 12.7289 8.23752 12.7361 8.2305L13.3823 7.6035C13.6597 7.33434 14.0843 7.33974 14.3547 7.61586C14.6252 7.89199 14.6198 8.31458 14.3424 8.58375L12.6992 10.1595C12.3035 10.5389 11.6762 10.5291 11.2926 10.1375L9.71318 8.5249C9.57796 8.38683 9.51173 8.20874 9.51381 8.04516C9.51606 7.86794 9.58679 7.69159 9.72531 7.57064C10.0027 7.30148 10.4273 7.30688 10.6977 7.583L11.3182 8.21649C11.3288 8.22729 11.3471 8.21993 11.3473 8.20481V8.20481C11.374 6.10545 9.67017 4.36586 7.56099 4.33905C5.45182 4.31224 3.70429 6.00795 3.6776 8.10731C3.65091 10.2067 5.35477 11.9463 7.46394 11.9731C7.84743 11.9779 8.14493 12.2817 8.14007 12.6634C8.13522 13.0451 7.8301 13.3412 7.44661 13.3363C4.57046 13.2997 2.27161 10.9527 2.30801 8.0899C2.3444 5.22714 4.70217 2.93927 7.57832 2.97583C10.4408 3.01222 12.7533 5.35946 12.7169 8.22222Z",
19
+ fill: "#2563EB"
20
+ })]
21
+ });
22
+ };
23
+ export default ResetIconNew;
@@ -45,6 +45,7 @@ import TrashIcon from "../assets/svg/TrashCanIcon";
45
45
  import DataTableIcon from "../assets/svg/DataTableIcon";
46
46
  import ChervDown from "../assets/svg/ChervDown";
47
47
  import ChervUp from "../assets/svg/ChervUp";
48
+ import ResetIconNew from "../assets/svg/ResetIconNew";
48
49
  import { jsx as _jsx } from "react/jsx-runtime";
49
50
  import { jsxs as _jsxs } from "react/jsx-runtime";
50
51
  const HeadingIcon = ({
@@ -357,7 +358,8 @@ const iconList = {
357
358
  stroke: "#64748B",
358
359
  color: "#64748B"
359
360
  }
360
- })
361
+ }),
362
+ resetIconNew: /*#__PURE__*/_jsx(ResetIconNew, {})
361
363
  };
362
364
  export const icons = {
363
365
  ...iconList
@@ -345,6 +345,12 @@ export const sortElements = (items, container) => {
345
345
  return aRow - bRow; // Sort by start row first
346
346
  }
347
347
 
348
+ // Compare marginTopXs
349
+ const aMarginTop = parseFloat(a.dataset.marginTopXs) || 0;
350
+ const bMarginTop = parseFloat(b.dataset.marginTopXs) || 0;
351
+ if (aMarginTop !== bMarginTop) {
352
+ return aMarginTop - bMarginTop;
353
+ }
348
354
  const aLeft = parseFloat(a.dataset.leftXs) || 0;
349
355
  const bLeft = parseFloat(b.dataset.leftXs) || 0;
350
356
  return aLeft - bLeft;
@@ -30,6 +30,10 @@ const useVirtualElementStyles = () => ({
30
30
  "&.type_text": {
31
31
  height: "auto !important"
32
32
  },
33
+ "&.type_image": {
34
+ width: "calc(--width_xs) !important",
35
+ height: "var(--height_xs) !important"
36
+ },
33
37
  // "&.type_box": {
34
38
  // // display: "grid !important",
35
39
  // // gridTemplateRows: "repeat(auto-fill, 50px) !important",
@@ -19,7 +19,7 @@ import { removeSign } from "./ElementSettings/OtherSettings";
19
19
  import useDragging from "../../hooks/useDragging";
20
20
  import { dragOverOn } from "../../helper/RnD/focusNode";
21
21
  import { focusSelection, clearSelection, clearSelectionOnly } from "../../helper";
22
- import { reRenderChildNodes } from "./Utils/gridDropItem";
22
+ // import { reRenderChildNodes } from "./Utils/gridDropItem";
23
23
  import VirtualTextElement from "./VirtualElement/VirtualTextElement";
24
24
  import useAutoScroll from "../../hooks/useAutoScroll";
25
25
  import ForceAutoAlignment from "./VirtualElement/ForceAutoAlignment";
@@ -485,12 +485,17 @@ const RnD = props => {
485
485
  ...updatedSize
486
486
  });
487
487
  handleResizeEvent("stop");
488
- const parentPath = getParentSectionPath({
489
- ref
490
- }, ".freegrid-container-parent");
491
- const formatParentPath = parentPath?.split("|")?.map(m => parseInt(m));
492
- reRenderChildNodes(editor, formatParentPath);
488
+
489
+ // const parentPath = getParentSectionPath(
490
+ // { ref },
491
+ // ".freegrid-container-parent"
492
+ // );
493
+
494
+ // const formatParentPath = parentPath?.split("|")?.map((m) => parseInt(m));
495
+
496
+ // reRenderChildNodes(editor, formatParentPath);
493
497
  };
498
+
494
499
  const onCloseSettings = () => {
495
500
  setSelectedElement({
496
501
  ...selectedElementProps,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.7.9",
3
+ "version": "9.8.1",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"
@@ -38,7 +38,6 @@
38
38
  "react-icons": "^4.10.1",
39
39
  "react-katex": "^3.0.1",
40
40
  "react-rnd": "^10.4.11",
41
- "react-scripts": "5.0.1",
42
41
  "react-signature-canvas": "^1.0.6",
43
42
  "react-slick": "^0.29.0",
44
43
  "sanitize-html": "^2.13.0",
@@ -122,7 +121,8 @@
122
121
  "prop-types": "^15.8.1",
123
122
  "source-map-explorer": "^2.5.3",
124
123
  "storybook": "^7.4.0",
125
- "webpack": "^5.88.2"
124
+ "webpack": "^5.88.2",
125
+ "react-scripts": "5.0.1"
126
126
  },
127
127
  "overrides": {
128
128
  "react-refresh": "0.11.0"