@syncfusion/ej2-schedule 26.2.10 → 26.2.12

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.
@@ -21538,7 +21538,7 @@ class DragAndDrop extends ActionBase {
21538
21538
  }
21539
21539
  let top = parseInt(e.top, 10);
21540
21540
  top = top < 0 ? 0 : top;
21541
- topValue = formatUnit(Math.ceil(top / cellHeight) * cellHeight);
21541
+ topValue = formatUnit(Math.floor(top / cellHeight) * cellHeight);
21542
21542
  const scrollHeight = this.parent.element.querySelector('.e-content-wrap').scrollHeight;
21543
21543
  const cloneBottom = parseInt(topValue, 10) + this.actionObj.clone.offsetHeight;
21544
21544
  if (cloneBottom > scrollHeight) {