@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.
@@ -9236,13 +9236,6 @@ var QuickPopups = /** @__PURE__ @class */ (function () {
9236
9236
  this.quickDialog.content = this.l10n.getConstant('editContent');
9237
9237
  this.quickDialog.header = this.l10n.getConstant(this.parent.currentAction === 'Delete' ? 'deleteTitle' : 'editTitle');
9238
9238
  this.quickDialogClass('Recurrence');
9239
- var activeEvent = this.parent.activeEventData.event;
9240
- if (this.parent.eventSettings.editFollowingEvents && this.parent.currentAction === 'EditOccurrence'
9241
- && !isNullOrUndefined(activeEvent[this.parent.eventFields.recurrenceID]) && activeEvent[this.parent.eventFields.recurrenceID]
9242
- !== activeEvent[this.parent.eventFields.id]) {
9243
- var followingEventButton = this.quickDialog.element.querySelector('.' + QUICK_DIALOG_ALERT_FOLLOWING);
9244
- addClass([followingEventButton], DISABLE_CLASS);
9245
- }
9246
9239
  this.showQuickDialog('RecurrenceAlert');
9247
9240
  };
9248
9241
  QuickPopups.prototype.openRecurrenceValidationAlert = function (type) {
@@ -25511,6 +25504,9 @@ var AgendaBase = /** @__PURE__ @class */ (function (_super) {
25511
25504
  className.push(data.cssClass);
25512
25505
  }
25513
25506
  addClass([ntd], className);
25507
+ if (this.isCurrentDate(new Date(data.date.getTime()))) {
25508
+ addClass(ntd.childNodes, AGENDA_CURRENT_DAY_CLASS);
25509
+ }
25514
25510
  ntr.appendChild(ntd);
25515
25511
  }
25516
25512
  else if (data.type === 'eventColumn') {