@syncfusion/ej2-schedule 23.1.39 → 23.1.40

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 : 23.1.39
3
+ * version : 23.1.40
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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@23.1.38",
3
+ "_id": "@syncfusion/ej2-schedule@23.1.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-j9nU4rbcxvLnUP4j9LprhOtYxibBnhFCNKkzrJLz1Dr9ujtsGeZ5DETSmmrsG2otO/XcCZNK6j0UxTjiIZYLUQ==",
5
+ "_integrity": "sha512-lVZ9K15Ur6ZZfZtOLmbdfKF3HUaoyWjj1toL9RoR6+rj920vt6RnD2dV0JaCavbAd19M5OlaLqRvwp1NJZyg3A==",
6
6
  "_location": "/@syncfusion/ej2-schedule",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-schedule",
24
24
  "/@syncfusion/ej2-vue-schedule"
25
25
  ],
26
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-23.1.38.tgz",
27
- "_shasum": "efc8d000137849f213872678daaf5605635cdd0e",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-23.1.39.tgz",
27
+ "_shasum": "3ea7956ad58dbe1798cc4d99d5a9f0dec9a9bfa1",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
30
30
  "author": {
@@ -37,13 +37,13 @@
37
37
  "dependencies": {
38
38
  "@syncfusion/ej2-base": "~23.1.38",
39
39
  "@syncfusion/ej2-buttons": "~23.1.39",
40
- "@syncfusion/ej2-calendars": "~23.1.38",
40
+ "@syncfusion/ej2-calendars": "~23.1.40",
41
41
  "@syncfusion/ej2-data": "~23.1.36",
42
- "@syncfusion/ej2-dropdowns": "~23.1.39",
42
+ "@syncfusion/ej2-dropdowns": "~23.1.40",
43
43
  "@syncfusion/ej2-excel-export": "~23.1.36",
44
- "@syncfusion/ej2-inputs": "~23.1.38",
44
+ "@syncfusion/ej2-inputs": "~23.1.40",
45
45
  "@syncfusion/ej2-lists": "~23.1.36",
46
- "@syncfusion/ej2-navigations": "~23.1.39",
46
+ "@syncfusion/ej2-navigations": "~23.1.40",
47
47
  "@syncfusion/ej2-popups": "~23.1.38"
48
48
  },
49
49
  "deprecated": false,
@@ -73,6 +73,6 @@
73
73
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
74
74
  },
75
75
  "typings": "index.d.ts",
76
- "version": "23.1.39",
76
+ "version": "23.1.40",
77
77
  "sideEffects": false
78
78
  }
@@ -288,7 +288,7 @@ var DragAndDrop = /** @class */ (function (_super) {
288
288
  if (this.parent.quickPopup) {
289
289
  this.parent.quickPopup.quickPopupHide(true);
290
290
  }
291
- if ((!isNullOrUndefined(e.target)) && e.target.classList.contains(cls.DISABLE_DATES)) {
291
+ if ((!isNullOrUndefined(e.target)) && e.target.classList && e.target.classList.contains(cls.DISABLE_DATES)) {
292
292
  return;
293
293
  }
294
294
  var eventObj = extend({}, this.actionObj.event, null, true);
@@ -379,7 +379,7 @@ var DragAndDrop = /** @class */ (function (_super) {
379
379
  if (this.isAllowDrop(e)) {
380
380
  return;
381
381
  }
382
- var target = ((!e.target.classList.contains('e-work-cells') && this.parent.cellTemplate) ?
382
+ var target = (e.target.classList && (!e.target.classList.contains('e-work-cells') && this.parent.cellTemplate) ?
383
383
  closest(e.target, '.e-work-cells') : e.target);
384
384
  var dragArgs = {
385
385
  cancel: false, data: this.getChangedData(this.updatedData), selectedData: this.updatedData,
@@ -78,7 +78,7 @@ var WorkCellInteraction = /** @class */ (function () {
78
78
  }
79
79
  else {
80
80
  var date = this.parent.getDateFromElement(target);
81
- if (!isNullOrUndefined(date) && !this.parent.isAdaptive && this.parent.isMinMaxDate(date)) {
81
+ if (!isNullOrUndefined(date) && this.parent.isMinMaxDate(date)) {
82
82
  this.parent.setProperties({ selectedDate: date }, true);
83
83
  this.parent.changeView(this.parent.getNavigateView(), e);
84
84
  }