@flozy/editor 9.4.1 → 9.4.2

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.
@@ -269,6 +269,7 @@ const FreeGridItem = props => {
269
269
  "--height": `${height}px`,
270
270
  "--zIndex": 100 + arrangeIndex,
271
271
  "--height_xs": height_xs ? `${height_xs}px` : "auto",
272
+ "--width_xs": width_xs ? `${width_xs}px` : "auto",
272
273
  "--marginTop_xs": marginTop_xs ? `${marginTop_xs}px` : "0px"
273
274
  // "--gridArea_xs": gridArea_xs ? gridArea_xs : "unset",
274
275
  },
@@ -21,21 +21,27 @@ function ForceAutoAlignment(props) {
21
21
  const virtualRef = useRef();
22
22
  useEffect(() => {
23
23
  let timeoutId;
24
+ let autoAlignTimerId;
24
25
  if (virtualRef?.current && autoAlign) {
25
26
  timeoutId = setTimeout(() => {
26
27
  const allData = calculateProps(path, virtualRef?.current, ROOT_ITEM_CLASS, []);
27
28
  updateAutoProps(editor, allData, "xs", true);
28
29
  const currentSectionPath = path.split("|").map(m => parseInt(m));
29
30
  reRenderChildNodes(editor, currentSectionPath);
30
- setAutoAlign(false);
31
+ autoAlignTimerId = setTimeout(() => {
32
+ setAutoAlign(false);
33
+ }, 500);
31
34
  }, 100);
32
35
  }
33
36
  return () => {
34
37
  if (timeoutId) {
35
38
  clearTimeout(timeoutId);
36
39
  }
40
+ if (autoAlignTimerId) {
41
+ clearTimeout(autoAlignTimerId);
42
+ }
37
43
  };
38
- }, [autoAlign, virtualRef?.current]);
44
+ }, [virtualRef?.current]);
39
45
  const calculateProps = (curPath, dom, domClass, allData, parentDom) => {
40
46
  const rect = dom?.getBoundingClientRect();
41
47
  const bufferHeight = parentDom ? 0 : 12;
@@ -1,16 +1,23 @@
1
1
  import { ROW_HEIGHT } from "../Utils/gridDropItem";
2
2
  import { Transforms, Editor } from "slate";
3
+ const isBulletOrTickIcon = (width, itemStartRow, startRow) => {
4
+ return width <= 40 && itemStartRow === startRow;
5
+ };
3
6
  export const findFirstRowOverlap = (gridItems, startRow, endRow, textItemIndex) => {
4
7
  let firstOverlapRow;
5
8
  gridItems.forEach((gridItem, index) => {
6
9
  const {
7
- gridArea_xs: gridArea
10
+ gridArea_xs: gridArea,
11
+ width_xs
8
12
  } = gridItem;
9
13
  if (!gridArea) {
10
14
  return;
11
15
  }
12
16
  const [itemStartRow] = getGridArea(gridArea);
13
17
  const isItemOverlap = itemStartRow >= startRow && itemStartRow <= endRow;
18
+ if (isBulletOrTickIcon(width_xs, itemStartRow, startRow)) {
19
+ return;
20
+ }
14
21
  const isCurrentEle = textItemIndex === index;
15
22
  if (isItemOverlap && !isCurrentEle && gridArea) {
16
23
  firstOverlapRow = firstOverlapRow ? Math.min(firstOverlapRow, itemStartRow) : itemStartRow;
@@ -209,9 +216,13 @@ export const moveOverlappedItems = (editor, moveRows, containerItems, containerP
209
216
  return;
210
217
  }
211
218
  const {
212
- gridArea_xs: gridArea
219
+ gridArea_xs: gridArea,
220
+ width_xs
213
221
  } = gridItem;
214
222
  const [itemStartRow] = getGridArea(gridArea);
223
+ if (isBulletOrTickIcon(width_xs, itemStartRow, lastChildStartRow)) {
224
+ return;
225
+ }
215
226
  if (itemStartRow >= lastChildStartRow) {
216
227
  const row = itemStartRow + moveRows;
217
228
  const newGridArea = `${row} / 1 / ${row + 1} / 2`;
@@ -43,7 +43,6 @@ export const useAutoAlignStyles = () => ({
43
43
  right: 0,
44
44
  top: 0,
45
45
  height: "auto !important",
46
- zIndex: 99999999,
47
46
  pointerEvents: "none",
48
47
  "& .freegrid-item": {
49
48
  position: "relative !important",
@@ -54,9 +53,14 @@ export const useAutoAlignStyles = () => ({
54
53
  left: "24px !important",
55
54
  marginTop: "12px !important",
56
55
  minHeight: "auto",
56
+ display: "inherit !important",
57
57
  "&.type_box": {
58
58
  height: "auto !important"
59
59
  },
60
+ "&.type_image": {
61
+ width: "var(--width_xs) !important",
62
+ height: "var(--height_xs) !important"
63
+ },
60
64
  // start - default signature classes on free-grid
61
65
  "& .fgi_type_signature": {
62
66
  height: "100%",
@@ -170,7 +170,7 @@ const Style = ({
170
170
  // minHeight: "20px",
171
171
  padding: "0px",
172
172
  "&.Mui-expanded": {
173
- minHeight: "48px",
173
+ minHeight: "48px !important",
174
174
  borderBottom: `1px solid ${deviderBgColor}`
175
175
  }
176
176
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.4.1",
3
+ "version": "9.4.2",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"