@syncfusion/ej2-schedule 31.2.10 → 31.2.15
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 +11 -11
- package/src/schedule/renderer/agenda.js +2 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 31.2.
|
|
3
|
+
* version : 31.2.15
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. 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,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-schedule",
|
|
3
|
-
"version": "31.2.
|
|
3
|
+
"version": "31.2.15",
|
|
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": "~31.2.
|
|
11
|
-
"@syncfusion/ej2-buttons": "~31.2.
|
|
12
|
-
"@syncfusion/ej2-calendars": "~31.2.
|
|
13
|
-
"@syncfusion/ej2-data": "~31.2.
|
|
14
|
-
"@syncfusion/ej2-dropdowns": "~31.2.
|
|
15
|
-
"@syncfusion/ej2-excel-export": "~31.2.
|
|
16
|
-
"@syncfusion/ej2-inputs": "~31.2.
|
|
17
|
-
"@syncfusion/ej2-lists": "~31.2.
|
|
18
|
-
"@syncfusion/ej2-navigations": "~31.2.
|
|
19
|
-
"@syncfusion/ej2-popups": "~31.2.
|
|
10
|
+
"@syncfusion/ej2-base": "~31.2.12",
|
|
11
|
+
"@syncfusion/ej2-buttons": "~31.2.12",
|
|
12
|
+
"@syncfusion/ej2-calendars": "~31.2.15",
|
|
13
|
+
"@syncfusion/ej2-data": "~31.2.12",
|
|
14
|
+
"@syncfusion/ej2-dropdowns": "~31.2.15",
|
|
15
|
+
"@syncfusion/ej2-excel-export": "~31.2.12",
|
|
16
|
+
"@syncfusion/ej2-inputs": "~31.2.15",
|
|
17
|
+
"@syncfusion/ej2-lists": "~31.2.12",
|
|
18
|
+
"@syncfusion/ej2-navigations": "~31.2.12",
|
|
19
|
+
"@syncfusion/ej2-popups": "~31.2.12"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {},
|
|
22
22
|
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.",
|
|
@@ -320,9 +320,10 @@ var Agenda = /** @class */ (function (_super) {
|
|
|
320
320
|
}
|
|
321
321
|
else {
|
|
322
322
|
for (var a = 0, length_1 = liCollection.length; a < length_1; a++) {
|
|
323
|
+
var targetRect = target.getBoundingClientRect();
|
|
323
324
|
li = liCollection[parseInt(a.toString(), 10)];
|
|
324
325
|
liDetails = li.getBoundingClientRect();
|
|
325
|
-
if (
|
|
326
|
+
if (targetRect.top < liDetails.top) {
|
|
326
327
|
filterElement = closest(li, '.' + cls.AGENDA_CELLS_CLASS);
|
|
327
328
|
break;
|
|
328
329
|
}
|