@syncfusion/ej2-schedule 21.2.5 → 21.2.6

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 : 21.2.5
3
+ * version : 21.2.6
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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@21.2.4",
3
+ "_id": "@syncfusion/ej2-schedule@21.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-Cla0X2FzqLyZKXiuKq+zyVF1qZ8MX1VHc8jIYvkdtNbDHzwrS4e2YSpelZ5xoyWR2svYhZoOSZNL1Wu5f7bM2A==",
5
+ "_integrity": "sha512-l5+CXqLSUctpAdXgtXKDAZdCtduUffHvNXCi1MG06ib5JBxIaj1zH3JGBXbRuacOD1aw9wf2fpPHZMVVDCgfwg==",
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-21.2.4.tgz",
27
- "_shasum": "e7dcded313247a3cf0ffa986dd88c88b2c931d36",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-21.2.5.tgz",
27
+ "_shasum": "0d4b86b906501cc20a7d80641256c00242deaedf",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
30
30
  "author": {
@@ -36,14 +36,14 @@
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
38
  "@syncfusion/ej2-base": "~21.2.3",
39
- "@syncfusion/ej2-buttons": "~21.2.5",
40
- "@syncfusion/ej2-calendars": "~21.2.5",
41
- "@syncfusion/ej2-data": "~21.2.4",
42
- "@syncfusion/ej2-dropdowns": "~21.2.5",
43
- "@syncfusion/ej2-excel-export": "~21.2.4",
44
- "@syncfusion/ej2-inputs": "~21.2.4",
45
- "@syncfusion/ej2-lists": "~21.2.3",
46
- "@syncfusion/ej2-navigations": "~21.2.5",
39
+ "@syncfusion/ej2-buttons": "~21.2.6",
40
+ "@syncfusion/ej2-calendars": "~21.2.6",
41
+ "@syncfusion/ej2-data": "~21.2.6",
42
+ "@syncfusion/ej2-dropdowns": "~21.2.6",
43
+ "@syncfusion/ej2-excel-export": "~21.2.6",
44
+ "@syncfusion/ej2-inputs": "~21.2.6",
45
+ "@syncfusion/ej2-lists": "~21.2.6",
46
+ "@syncfusion/ej2-navigations": "~21.2.6",
47
47
  "@syncfusion/ej2-popups": "~21.2.4"
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": "21.2.5",
76
+ "version": "21.2.6",
77
77
  "sideEffects": false
78
78
  }
@@ -305,6 +305,9 @@ var AgendaBase = /** @class */ (function (_super) {
305
305
  className.push(data.cssClass);
306
306
  }
307
307
  addClass([ntd], className);
308
+ if (this.isCurrentDate(new Date(data.date.getTime()))) {
309
+ addClass(ntd.childNodes, cls.AGENDA_CURRENT_DAY_CLASS);
310
+ }
308
311
  ntr.appendChild(ntd);
309
312
  }
310
313
  else if (data.type === 'eventColumn') {
@@ -201,13 +201,6 @@ var QuickPopups = /** @class */ (function () {
201
201
  this.quickDialog.content = this.l10n.getConstant('editContent');
202
202
  this.quickDialog.header = this.l10n.getConstant(this.parent.currentAction === 'Delete' ? 'deleteTitle' : 'editTitle');
203
203
  this.quickDialogClass('Recurrence');
204
- var activeEvent = this.parent.activeEventData.event;
205
- if (this.parent.eventSettings.editFollowingEvents && this.parent.currentAction === 'EditOccurrence'
206
- && !isNullOrUndefined(activeEvent[this.parent.eventFields.recurrenceID]) && activeEvent[this.parent.eventFields.recurrenceID]
207
- !== activeEvent[this.parent.eventFields.id]) {
208
- var followingEventButton = this.quickDialog.element.querySelector('.' + cls.QUICK_DIALOG_ALERT_FOLLOWING);
209
- addClass([followingEventButton], cls.DISABLE_CLASS);
210
- }
211
204
  this.showQuickDialog('RecurrenceAlert');
212
205
  };
213
206
  QuickPopups.prototype.openRecurrenceValidationAlert = function (type) {