@flozy/editor 9.8.1 → 9.8.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.
@@ -348,7 +348,8 @@ export const sortElements = (items, container) => {
348
348
  // Compare marginTopXs
349
349
  const aMarginTop = parseFloat(a.dataset.marginTopXs) || 0;
350
350
  const bMarginTop = parseFloat(b.dataset.marginTopXs) || 0;
351
- if (aMarginTop !== bMarginTop) {
351
+ const BUFFER_DIFF = 5;
352
+ if (Math.abs(aMarginTop - bMarginTop) > BUFFER_DIFF) {
352
353
  return aMarginTop - bMarginTop;
353
354
  }
354
355
  const aLeft = parseFloat(a.dataset.leftXs) || 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flozy/editor",
3
- "version": "9.8.1",
3
+ "version": "9.8.2",
4
4
  "description": "An Editor for flozy app brain",
5
5
  "files": [
6
6
  "dist"