@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.
@@ -22320,7 +22320,7 @@ var DragAndDrop = /** @__PURE__ @class */ (function (_super) {
22320
22320
  }
22321
22321
  var top_1 = parseInt(e.top, 10);
22322
22322
  top_1 = top_1 < 0 ? 0 : top_1;
22323
- topValue = formatUnit(Math.ceil(top_1 / cellHeight) * cellHeight);
22323
+ topValue = formatUnit(Math.floor(top_1 / cellHeight) * cellHeight);
22324
22324
  var scrollHeight = this.parent.element.querySelector('.e-content-wrap').scrollHeight;
22325
22325
  var cloneBottom = parseInt(topValue, 10) + this.actionObj.clone.offsetHeight;
22326
22326
  if (cloneBottom > scrollHeight) {