@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.
- package/dist/Editor/Elements/FreeGrid/FreeGridItem.js +1 -0
- package/dist/Editor/common/RnD/VirtualElement/ForceAutoAlignment.js +8 -2
- package/dist/Editor/common/RnD/VirtualElement/helper.js +13 -2
- package/dist/Editor/common/RnD/VirtualElement/styles.js +5 -1
- package/dist/Editor/themeSettings/style.js +1 -1
- package/package.json +1 -1
@@ -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
|
-
|
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
|
-
}, [
|
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%",
|