@syncfusion/ej2-base 22.1.38 → 22.2.5

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.
@@ -8077,7 +8077,9 @@ let Draggable = Draggable_1 = class Draggable extends Base {
8077
8077
  draEleTop -= marginTop;
8078
8078
  }
8079
8079
  }
8080
- draEleTop = (this.dragLimit.bottom < draEleTop) ? this.dragLimit.bottom : draEleTop;
8080
+ if (this.dragArea) {
8081
+ draEleTop = (this.dragLimit.bottom < draEleTop) ? this.dragLimit.bottom : draEleTop;
8082
+ }
8081
8083
  }
8082
8084
  if ((top - iTop) < 0) {
8083
8085
  if (dTop + marginTop + (helperElement.offsetHeight - iTop) >= 0) {