@syncfusion/ej2-schedule 28.2.7 → 28.2.11

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.
@@ -12500,10 +12500,10 @@ var RecurrenceEditor = /** @__PURE__ @class */ (function (_super) {
12500
12500
  this.repeatType.setProperties({ index: this.selectedType });
12501
12501
  break;
12502
12502
  case 'minDate':
12503
- this.untilDateObj.setProperties({ minDate: this.minDate });
12503
+ this.untilDateObj.setProperties({ min: this.minDate });
12504
12504
  break;
12505
12505
  case 'maxDate':
12506
- this.untilDateObj.setProperties({ maxDate: this.maxDate });
12506
+ this.untilDateObj.setProperties({ max: this.maxDate });
12507
12507
  break;
12508
12508
  case 'value':
12509
12509
  if (this.getRecurrenceRule() !== this.value) {
@@ -21623,6 +21623,7 @@ var Resize = /** @__PURE__ @class */ (function (_super) {
21623
21623
  !closest(e.target, '.' + APPOINTMENT_BORDER))) {
21624
21624
  return;
21625
21625
  }
21626
+ this.parent.eventBase.removeSelectedAppointmentClass();
21626
21627
  this.actionObj.action = 'resize';
21627
21628
  this.actionObj.slotInterval = this.parent.activeViewOptions.timeScale.interval / this.parent.activeViewOptions.timeScale.slotCount;
21628
21629
  this.actionObj.interval = this.actionObj.slotInterval;
@@ -23001,6 +23002,9 @@ var DragAndDrop = /** @__PURE__ @class */ (function (_super) {
23001
23002
  if (!isNullOrUndefined(eventObj)) {
23002
23003
  this.startTime = eventObj[this.parent.eventFields.startTime].getTime();
23003
23004
  }
23005
+ if (!this.parent.allowMultiDrag) {
23006
+ this.parent.eventBase.removeSelectedAppointmentClass();
23007
+ }
23004
23008
  var dragArgs = {
23005
23009
  cancel: false,
23006
23010
  data: eventObj,