@syncfusion/ej2-schedule 30.1.41 → 30.2.4

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.
@@ -11091,7 +11091,7 @@ class QuickPopups {
11091
11091
  const popup = popupName === 'quickPopup' ? this.quickPopup : this.morePopup;
11092
11092
  const buttonCollections = [].slice.call(popup.element.querySelectorAll('.e-control.e-btn'));
11093
11093
  for (const button of buttonCollections) {
11094
- const instance = button.ej2_instances[0];
11094
+ const instance = button.ej2_instances ? button.ej2_instances[0] : null;
11095
11095
  if (instance) {
11096
11096
  instance.destroy();
11097
11097
  }
@@ -22602,6 +22602,8 @@ class DragAndDrop extends ActionBase {
22602
22602
  if (!isNullOrUndefined(dragObj)) {
22603
22603
  dragObj.intDestroy(e.event);
22604
22604
  }
22605
+ this.isMultiSelect = false;
22606
+ this.multiData = [];
22605
22607
  this.actionObj.action = '';
22606
22608
  this.removeCloneElementClasses();
22607
22609
  this.removeCloneElement();