@syncfusion/ej2-schedule 33.1.47 → 33.2.4
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 +1 -1
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +1 -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/actions/resize.js +1 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 33.
|
|
3
|
+
* version : 33.2.4
|
|
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": "33.
|
|
3
|
+
"version": "33.2.4",
|
|
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": "~33.
|
|
11
|
-
"@syncfusion/ej2-buttons": "~33.
|
|
12
|
-
"@syncfusion/ej2-calendars": "~33.
|
|
13
|
-
"@syncfusion/ej2-data": "~33.
|
|
14
|
-
"@syncfusion/ej2-dropdowns": "~33.
|
|
15
|
-
"@syncfusion/ej2-excel-export": "~33.
|
|
16
|
-
"@syncfusion/ej2-inputs": "~33.
|
|
17
|
-
"@syncfusion/ej2-lists": "~33.
|
|
18
|
-
"@syncfusion/ej2-navigations": "~33.
|
|
19
|
-
"@syncfusion/ej2-popups": "~33.
|
|
10
|
+
"@syncfusion/ej2-base": "~33.2.3",
|
|
11
|
+
"@syncfusion/ej2-buttons": "~33.2.3",
|
|
12
|
+
"@syncfusion/ej2-calendars": "~33.2.4",
|
|
13
|
+
"@syncfusion/ej2-data": "~33.2.3",
|
|
14
|
+
"@syncfusion/ej2-dropdowns": "~33.2.4",
|
|
15
|
+
"@syncfusion/ej2-excel-export": "~33.2.3",
|
|
16
|
+
"@syncfusion/ej2-inputs": "~33.2.4",
|
|
17
|
+
"@syncfusion/ej2-lists": "~33.2.3",
|
|
18
|
+
"@syncfusion/ej2-navigations": "~33.2.4",
|
|
19
|
+
"@syncfusion/ej2-popups": "~33.2.3"
|
|
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.",
|
|
@@ -514,7 +514,7 @@ var Resize = /** @class */ (function (_super) {
|
|
|
514
514
|
var slotInterval = (this.actionObj.cellWidth / this.actionObj.slotInterval) * this.actionObj.interval;
|
|
515
515
|
var pageWidth = isLeft ? (this.actionObj.X - this.actionObj.pageX) : (this.actionObj.pageX - this.actionObj.X);
|
|
516
516
|
var targetWidth = isTimelineView ?
|
|
517
|
-
Math.round(this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth :
|
|
517
|
+
Math.round((this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth) :
|
|
518
518
|
this.parent.currentView === 'Month' ? this.parent.getElementWidth(this.actionObj.element) :
|
|
519
519
|
Math.ceil(this.parent.getElementWidth(this.actionObj.element) / this.actionObj.cellWidth) * this.actionObj.cellWidth;
|
|
520
520
|
var offsetWidth = targetWidth + (Math.ceil(pageWidth / this.actionObj.cellWidth) * this.actionObj.cellWidth);
|