@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.
- package/CHANGELOG.md +8 -0
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +3 -1
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3 -1
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +49 -7
- package/src/draggable.js +3 -1
|
@@ -8077,7 +8077,9 @@ let Draggable = Draggable_1 = class Draggable extends Base {
|
|
|
8077
8077
|
draEleTop -= marginTop;
|
|
8078
8078
|
}
|
|
8079
8079
|
}
|
|
8080
|
-
|
|
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) {
|