@syncfusion/ej2-schedule 28.1.37 → 28.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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 28.1.37
3
+ * version : 28.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,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-schedule@*",
3
- "_id": "@syncfusion/ej2-schedule@28.1.35",
3
+ "_id": "@syncfusion/ej2-schedule@28.1.37",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-kKUjjxjl1Em+f3GyWIIQNxuXbmCK5MDPYIQSoCQwxQLuhcsziojMDiqqLE8jfOc3fQUqN0dSoFsX7CXFXEBWiw==",
5
+ "_integrity": "sha512-haJqqAtdBZNLhs36jdZUmDCB2fw8fu4XZ/FspxbQWVNDqSr27Srluu6No4uJD0dwDCFCf0SfrI1bzaBADQ+hLQ==",
6
6
  "_location": "/@syncfusion/ej2-schedule",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -18,12 +18,13 @@
18
18
  },
19
19
  "_requiredBy": [
20
20
  "/",
21
+ "/@syncfusion/ej2",
21
22
  "/@syncfusion/ej2-angular-schedule",
22
23
  "/@syncfusion/ej2-react-schedule",
23
24
  "/@syncfusion/ej2-vue-schedule"
24
25
  ],
25
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-28.1.35.tgz",
26
- "_shasum": "e49e7a6f5050d918a5e1780dff4417d1887ff231",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-28.1.37.tgz",
27
+ "_shasum": "f4861f496bc5b91be6f357b54142c4768eb6497c",
27
28
  "_spec": "@syncfusion/ej2-schedule@*",
28
29
  "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
29
30
  "author": {
@@ -38,12 +39,12 @@
38
39
  "@syncfusion/ej2-buttons": "~28.1.37",
39
40
  "@syncfusion/ej2-calendars": "~28.1.37",
40
41
  "@syncfusion/ej2-data": "~28.1.33",
41
- "@syncfusion/ej2-dropdowns": "~28.1.37",
42
+ "@syncfusion/ej2-dropdowns": "~28.1.38",
42
43
  "@syncfusion/ej2-excel-export": "~28.1.33",
43
44
  "@syncfusion/ej2-inputs": "~28.1.37",
44
45
  "@syncfusion/ej2-lists": "~28.1.37",
45
46
  "@syncfusion/ej2-navigations": "~28.1.37",
46
- "@syncfusion/ej2-popups": "~28.1.33"
47
+ "@syncfusion/ej2-popups": "~28.1.38"
47
48
  },
48
49
  "deprecated": false,
49
50
  "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.",
@@ -72,6 +73,6 @@
72
73
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
73
74
  },
74
75
  "typings": "index.d.ts",
75
- "version": "28.1.37",
76
+ "version": "28.1.38",
76
77
  "sideEffects": false
77
78
  }
@@ -228,13 +228,13 @@ var KeyboardInteraction = /** @class */ (function () {
228
228
  if (e.event.target.classList.contains(cls.WORK_CELLS_CLASS) && e.event.which !== 3) {
229
229
  this.parent.removeSelectedClass();
230
230
  EventHandler.add(this.parent.getContentTable(), 'mousemove', this.onMouseSelection, this);
231
- EventHandler.add(this.parent.getContentTable(), 'mouseup', this.onMoveUp, this);
231
+ EventHandler.add(this.parent.getContentTable(), 'mouseup mouseleave', this.onMoveUp, this);
232
232
  }
233
233
  if (e.event.target.classList.contains(cls.ALLDAY_CELLS_CLASS) && e.event.which !== 3) {
234
234
  this.parent.removeSelectedClass();
235
235
  var allDayRow = this.parent.getAllDayRow();
236
236
  EventHandler.add(allDayRow, 'mousemove', this.onMouseSelection, this);
237
- EventHandler.add(allDayRow, 'mouseup', this.onMoveUp, this);
237
+ EventHandler.add(allDayRow, 'mouseup mouseleave', this.onMoveUp, this);
238
238
  }
239
239
  };
240
240
  KeyboardInteraction.prototype.onMouseSelection = function (e) {
@@ -266,14 +266,12 @@ var KeyboardInteraction = /** @class */ (function () {
266
266
  var _this = this;
267
267
  var appointments = [].slice.call(this.parent.element.querySelectorAll('.' + cls.APPOINTMENT_CLASS));
268
268
  removeClass(appointments, 'e-allow-select');
269
- if (e.target.classList.contains(cls.WORK_CELLS_CLASS)) {
270
- EventHandler.remove(this.parent.getContentTable(), 'mousemove', this.onMouseSelection);
271
- EventHandler.remove(this.parent.getContentTable(), 'mouseup', this.onMoveUp);
272
- }
269
+ EventHandler.remove(this.parent.getContentTable(), 'mousemove', this.onMouseSelection);
270
+ EventHandler.remove(this.parent.getContentTable(), 'mouseup mouseleave', this.onMoveUp);
273
271
  if (e.target.classList.contains(cls.ALLDAY_CELLS_CLASS)) {
274
272
  var allDayRow = this.parent.getAllDayRow();
275
273
  EventHandler.remove(allDayRow, 'mousemove', this.onMouseSelection);
276
- EventHandler.remove(allDayRow, 'mouseup', this.onMoveUp);
274
+ EventHandler.remove(allDayRow, 'mouseup mouseleave', this.onMoveUp);
277
275
  }
278
276
  if (this.isPreventAction(e)) {
279
277
  return;
@@ -106,9 +106,6 @@ var Month = /** @class */ (function (_super) {
106
106
  args.scrollPosition.left;
107
107
  }
108
108
  }
109
- else {
110
- this.scrollToSelectedDate();
111
- }
112
109
  this.retainScrollPosition();
113
110
  };
114
111
  Month.prototype.scrollToSelectedDate = function () {