@syncfusion/ej2-dropdowns 20.1.57 → 20.1.58

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.
@@ -7745,7 +7745,7 @@ let ComboBox = class ComboBox extends DropDownList {
7745
7745
  else if (this.isTyped && !this.isSelected && isNullOrUndefined(li)) {
7746
7746
  this.customValue(e);
7747
7747
  }
7748
- this.hidePopup();
7748
+ this.hidePopup(e);
7749
7749
  }
7750
7750
  setHoverList(li) {
7751
7751
  this.removeSelection();
@@ -8387,8 +8387,8 @@ let AutoComplete = class AutoComplete extends ComboBox {
8387
8387
  *
8388
8388
  * @returns {void}
8389
8389
  */
8390
- hidePopup() {
8391
- super.hidePopup();
8390
+ hidePopup(e) {
8391
+ super.hidePopup(e);
8392
8392
  this.activeIndex = -1;
8393
8393
  }
8394
8394
  /**