@syncfusion/ej2-schedule 23.2.4 → 23.2.7

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.
@@ -12770,7 +12770,7 @@ var EventWindow = /** @__PURE__ @class */ (function () {
12770
12770
  this.eventData = this.eventCrudData ? this.eventData : eventData;
12771
12771
  var eventObj = extend({}, eventData, null, true);
12772
12772
  var formElements = this.getFormElements(EVENT_WINDOW_DIALOG_CLASS);
12773
- if (this.parent.isReact && formElements.length < 1) {
12773
+ if (this.parent.isReact && formElements.length < 1 && !this.cellClickAction) {
12774
12774
  this.eventCrudData = eventObj;
12775
12775
  return;
12776
12776
  }
@@ -21477,6 +21477,11 @@ var YearEvent = /** @__PURE__ @class */ (function (_super) {
21477
21477
  (resetTime(appStart).getTime() >= dateStart) && (resetTime(appEnd).getTime() <= dateEnd)) {
21478
21478
  appointmentsList.push(app);
21479
21479
  }
21480
+ else if (this.parent.activeViewOptions.orientation === 'Vertical') {
21481
+ if (resetTime(appStart).getTime() >= dateStart && resetTime(appEnd).getTime() >= dateEnd) {
21482
+ appointmentsList.push(app);
21483
+ }
21484
+ }
21480
21485
  }
21481
21486
  return appointmentsList;
21482
21487
  };