@syncfusion/ej2-schedule 30.1.37 → 30.1.38
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/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +2 -1
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +2 -1
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +4 -4
- package/src/schedule/actions/virtual-scroll.js +2 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 30.1.
|
|
3
|
+
* version : 30.1.38
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-schedule",
|
|
3
|
-
"version": "30.1.
|
|
3
|
+
"version": "30.1.38",
|
|
4
4
|
"author": "Syncfusion Inc.",
|
|
5
5
|
"license": "SEE LICENSE IN license",
|
|
6
6
|
"main": "./dist/ej2-schedule.umd.min.js",
|
|
7
7
|
"module": "./index.js",
|
|
8
8
|
"es2015": "./dist/es6/ej2-schedule.es5.js",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@syncfusion/ej2-base": "~30.1.
|
|
10
|
+
"@syncfusion/ej2-base": "~30.1.38",
|
|
11
11
|
"@syncfusion/ej2-buttons": "~30.1.37",
|
|
12
12
|
"@syncfusion/ej2-calendars": "~30.1.37",
|
|
13
|
-
"@syncfusion/ej2-data": "~30.1.
|
|
13
|
+
"@syncfusion/ej2-data": "~30.1.38",
|
|
14
14
|
"@syncfusion/ej2-dropdowns": "~30.1.37",
|
|
15
15
|
"@syncfusion/ej2-excel-export": "~30.1.37",
|
|
16
|
-
"@syncfusion/ej2-inputs": "~30.1.
|
|
16
|
+
"@syncfusion/ej2-inputs": "~30.1.38",
|
|
17
17
|
"@syncfusion/ej2-lists": "~30.1.37",
|
|
18
18
|
"@syncfusion/ej2-navigations": "~30.1.37",
|
|
19
19
|
"@syncfusion/ej2-popups": "~30.1.37"
|
|
@@ -168,7 +168,8 @@ var VirtualScroll = /** @class */ (function () {
|
|
|
168
168
|
if ((conWrap.scrollTop) - this.translateY < 0) {
|
|
169
169
|
resCollection = this.upScroll(conWrap, firstTDIndex);
|
|
170
170
|
}
|
|
171
|
-
else if (conWrap.scrollTop
|
|
171
|
+
else if ((conWrap.scrollTop + conWrap.clientHeight >= conWrap.scrollHeight - this.itemSize) ||
|
|
172
|
+
(conWrap.scrollTop > (this.translateY + scrollHeight))) {
|
|
172
173
|
resCollection = this.downScroll(conWrap, firstTDIndex);
|
|
173
174
|
}
|
|
174
175
|
if (!isNullOrUndefined(resCollection) && resCollection.length > 0) {
|