@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.
@@ -9024,13 +9024,6 @@ class QuickPopups {
9024
9024
  this.quickDialog.content = this.l10n.getConstant('editContent');
9025
9025
  this.quickDialog.header = this.l10n.getConstant(this.parent.currentAction === 'Delete' ? 'deleteTitle' : 'editTitle');
9026
9026
  this.quickDialogClass('Recurrence');
9027
- const activeEvent = this.parent.activeEventData.event;
9028
- if (this.parent.eventSettings.editFollowingEvents && this.parent.currentAction === 'EditOccurrence'
9029
- && !isNullOrUndefined(activeEvent[this.parent.eventFields.recurrenceID]) && activeEvent[this.parent.eventFields.recurrenceID]
9030
- !== activeEvent[this.parent.eventFields.id]) {
9031
- const followingEventButton = this.quickDialog.element.querySelector('.' + QUICK_DIALOG_ALERT_FOLLOWING);
9032
- addClass([followingEventButton], DISABLE_CLASS);
9033
- }
9034
9027
  this.showQuickDialog('RecurrenceAlert');
9035
9028
  }
9036
9029
  openRecurrenceValidationAlert(type) {
@@ -24597,6 +24590,9 @@ class AgendaBase extends ViewBase {
24597
24590
  className.push(data.cssClass);
24598
24591
  }
24599
24592
  addClass([ntd], className);
24593
+ if (this.isCurrentDate(new Date(data.date.getTime()))) {
24594
+ addClass(ntd.childNodes, AGENDA_CURRENT_DAY_CLASS);
24595
+ }
24600
24596
  ntr.appendChild(ntd);
24601
24597
  }
24602
24598
  else if (data.type === 'eventColumn') {